This is an automated email from the git hooks/post-receive script. ebourg-guest pushed a commit to branch master in repository libitext-java.
commit af8f7be8dfc1c3c7213e0a6cf0a7ebe9134417c3 Author: Gerardo Curiel <[email protected]> Date: Sun Sep 24 03:07:04 2006 +0000 * New debian/rules file * patched PdfGraphics2d.java, removed com.sun.image.codec.jpeg.* dependencies * Removed debian/README.Debian and debian/patches/01libitext-java-addbuildscript.patch * fixed paths on ant/.ant.properties --- debian/README.Debian | 4 - debian/changelog | 14 +- debian/control | 20 +- debian/patches/01_jpeg_encoder_classpath.patch | 40 + .../patches/01libitext-java-addbuildscript.patch | 1409 -------------------- debian/patches/02_ant_properties.patch | 18 + debian/rules | 42 +- 7 files changed, 81 insertions(+), 1466 deletions(-) diff --git a/debian/README.Debian b/debian/README.Debian deleted file mode 100644 index 67e9059..0000000 --- a/debian/README.Debian +++ /dev/null @@ -1,4 +0,0 @@ -libitext-java for Debian ------------------------- - - -- Christian Bayle <[email protected]>, Mon, 7 Jul 2003 00:47:01 +0200 diff --git a/debian/changelog b/debian/changelog index fb2c0bd..a78191c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,11 +1,21 @@ libitext-java (1.4.5-1) unstable; urgency=low * New upstream release - * + * debian/rules modified due to a new build.xml file + * Patched Pdfgraphics2d.java to remove privative dependencie on com.sun.image.codec.jpeg.* + (more information on + http://developer.classpath.org/mediation/ClasspathMigration#head-d4ee9efe53a641e29ffdcd96e985bf38bbc671c1 ) + * ant/.ant.properties paths fixed + * Build package with the packages provided by java-gcj-compat-dev + * Removed unused README.Debian + * Removed unused debian/patches/01libitext-java-addbuildscript.patch + -- Gerardo Curiel <[email protected]> Thu, 21 Sep 2006 00:08:53 -0400 -libitext-java (1.02b-5) unstable; urgency=low +libitex +t-ja +va (1.02b-5) unstable; urgency=low * debian/rules,debian/control: Build package with Kaffe to be able diff --git a/debian/control b/debian/control index 66fce0b..2b47c9d 100644 --- a/debian/control +++ b/debian/control @@ -2,15 +2,15 @@ Source: libitext-java Section: libs Priority: optional Maintainer: Debian Java Maintainers <[email protected]> -Uploaders: Gerardo Curiel <[email protected]>, Stephan Michels <[email protected]> -Build-Depends-Indep: debhelper (>> 4.0.0), cdbs, kaffe (>= 2:1.1.7-4), ant, libservlet2.3-java, ecj-bootstrap +Uploaders: Gerardo Curiel <[email protected]> +Build-Depends-Indep: debhelper , cdbs, java-gcj-compat-dev (>= 1.0.65), ant, libservlet2.3-java, ecj-bootstrap Standards-Version: 3.7.2 Package: libitext-java Architecture: all Section: libs Suggests: libitext-java-doc -Depends: kaffe (>= 2:1.1.7) | java2-runtime +Depends: java-gcj-compat (>= 1.0.65) | java2-runtime Description: Java Library to generate PDF on the Fly iText is a library that allows you to generate PDF files on the fly. The iText classes are very useful for people who need to generate read-only, @@ -21,17 +21,3 @@ Description: Java Library to generate PDF on the Fly iText requires JDK 1.2. It's available for free under a multiple license: MPL and LGPL. -Package: libitext-java-doc -Architecture: all -Section: doc -Suggests: libitext-java -Description: Java Library to generate PDF on the Fly Documentation - iText is a library that allows you to generate PDF files on the fly. - The iText classes are very useful for people who need to generate read-only, - platform independent documents containing text, lists, tables and images. - The library is especially useful in combination with Java(TM) - technology-based Servlets: The look and feel of HTML is browser dependent; - with iText and PDF you can control exactly how your servlet's output will look. - iText requires JDK 1.2. It's available for free under a multiple license: - MPL and LGPL. - diff --git a/debian/patches/01_jpeg_encoder_classpath.patch b/debian/patches/01_jpeg_encoder_classpath.patch new file mode 100644 index 0000000..2c33356 --- /dev/null +++ b/debian/patches/01_jpeg_encoder_classpath.patch @@ -0,0 +1,40 @@ +--- PdfGraphics2D.java.orig 2006-09-23 20:12:50.000000000 -0400 ++++ com/lowagie/text/pdf/PdfGraphics2D.java 2006-09-23 20:57:36.000000000 -0400 +@@ -101,6 +101,13 @@ + import java.util.Iterator; + import java.awt.font.TextAttribute; + ++//For Gnu-Classpath compatibility ++ ++import javax.imageio.*; ++import javax.imageio.metadata.*; ++import javax.imageio.plugins.jpeg.JPEGImageWriteParam; ++ ++ + public class PdfGraphics2D extends Graphics2D { + + private static final int FILL = 1; +@@ -1344,10 +1351,19 @@ + g3.dispose(); + + ByteArrayOutputStream baos = new ByteArrayOutputStream(); +- com.sun.image.codec.jpeg.JPEGImageEncoder encoder = com.sun.image.codec.jpeg.JPEGCodec.createJPEGEncoder(baos); +- com.sun.image.codec.jpeg.JPEGEncodeParam param = com.sun.image.codec.jpeg.JPEGCodec.getDefaultJPEGEncodeParam(scaled); +- param.setQuality(jpegQuality, true); +- encoder.encode(scaled, param); ++ //com.sun.image.codec.jpeg.JPEGImageEncoder encoder = com.sun.image.codec.jpeg.JPEGCodec.createJPEGEncoder(baos); ++ //com.sun.image.codec.jpeg.JPEGEncodeParam param = com.sun.image.codec.jpeg.JPEGCodec.getDefaultJPEGEncodeParam(scaled); ++ ++ ImageWriter encoder = (ImageWriter)ImageIO.getImageWritersByFormatName("JPEG").next(); ++ JPEGImageWriteParam param = new JPEGImageWriteParam(null); ++ ++ param.setCompressionMode(ImageWriteParam.MODE_EXPLICIT); ++ param.setCompressionQuality(jpegQuality); ++ encoder.setOutput(baos); ++ encoder.write((IIOMetadata) null, new IIOImage(scaled,null,null), param); ++ ++ //param.setQuality(jpegQuality, true); ++ //encoder.encode(scaled, param); + scaled.flush(); + scaled = null; + image = com.lowagie.text.Image.getInstance(baos.toByteArray()); diff --git a/debian/patches/01libitext-java-addbuildscript.patch b/debian/patches/01libitext-java-addbuildscript.patch deleted file mode 100644 index 01be25b..0000000 --- a/debian/patches/01libitext-java-addbuildscript.patch +++ /dev/null @@ -1,1409 +0,0 @@ ---- build.xml 1970-01-01 01:00:00.000000000 +0100 -+++ build.xml 2006-01-21 20:55:59.000000000 +0100 -@@ -0,0 +1,698 @@ -+<?xml version="1.0"?> -+ -+<!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --> -+<!-- iText, a JAVA - PDF library --> -+<!-- $Id: build.xml,v 1.112 2003/06/26 12:13:44 blowagie Exp $ --> -+<!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --> -+ -+<project name="iText" default="help" basedir="."> -+ -+ <property environment="env" /> -+ -+ <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --> -+ <!-- Some general properties --> -+ <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --> -+ <target name="properties" description="--> Sets a number of common properties"> -+ <property name="itext.home" value="." /> -+ <property name="itext.src" value="${itext.home}/src" /> -+ <property name="itext.classes" value="${itext.home}/classes" /> -+ <property name="itext.lib" value="${itext.home}/lib" /> -+ <property name="itext.docs" value="${itext.home}/docs" /> -+ <property name="itext.www" value="${itext.home}/www" /> -+ <property name="itext.tutorial" value="${itext.www}/tutorial" /> -+ <property name="itext.examples" value="${itext.www}/examples" /> -+ <property name="itext.dist" value="${itext.home}/dist" /> -+ <property name="itext.sf" value="${itext.dist}/sf" /> -+ <property name="itext.bin" value="${itext.home}/bin" /> -+ <property name="itext.cvsroot" value=":pserver:[email protected]:/cvsroot/itext" /> -+ <property name="defaultnumber" value="invalid" /> -+ <available property="j2ee.jar" value="${env.J2EE_HOME}/lib/j2ee.jar" file="${env.J2EE_HOME}/lib/j2ee.jar"/> -+ <property name="j2ee.jar" value="COULD_NOT_FIND_J2EE_JAR"/> -+ -+ <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --> -+ <!-- The classpath when the release is done --> -+ <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --> -+ -+ <path id="classpath"> -+ <pathelement location="${j2ee.jar}" /> -+ <pathelement location="${itext.bin}/iText.jar" /> -+ <pathelement location="${itext.bin}/iTextXML.jar" /> -+ <pathelement location="${itext.bin}/iTextHYPH.jar" /> -+ <pathelement location="${itext.examples}" /> -+ </path> -+ </target> -+ -+ <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --> -+ <!-- Help --> -+ <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --> -+ -+ <target name="help" description="--> shows the help screen"> -+ <echo>Using ANT for ${ant.project.name}</echo> -+ <echo /> -+ <echo>INSTALLING iText</echo> -+ <echo>ant install: downloads and installs the most recent release in one command</echo> -+ <echo>ant install.cvs: downloads and installs the current CVS version in one command</echo> -+ <echo /> -+ <echo>GETTING THE CODE</echo> -+ <echo>ant checkout: checks out the code from CVS</echo> -+ <echo>ant download: downloads some files needed to build a release</echo> -+ <echo>ant download.cvs: downloads the most recent VERSION of the code</echo> -+ <echo>ant download.site: downloads the most recent RELEASE of the code</echo> -+ <echo /> -+ <echo>COMPILING THE CODE</echo> -+ <echo>ant compile: compiles iText without RTF and XML functionality</echo> -+ <echo>ant compileWithXML: compiles iText completely</echo> -+ <echo /> -+ <echo>JARRING THE CODE</echo> -+ <echo>ant jar: compiles and jars iText without RTF and XML functionality</echo> -+ <echo>ant jarWithXML: compiles and jars iText completely</echo> -+ <echo /> -+ <echo>ARCHIVING THE SOURCE</echo> -+ <echo>ant srczip: makes zipfiles with the sourcecode</echo> -+ <echo>ant srctargz: makes tar.gz-files with the sourcecode</echo> -+ <echo /> -+ <echo>DOCUMENTATION</echo> -+ <echo>ant javadoc: generates the API documentation</echo> -+ <echo>ant docstargz: generates the API docs and puts them in a tar.gz-file</echo> -+ <echo>ant tutorialtargz: generates several tar.gz-files with documentation (tutorial, examples,...)</echo> -+ <echo>ant examples: generates most of the PDF files of the tutorial</echo> -+ <echo /> -+ <echo>RELEASE</echo> -+ <echo>ant release: makes a complete iText release</echo> -+ <echo>ant -Dnumber=XXX release.sf: prepares a release XXX for sourceforge</echo> -+ </target> -+ -+ <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --> -+ <!-- Getting the code --> -+ <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --> -+ -+ <target name="checkout" depends="properties" description="--> checks out the source code form CVS"> -+ <echo>Logging in: the password for user anonymous is empty;</echo> -+ <echo>just press enter when asked for it</echo> -+ <cvs cvsroot="${itext.cvsroot}" command="login" /> -+ <cvs cvsroot="${itext.cvsroot}" package="www" dest="${itext.home}" /> -+ <cvs cvsroot="${itext.cvsroot}" package="src" dest="${itext.home}" /> -+ </target> -+ -+ <target name="download" depends="properties" description="--> downloads some files needed to make a release"> -+ <mkdir dir="${itext.www}" /> -+ <get src="http://www.lowagie.com/iText/logo.gif" dest="${itext.www}/logo.gif" verbose="true" /> -+ <get src="http://www.lowagie.com/iText/iText.gif" dest="${itext.www}/iText.gif" verbose="true" /> -+ <get src="http://www.lowagie.com/iText/iTextLogo.gif" dest="${itext.www}/iTextLogo.gif" verbose="true" /> -+ <mkdir dir="${itext.tutorial}" /> -+ <get src="http://www.lowagie.com/iText/tutorial/Chap0101.png" dest="${itext.tutorial}/Chap0101.png" verbose="true" /> -+ <get src="http://www.lowagie.com/iText/tutorial/Chap0106.png" dest="${itext.tutorial}/Chap0106.png" verbose="true" /> -+ <get src="http://www.lowagie.com/iText/tutorial/Chap0106dos.png" dest="${itext.tutorial}/Chap0106dos.png" verbose="true" /> -+ <mkdir dir="${itext.examples}" /> -+ <get src="http://www.lowagie.com/iText/examples/harbour.wmf" dest="${itext.examples}/harbour.wmf" verbose="true" /> -+ <get src="http://www.lowagie.com/iText/examples/pngnow.png" dest="${itext.examples}/pngnow.png" verbose="true" /> -+ <get src="http://www.lowagie.com/iText/examples/cover.png" dest="${itext.examples}/cover.png" verbose="true" /> -+ <get src="http://www.lowagie.com/iText/examples/H.gif" dest="${itext.examples}/H.gif" verbose="true" /> -+ <get src="http://www.lowagie.com/iText/examples/caesar_coin.jpg" dest="${itext.examples}/caesar_coin.jpg" verbose="true" /> -+ <get src="http://www.lowagie.com/iText/examples/hitchcock.png" dest="${itext.examples}/hitchcock.png" verbose="true" /> -+ <get src="http://www.lowagie.com/iText/examples/myKids.jpg" dest="${itext.examples}/myKids.jpg" verbose="true" /> -+ <get src="http://www.lowagie.com/iText/examples/raf.jpg" dest="${itext.examples}/raf.jpg" verbose="true" /> -+ <get src="http://www.lowagie.com/iText/examples/vonnegut.gif" dest="${itext.examples}/vonnegut.gif" verbose="true" /> -+ <get src="http://www.lowagie.com/iText/examples/watermark.jpg" dest="${itext.examples}/watermark.jpg" verbose="true" /> -+ <get src="http://www.lowagie.com/iText/examples/12.tif" dest="${itext.examples}/12.tif" verbose="true" /> -+ <get src="http://www.lowagie.com/iText/examples/338814-00.tif" dest="${itext.examples}/338814-00.tif" verbose="true" /> -+ <mkdir dir="${itext.bin}" /> -+ <get src="http://itext.sourceforge.net/downloads/iTextAsian.jar" dest="${itext.bin}/iTextAsian.jar" verbose="true" /> -+ <get src="http://itext.sourceforge.net/downloads/iTextAsianCmaps.jar" dest="${itext.bin}/iTextAsianCmaps.jar" verbose="true" /> -+ <get src="http://itext.sourceforge.net/downloads/iTextHYPH.jar" dest="${itext.bin}/iTextHYPH.jar" verbose="true" /> -+ <get src="http://itext.sourceforge.net/downloads/barcodefonts.zip" dest="${itext.bin}/barcodefonts.zip" verbose="true" /> -+ </target> -+ -+ <target name="download.cvs" depends="properties, checkout, download" description="--> downloads the most recent version of the code"> -+ <echo>Remark:</echo> -+ <echo>The CVS version is the most recent version of the code.</echo> -+ <echo>It may not always compile.</echo> -+ <echo>Use ant download.site to download working code.</echo> -+ </target> -+ -+ <target name="download.site" depends="properties, download" description="--> downloads the most recent release of the code"> -+ <mkdir dir="${itext.dist}" /> -+ <get src="http://itext.sourceforge.net/downloads/src.tar.gz" dest="${itext.dist}/src.tar.gz" verbose="true" /> -+ <get src="http://itext.sourceforge.net/downloads/srcXML.tar.gz" dest="${itext.dist}/srcXML.tar.gz" verbose="true" /> -+ <get src="http://itext.sourceforge.net/downloads/www.tar.gz" dest="${itext.dist}/www.tar.gz" verbose="true" /> -+ <get src="http://itext.sourceforge.net/downloads/tutorial.tar.gz" dest="${itext.dist}/tutorial.tar.gz" verbose="true" /> -+ <get src="http://itext.sourceforge.net/downloads/examples.tar.gz" dest="${itext.dist}/examples.tar.gz" verbose="true" /> -+ -+ <mkdir dir="${itext.src}" /> -+ <gunzip src="${itext.dist}/src.tar.gz" dest="${itext.dist}/temp.tar" /> -+ <untar src="${itext.dist}/temp.tar" dest="${itext.src}" /> -+ <delete file="${itext.dist}/temp.tar" /> -+ <gunzip src="${itext.dist}/srcXML.tar.gz" dest="${itext.dist}/temp.tar" /> -+ <untar src="${itext.dist}/temp.tar" dest="${itext.src}" /> -+ <delete file="${itext.dist}/temp.tar" /> -+ -+ <mkdir dir="${itext.www}" /> -+ <gunzip src="${itext.dist}/www.tar.gz" dest="${itext.dist}/temp.tar" /> -+ <untar src="${itext.dist}/temp.tar" dest="${itext.www}" /> -+ <delete file="${itext.dist}/temp.tar" /> -+ <mkdir dir="${itext.tutorial}" /> -+ <gunzip src="${itext.dist}/tutorial.tar.gz" dest="${itext.dist}/temp.tar" /> -+ <untar src="${itext.dist}/temp.tar" dest="${itext.tutorial}" /> -+ <delete file="${itext.dist}/temp.tar" /> -+ <mkdir dir="${itext.examples}" /> -+ <gunzip src="${itext.dist}/examples.tar.gz" dest="${itext.dist}/temp.tar" /> -+ <untar src="${itext.dist}/temp.tar" dest="${itext.examples}" /> -+ <delete file="${itext.dist}/temp.tar" /> -+ </target> -+ -+ <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --> -+ <!-- Compiling the code --> -+ <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --> -+ -+ <target name="compile" depends="properties" description="--> compiles the core iText code"> -+ <mkdir dir="${itext.classes}" /> -+ <javac srcdir="${itext.src}" destdir="${itext.classes}" -+ excludes="com/lowagie/servlets/*.java,com/lowagie/text/xml/*.java,com/lowagie/text/html/HtmlParser.java,com/lowagie/text/html/HtmlPeer.java,com/lowagie/text/html/HtmlTagMap.java,com/lowagie/text/html/SAXmyHtmlHandler.java"> -+ <classpath refid="classpath" /> -+ </javac> -+ </target> -+ -+ <target name="compileWithXML" depends="properties" description="--> compiles iText completely"> -+ <mkdir dir="${itext.classes}" /> -+ <echo>Your path to j2ee.jar: ${j2ee.jar}</echo> -+ <javac srcdir="${itext.src}" destdir="${itext.classes}"> -+ <classpath refid="classpath" /> -+ </javac> -+ </target> -+ -+ <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --> -+ <!-- Jarring the code --> -+ <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --> -+ -+ <target name="jar" depends="properties,compile" description="--> makes a jarfile from the core iText code"> -+ <mkdir dir="${itext.dist}" /> -+ <mkdir dir="${itext.bin}" /> -+ <mkdir dir="${itext.classes}/com/lowagie/text/pdf/fonts" /> -+ <copy todir="${itext.classes}/com/lowagie/text/pdf/fonts" overwrite="yes"> -+ <fileset dir="${itext.src}/com/lowagie/text/pdf/fonts"> -+ <include name="**/*.afm"/> -+ </fileset> -+ </copy> -+ <jar jarfile="${itext.dist}/iText.jar" basedir="${itext.classes}" excludes="**/com/lowagie/text/xml/*.class,**/HtmlPeer.class,**/HtmlParser.class,**/HtmlTagMap.class,**/SAXmyHtmlHandler.class" /> -+ <copy file="${itext.dist}/iText.jar" todir="${itext.bin}" overwrite="yes" /> -+ </target> -+ -+ <target name="jarWithXML" depends="compileWithXML" description="--> makes a jarfile from the complete iText code"> -+ <mkdir dir="${itext.dist}" /> -+ <mkdir dir="${itext.bin}" /> -+ <mkdir dir="${itext.classes}/com/lowagie/text/pdf/fonts" /> -+ <copy todir="${itext.classes}/com/lowagie/text/pdf/fonts" overwrite="yes"> -+ <fileset dir="${itext.src}/com/lowagie/text/pdf/fonts"> -+ <include name="**/*.afm"/> -+ </fileset> -+ </copy> -+ <jar jarfile="${itext.dist}/iText.jar" basedir="${itext.classes}" excludes="**/com/lowagie/text/xml/*.class,**/HtmlPeer.class,**/HtmlParser.class,**/HtmlTagMap.class,**/SAXmyHtmlHandler.class" /> -+ <copy file="${itext.dist}/iText.jar" todir="${itext.bin}" overwrite="yes" /> -+ <jar jarfile="${itext.dist}/iTextXML.jar" basedir="${itext.classes}" includes="**/com/lowagie/text/xml/*.class,**/HtmlPeer.class,**/HtmlParser.class,**/HtmlTagMap.class,**/SAXmyHtmlHandler.class" /> -+ <copy file="${itext.dist}/iTextXML.jar" todir="${itext.bin}" overwrite="yes" /> -+ <jar jarfile="${itext.dist}/iTextAsian.jar" basedir="${itext.src}" includes="**/com/lowagie/text/pdf/fonts/*.cmap,**/com/lowagie/text/pdf/fonts/*.properties" /> -+ <jar jarfile="${itext.dist}/iTextAsianCmaps.jar" basedir="${itext.src}" includes="**/com/lowagie/text/pdf/fonts/cmaps/*" /> -+ <copy file="${itext.dist}/iTextAsian.jar" todir="${itext.bin}" overwrite="yes" /> -+ <copy file="${itext.dist}/iTextAsianCmaps.jar" todir="${itext.bin}" overwrite="yes" /> -+ </target> -+ -+ <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --> -+ <!-- Archiving the source --> -+ <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --> -+ -+ <target name="srczip" depends="properties" description="--> makes two zipfiles (1 with the core iText code and 1 with XML/RTF classes)"> -+ <mkdir dir="${itext.dist}" /> -+ <zip zipfile="${itext.dist}/src.zip" basedir="${itext.src}" includes="**/*.java, **/*.txt, **/*.afm" excludes="com/lowagie/servlets/*.java,com/lowagie/text/xml/*.java,com/lowagie/text/html/HtmlParser.java,com/lowagie/text/html/HtmlPeer.java,com/lowagie/text/html/HtmlTagMap.java,com/lowagie/text/html/SAXmyHtmlHandler.java" /> -+ <zip zipfile="${itext.dist}/srcXML.zip" basedir="${itext.src}" includes="com/lowagie/servlets/*.java,com/lowagie/text/xml/*.java,com/lowagie/text/html/HtmlParser.java,com/lowagie/text/html/HtmlPeer.java,com/lowagie/text/html/HtmlTagMap.java,com/lowagie/text/html/SAXmyHtmlHandler.java" /> -+ </target> -+ -+ <target name="srctargz" depends="properties" description="--> makes two tar.gz-files (1 with the core iText code and 1 with XML/RTF classes)"> -+ <mkdir dir="${itext.dist}" /> -+ <tar tarfile="${itext.dist}/classes.tar" basedir="${itext.classes}" /> -+ <tar tarfile="${itext.dist}/src.tar" basedir="${itext.src}" includes="**/*.java, **/*.txt, **/*.afm" excludes="com/lowagie/servlets/*.java,com/lowagie/text/xml/*.java,com/lowagie/text/html/HtmlParser.java,com/lowagie/text/html/HtmlPeer.java,com/lowagie/text/html/HtmlTagMap.java,com/lowagie/text/html/SAXmyHtmlHandler.java" /> -+ <tar tarfile="${itext.dist}/srcXML.tar" basedir="${itext.src}" includes="com/lowagie/servlets/*.java,com/lowagie/text/xml/*.java,com/lowagie/text/html/HtmlParser.java,com/lowagie/text/html/HtmlPeer.java,com/lowagie/text/html/HtmlTagMap.java,com/lowagie/text/html/SAXmyHtmlHandler.java" /> -+ <gzip zipfile="${itext.dist}/classes.tar.gz" src="${itext.dist}/classes.tar" /> -+ <gzip zipfile="${itext.dist}/src.tar.gz" src="${itext.dist}/src.tar" /> -+ <gzip zipfile="${itext.dist}/srcXML.tar.gz" src="${itext.dist}/srcXML.tar" /> -+ <delete file="${itext.dist}/classes.tar" /> -+ <delete file="${itext.dist}/src.tar" /> -+ <delete file="${itext.dist}/srcXML.tar" /> -+ </target> -+ -+ <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --> -+ <!-- Archiving the source --> -+ <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --> -+ -+ <target name="javadoc" depends="properties" description="--> generates the complete documentation with javadoc"> -+ <mkdir dir="${itext.docs}" /> -+ <javadoc packagenames="com.lowagie.tools.*,com.lowagie.servlets.*, com.lowagie.text.*, com.lowagie.text.pdf.*, com.lowagie.text.rtf.*, com.lowagie.text.pdf.afm.*, com.lowagie.text.pdf.hyphenation.*, com.lowagie.text.pdf.wmf.*, com.lowagie.text.html.*, com.lowagie.text.markup.*, com.lowagie.text.xml.*" -+ sourcepath="${itext.src}" -+ destdir="${itext.docs}" -+ author="true" -+ private="true"> -+ <link href="http://java.sun.com/j2se/1.3/docs/api/" /> -+ </javadoc> -+ </target> -+ -+ <target name="docstargz" depends="properties,javadoc" description="--> makes a tar.gz-file with the complete javadoc documentation"> -+ <mkdir dir="${itext.dist}" /> -+ <tar tarfile="${itext.dist}/docs.tar" basedir="${itext.docs}" /> -+ <gzip zipfile="${itext.dist}/docs.tar.gz" src="${itext.dist}/docs.tar" /> -+ <delete file="${itext.dist}/docs.tar" /> -+ </target> -+ -+ <target name="tutorialtargz" depends="properties" description="--> makes several tar.gz-files with the tutorial, examples,..."> -+ <mkdir dir="${itext.dist}" /> -+ <tar tarfile="${itext.dist}/www.tar" basedir="${itext.www}" excludes="**/tutorial/*.*, **/examples/*.*" /> -+ <gzip zipfile="${itext.dist}/www.tar.gz" src="${itext.dist}/www.tar" /> -+ <delete file="${itext.dist}/www.tar" /> -+ <tar tarfile="${itext.dist}/tutorial.tar" basedir="${itext.tutorial}" /> -+ <gzip zipfile="${itext.dist}/tutorial.tar.gz" src="${itext.dist}/tutorial.tar" /> -+ <delete file="${itext.dist}/tutorial.tar" /> -+ <tar tarfile="${itext.dist}/examples.tar" basedir="${itext.examples}" excludes="**/*.class" /> -+ <gzip zipfile="${itext.dist}/examples.tar.gz" src="${itext.dist}/examples.tar" /> -+ <delete file="${itext.dist}/examples.tar" /> -+ </target> -+ -+ <target name="examples" depends="properties" description="--> executes (almost) all examples from the tutorial"> -+ <echo>Examples Chap0105.java, OutSimplePDF.java, Calendar.java and Month.java are NOT STANDALONE programs.</echo> -+ <echo>They will not compile without a servlet library.</echo> -+ <echo>Examples Chap0611.java and Chap0612.java require JAI.</echo> -+ <echo>They will not compile without this extra library.</echo> -+ <javac srcdir="${itext.examples}" destdir="${itext.examples}" verbose="false" deprecation="false" excludes="Chap0105.java, OutSimplePDF.java, Calendar.java, Month.java, Chap0611.java, Chap0612.java" > -+ <classpath refid="classpath" /> -+ </javac> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0101"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0102"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0103"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0104"> -+ <classpath refid="classpath" /> -+ </java> -+ <echo>Chapter 1 example 5: this is a Servlet example!</echo> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0106"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0107"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0108"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0109"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0110"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0111"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0201"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0202"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0203"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0204"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0205"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0206"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0207"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0208"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap02_hyphenation"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0209"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0301"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0302"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0303"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0304"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0401"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0402"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0403"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0404"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0405"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0501"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0502"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0503"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0504"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0505"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0506"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0507"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0508"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0509"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0510"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0511"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0512"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0513"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0514"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0515"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0516"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0517"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0518"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0601"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0602"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0603"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0604"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0605"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0606"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0607"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0608"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0609"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0610"> -+ <classpath refid="classpath" /> -+ </java> -+ <echo>Chapter 6 example 11: this example requires JAI</echo> -+ <echo>Please compile and execute it seperately</echo> -+ <echo>Chapter 6 example 12: this example requires JAI</echo> -+ <echo>Please compile and execute it seperately</echo> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0613"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0614"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0615"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0616"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0701"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0702"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0703"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0704"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0705"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0706"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0707"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0708"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0801"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0802"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0803"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0804"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0901"> -+ <classpath refid="classpath" /> -+ </java> -+ <echo>Chapter 9 example 2: this example requires a correct filepath to comic.ttf</echo> -+ <echo>Please compile and execute it seperately</echo> -+ <echo>Chapter 9 example 3: this example requires a correct filepath to comic.ttf</echo> -+ <echo>Please compile and execute it seperately</echo> -+ <echo>Chapter 9 example 4: this example requires a correct filepath to msgothic.ttc</echo> -+ <echo>Please compile and execute it seperately</echo> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0905"> -+ <classpath refid="classpath" /> -+ </java> -+ <echo>Chapter 9 example 6: this example requires a correct filepath to some ttc's and ttf's</echo> -+ <echo>Please compile and execute it seperately</echo> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0907"> -+ <classpath refid="classpath" /> -+ </java> -+ <echo>Chapter 9 example 8: this example requires a correct filepath to some barcode ttf's</echo> -+ <echo>Please compile and execute it seperately</echo> -+ <java fork="yes" dir="${itext.examples}" classname="Chap0909"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap1001"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap1002"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap1003"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap1004"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap1005"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap1006"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap1007"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap1008"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap1009"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap1010"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap1011"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap1012"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap1013"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap1014"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap1015"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap10_Graphics2D"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="iTextLogo"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap1101"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap1102"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap1103"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap1104"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap1105"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap1106"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap1107"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap1108"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap1109"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap1110"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap1201"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap1202"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap1203"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap13_form"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="Chap13_pdfreader"> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="com.lowagie.tools.concat_pdf"> -+ <arg value="Chap0101.pdf"/> -+ <arg value="Chap0102.pdf"/> -+ <arg value="Chap0103.pdf"/> -+ <arg value="result.pdf"/> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="com.lowagie.tools.split_pdf"> -+ <arg value="result.pdf"/> -+ <arg value="result1.pdf"/> -+ <arg value="result2.pdf"/> -+ <arg value="2"/> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="com.lowagie.tools.handout_pdf"> -+ <arg value="result.pdf"/> -+ <arg value="handout.pdf"/> -+ <arg value="2"/> -+ <classpath refid="classpath" /> -+ </java> -+ <java fork="yes" dir="${itext.examples}" classname="com.lowagie.tools.encrypt_pdf"> -+ <arg value="result.pdf"/> -+ <arg value="encrypted.pdf"/> -+ <arg value="user"/> -+ <arg value="master"/> -+ <arg value="00000000"/> -+ <arg value="128"/> -+ <classpath refid="classpath" /> -+ </java> -+ <delete> -+ <fileset dir="${itext.examples}" includes="**/*.class"/> -+ </delete> -+ </target> -+ -+ <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --> -+ <!-- Making a release --> -+ <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --> -+ -+ <target name="release" depends="properties,jarWithXML, srczip, srctargz, docstargz, tutorialtargz" description="--> makes a complete iText release"> -+ </target> -+ -+ <target name="no.version.number" if="number.is.invalid"> -+ <fail message="You didn't enter a version number: ant -Dnumber=XXX release.sf" /> -+ </target> -+ -+ <target name="release.sf" depends="properties" description="--> makes a complete iText release ready to publish on SourceForge"> -+ <property name="number" value="${defaultnumber}" /> -+ <property name="number.is.${number}" value="true" /> -+ <antcall target="no.version.number" /> -+ <antcall target="release" /> -+ <mkdir dir="${itext.sf}" /> -+ <copy file="${itext.dist}/iText.jar" tofile="${itext.sf}/itext-${number}.jar" overwrite="yes" /> -+ <copy file="${itext.dist}/iTextXML.jar" tofile="${itext.sf}/itext-xml-${number}.jar" overwrite="yes" /> -+ <copy file="${itext.dist}/src.zip" tofile="${itext.sf}/itext-src-${number}.zip" overwrite="yes" /> -+ <copy file="${itext.dist}/srcXML.zip" tofile="${itext.sf}/itext-xml-src-${number}.zip" overwrite="yes" /> -+ <copy file="${itext.dist}/src.tar.gz" tofile="${itext.sf}/itext-src-${number}.tar.gz" overwrite="yes" /> -+ <copy file="${itext.dist}/srcXML.tar.gz" tofile="${itext.sf}/itext-xml-src-${number}.tar.gz" overwrite="yes" /> -+ <copy file="${itext.dist}/docs.tar.gz" tofile="${itext.sf}/itext-docs-${number}.tar.gz" overwrite="yes" /> -+ <copy file="${itext.dist}/tutorial.tar.gz" tofile="${itext.sf}/itext-tutorial-${number}.tar.gz" overwrite="yes" /> -+ </target> -+ -+ <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --> -+ <!-- Installing iText in one command --> -+ <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --> -+ -+ <target name="install" depends="properties,download.site, release, examples" description="--> installs iText in one command"> -+ </target> -+ -+ <target name="install.cvs" depends="properties,download.cvs, release, examples" description="--> installs the current version of iText in one command"> -+ </target> -+ -+</project> -\ Kein Zeilenumbruch am Dateiende. -diff -N -r -u libitext-java-1.02b.orig/debian/patches/01libitext-java-addbuildscript.patch libitext-java-1.02b/debian/patches/01libitext-java-addbuildscript.patch ---- libitext-java-1.02b.orig/debian/patches/01libitext-java-addbuildscript.patch 1970-01-01 01:00:00.000000000 +0100 -+++ libitext-java-1.02b/debian/patches/01libitext-java-addbuildscript.patch 2006-01-21 20:59:30.000000000 +0100 -@@ -0,0 +1,703 @@ -+diff -N -r -u libitext-java-1.02b.orig/build.xml libitext-java-1.02b/build.xml -+--- libitext-java-1.02b.orig/build.xml 1970-01-01 01:00:00.000000000 +0100 -++++ libitext-java-1.02b/build.xml 2006-01-21 20:55:59.000000000 +0100 -+@@ -0,0 +1,698 @@ -++<?xml version="1.0"?> -++ -++<!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --> -++<!-- iText, a JAVA - PDF library --> -++<!-- $Id: build.xml,v 1.112 2003/06/26 12:13:44 blowagie Exp $ --> -++<!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --> -++ -++<project name="iText" default="help" basedir="."> -++ -++ <property environment="env" /> -++ -++ <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --> -++ <!-- Some general properties --> -++ <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --> -++ <target name="properties" description="--> Sets a number of common properties"> -++ <property name="itext.home" value="." /> -++ <property name="itext.src" value="${itext.home}/src" /> -++ <property name="itext.classes" value="${itext.home}/classes" /> -++ <property name="itext.lib" value="${itext.home}/lib" /> -++ <property name="itext.docs" value="${itext.home}/docs" /> -++ <property name="itext.www" value="${itext.home}/www" /> -++ <property name="itext.tutorial" value="${itext.www}/tutorial" /> -++ <property name="itext.examples" value="${itext.www}/examples" /> -++ <property name="itext.dist" value="${itext.home}/dist" /> -++ <property name="itext.sf" value="${itext.dist}/sf" /> -++ <property name="itext.bin" value="${itext.home}/bin" /> -++ <property name="itext.cvsroot" value=":pserver:[email protected]:/cvsroot/itext" /> -++ <property name="defaultnumber" value="invalid" /> -++ <available property="j2ee.jar" value="${env.J2EE_HOME}/lib/j2ee.jar" file="${env.J2EE_HOME}/lib/j2ee.jar"/> -++ <property name="j2ee.jar" value="COULD_NOT_FIND_J2EE_JAR"/> -++ -++ <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --> -++ <!-- The classpath when the release is done --> -++ <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --> -++ -++ <path id="classpath"> -++ <pathelement location="${j2ee.jar}" /> -++ <pathelement location="${itext.bin}/iText.jar" /> -++ <pathelement location="${itext.bin}/iTextXML.jar" /> -++ <pathelement location="${itext.bin}/iTextHYPH.jar" /> -++ <pathelement location="${itext.examples}" /> -++ </path> -++ </target> -++ -++ <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --> -++ <!-- Help --> -++ <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --> -++ -++ <target name="help" description="--> shows the help screen"> -++ <echo>Using ANT for ${ant.project.name}</echo> -++ <echo /> -++ <echo>INSTALLING iText</echo> -++ <echo>ant install: downloads and installs the most recent release in one command</echo> -++ <echo>ant install.cvs: downloads and installs the current CVS version in one command</echo> -++ <echo /> -++ <echo>GETTING THE CODE</echo> -++ <echo>ant checkout: checks out the code from CVS</echo> -++ <echo>ant download: downloads some files needed to build a release</echo> -++ <echo>ant download.cvs: downloads the most recent VERSION of the code</echo> -++ <echo>ant download.site: downloads the most recent RELEASE of the code</echo> -++ <echo /> -++ <echo>COMPILING THE CODE</echo> -++ <echo>ant compile: compiles iText without RTF and XML functionality</echo> -++ <echo>ant compileWithXML: compiles iText completely</echo> -++ <echo /> -++ <echo>JARRING THE CODE</echo> -++ <echo>ant jar: compiles and jars iText without RTF and XML functionality</echo> -++ <echo>ant jarWithXML: compiles and jars iText completely</echo> -++ <echo /> -++ <echo>ARCHIVING THE SOURCE</echo> -++ <echo>ant srczip: makes zipfiles with the sourcecode</echo> -++ <echo>ant srctargz: makes tar.gz-files with the sourcecode</echo> -++ <echo /> -++ <echo>DOCUMENTATION</echo> -++ <echo>ant javadoc: generates the API documentation</echo> -++ <echo>ant docstargz: generates the API docs and puts them in a tar.gz-file</echo> -++ <echo>ant tutorialtargz: generates several tar.gz-files with documentation (tutorial, examples,...)</echo> -++ <echo>ant examples: generates most of the PDF files of the tutorial</echo> -++ <echo /> -++ <echo>RELEASE</echo> -++ <echo>ant release: makes a complete iText release</echo> -++ <echo>ant -Dnumber=XXX release.sf: prepares a release XXX for sourceforge</echo> -++ </target> -++ -++ <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --> -++ <!-- Getting the code --> -++ <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --> -++ -++ <target name="checkout" depends="properties" description="--> checks out the source code form CVS"> -++ <echo>Logging in: the password for user anonymous is empty;</echo> -++ <echo>just press enter when asked for it</echo> -++ <cvs cvsroot="${itext.cvsroot}" command="login" /> -++ <cvs cvsroot="${itext.cvsroot}" package="www" dest="${itext.home}" /> -++ <cvs cvsroot="${itext.cvsroot}" package="src" dest="${itext.home}" /> -++ </target> -++ -++ <target name="download" depends="properties" description="--> downloads some files needed to make a release"> -++ <mkdir dir="${itext.www}" /> -++ <get src="http://www.lowagie.com/iText/logo.gif" dest="${itext.www}/logo.gif" verbose="true" /> -++ <get src="http://www.lowagie.com/iText/iText.gif" dest="${itext.www}/iText.gif" verbose="true" /> -++ <get src="http://www.lowagie.com/iText/iTextLogo.gif" dest="${itext.www}/iTextLogo.gif" verbose="true" /> -++ <mkdir dir="${itext.tutorial}" /> -++ <get src="http://www.lowagie.com/iText/tutorial/Chap0101.png" dest="${itext.tutorial}/Chap0101.png" verbose="true" /> -++ <get src="http://www.lowagie.com/iText/tutorial/Chap0106.png" dest="${itext.tutorial}/Chap0106.png" verbose="true" /> -++ <get src="http://www.lowagie.com/iText/tutorial/Chap0106dos.png" dest="${itext.tutorial}/Chap0106dos.png" verbose="true" /> -++ <mkdir dir="${itext.examples}" /> -++ <get src="http://www.lowagie.com/iText/examples/harbour.wmf" dest="${itext.examples}/harbour.wmf" verbose="true" /> -++ <get src="http://www.lowagie.com/iText/examples/pngnow.png" dest="${itext.examples}/pngnow.png" verbose="true" /> -++ <get src="http://www.lowagie.com/iText/examples/cover.png" dest="${itext.examples}/cover.png" verbose="true" /> -++ <get src="http://www.lowagie.com/iText/examples/H.gif" dest="${itext.examples}/H.gif" verbose="true" /> -++ <get src="http://www.lowagie.com/iText/examples/caesar_coin.jpg" dest="${itext.examples}/caesar_coin.jpg" verbose="true" /> -++ <get src="http://www.lowagie.com/iText/examples/hitchcock.png" dest="${itext.examples}/hitchcock.png" verbose="true" /> -++ <get src="http://www.lowagie.com/iText/examples/myKids.jpg" dest="${itext.examples}/myKids.jpg" verbose="true" /> -++ <get src="http://www.lowagie.com/iText/examples/raf.jpg" dest="${itext.examples}/raf.jpg" verbose="true" /> -++ <get src="http://www.lowagie.com/iText/examples/vonnegut.gif" dest="${itext.examples}/vonnegut.gif" verbose="true" /> -++ <get src="http://www.lowagie.com/iText/examples/watermark.jpg" dest="${itext.examples}/watermark.jpg" verbose="true" /> -++ <get src="http://www.lowagie.com/iText/examples/12.tif" dest="${itext.examples}/12.tif" verbose="true" /> -++ <get src="http://www.lowagie.com/iText/examples/338814-00.tif" dest="${itext.examples}/338814-00.tif" verbose="true" /> -++ <mkdir dir="${itext.bin}" /> -++ <get src="http://itext.sourceforge.net/downloads/iTextAsian.jar" dest="${itext.bin}/iTextAsian.jar" verbose="true" /> -++ <get src="http://itext.sourceforge.net/downloads/iTextAsianCmaps.jar" dest="${itext.bin}/iTextAsianCmaps.jar" verbose="true" /> -++ <get src="http://itext.sourceforge.net/downloads/iTextHYPH.jar" dest="${itext.bin}/iTextHYPH.jar" verbose="true" /> -++ <get src="http://itext.sourceforge.net/downloads/barcodefonts.zip" dest="${itext.bin}/barcodefonts.zip" verbose="true" /> -++ </target> -++ -++ <target name="download.cvs" depends="properties, checkout, download" description="--> downloads the most recent version of the code"> -++ <echo>Remark:</echo> -++ <echo>The CVS version is the most recent version of the code.</echo> -++ <echo>It may not always compile.</echo> -++ <echo>Use ant download.site to download working code.</echo> -++ </target> -++ -++ <target name="download.site" depends="properties, download" description="--> downloads the most recent release of the code"> -++ <mkdir dir="${itext.dist}" /> -++ <get src="http://itext.sourceforge.net/downloads/src.tar.gz" dest="${itext.dist}/src.tar.gz" verbose="true" /> -++ <get src="http://itext.sourceforge.net/downloads/srcXML.tar.gz" dest="${itext.dist}/srcXML.tar.gz" verbose="true" /> -++ <get src="http://itext.sourceforge.net/downloads/www.tar.gz" dest="${itext.dist}/www.tar.gz" verbose="true" /> -++ <get src="http://itext.sourceforge.net/downloads/tutorial.tar.gz" dest="${itext.dist}/tutorial.tar.gz" verbose="true" /> -++ <get src="http://itext.sourceforge.net/downloads/examples.tar.gz" dest="${itext.dist}/examples.tar.gz" verbose="true" /> -++ -++ <mkdir dir="${itext.src}" /> -++ <gunzip src="${itext.dist}/src.tar.gz" dest="${itext.dist}/temp.tar" /> -++ <untar src="${itext.dist}/temp.tar" dest="${itext.src}" /> -++ <delete file="${itext.dist}/temp.tar" /> -++ <gunzip src="${itext.dist}/srcXML.tar.gz" dest="${itext.dist}/temp.tar" /> -++ <untar src="${itext.dist}/temp.tar" dest="${itext.src}" /> -++ <delete file="${itext.dist}/temp.tar" /> -++ -++ <mkdir dir="${itext.www}" /> -++ <gunzip src="${itext.dist}/www.tar.gz" dest="${itext.dist}/temp.tar" /> -++ <untar src="${itext.dist}/temp.tar" dest="${itext.www}" /> -++ <delete file="${itext.dist}/temp.tar" /> -++ <mkdir dir="${itext.tutorial}" /> -++ <gunzip src="${itext.dist}/tutorial.tar.gz" dest="${itext.dist}/temp.tar" /> -++ <untar src="${itext.dist}/temp.tar" dest="${itext.tutorial}" /> -++ <delete file="${itext.dist}/temp.tar" /> -++ <mkdir dir="${itext.examples}" /> -++ <gunzip src="${itext.dist}/examples.tar.gz" dest="${itext.dist}/temp.tar" /> -++ <untar src="${itext.dist}/temp.tar" dest="${itext.examples}" /> -++ <delete file="${itext.dist}/temp.tar" /> -++ </target> -++ -++ <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --> -++ <!-- Compiling the code --> -++ <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --> -++ -++ <target name="compile" depends="properties" description="--> compiles the core iText code"> -++ <mkdir dir="${itext.classes}" /> -++ <javac srcdir="${itext.src}" destdir="${itext.classes}" -++ excludes="com/lowagie/servlets/*.java,com/lowagie/text/xml/*.java,com/lowagie/text/html/HtmlParser.java,com/lowagie/text/html/HtmlPeer.java,com/lowagie/text/html/HtmlTagMap.java,com/lowagie/text/html/SAXmyHtmlHandler.java"> -++ <classpath refid="classpath" /> -++ </javac> -++ </target> -++ -++ <target name="compileWithXML" depends="properties" description="--> compiles iText completely"> -++ <mkdir dir="${itext.classes}" /> -++ <echo>Your path to j2ee.jar: ${j2ee.jar}</echo> -++ <javac srcdir="${itext.src}" destdir="${itext.classes}"> -++ <classpath refid="classpath" /> -++ </javac> -++ </target> -++ -++ <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --> -++ <!-- Jarring the code --> -++ <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --> -++ -++ <target name="jar" depends="properties,compile" description="--> makes a jarfile from the core iText code"> -++ <mkdir dir="${itext.dist}" /> -++ <mkdir dir="${itext.bin}" /> -++ <mkdir dir="${itext.classes}/com/lowagie/text/pdf/fonts" /> -++ <copy todir="${itext.classes}/com/lowagie/text/pdf/fonts" overwrite="yes"> -++ <fileset dir="${itext.src}/com/lowagie/text/pdf/fonts"> -++ <include name="**/*.afm"/> -++ </fileset> -++ </copy> -++ <jar jarfile="${itext.dist}/iText.jar" basedir="${itext.classes}" excludes="**/com/lowagie/text/xml/*.class,**/HtmlPeer.class,**/HtmlParser.class,**/HtmlTagMap.class,**/SAXmyHtmlHandler.class" /> -++ <copy file="${itext.dist}/iText.jar" todir="${itext.bin}" overwrite="yes" /> -++ </target> -++ -++ <target name="jarWithXML" depends="compileWithXML" description="--> makes a jarfile from the complete iText code"> -++ <mkdir dir="${itext.dist}" /> -++ <mkdir dir="${itext.bin}" /> -++ <mkdir dir="${itext.classes}/com/lowagie/text/pdf/fonts" /> -++ <copy todir="${itext.classes}/com/lowagie/text/pdf/fonts" overwrite="yes"> -++ <fileset dir="${itext.src}/com/lowagie/text/pdf/fonts"> -++ <include name="**/*.afm"/> -++ </fileset> -++ </copy> -++ <jar jarfile="${itext.dist}/iText.jar" basedir="${itext.classes}" excludes="**/com/lowagie/text/xml/*.class,**/HtmlPeer.class,**/HtmlParser.class,**/HtmlTagMap.class,**/SAXmyHtmlHandler.class" /> -++ <copy file="${itext.dist}/iText.jar" todir="${itext.bin}" overwrite="yes" /> -++ <jar jarfile="${itext.dist}/iTextXML.jar" basedir="${itext.classes}" includes="**/com/lowagie/text/xml/*.class,**/HtmlPeer.class,**/HtmlParser.class,**/HtmlTagMap.class,**/SAXmyHtmlHandler.class" /> -++ <copy file="${itext.dist}/iTextXML.jar" todir="${itext.bin}" overwrite="yes" /> -++ <jar jarfile="${itext.dist}/iTextAsian.jar" basedir="${itext.src}" includes="**/com/lowagie/text/pdf/fonts/*.cmap,**/com/lowagie/text/pdf/fonts/*.properties" /> -++ <jar jarfile="${itext.dist}/iTextAsianCmaps.jar" basedir="${itext.src}" includes="**/com/lowagie/text/pdf/fonts/cmaps/*" /> -++ <copy file="${itext.dist}/iTextAsian.jar" todir="${itext.bin}" overwrite="yes" /> -++ <copy file="${itext.dist}/iTextAsianCmaps.jar" todir="${itext.bin}" overwrite="yes" /> -++ </target> -++ -++ <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --> -++ <!-- Archiving the source --> -++ <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --> -++ -++ <target name="srczip" depends="properties" description="--> makes two zipfiles (1 with the core iText code and 1 with XML/RTF classes)"> -++ <mkdir dir="${itext.dist}" /> -++ <zip zipfile="${itext.dist}/src.zip" basedir="${itext.src}" includes="**/*.java, **/*.txt, **/*.afm" excludes="com/lowagie/servlets/*.java,com/lowagie/text/xml/*.java,com/lowagie/text/html/HtmlParser.java,com/lowagie/text/html/HtmlPeer.java,com/lowagie/text/html/HtmlTagMap.java,com/lowagie/text/html/SAXmyHtmlHandler.java" /> -++ <zip zipfile="${itext.dist}/srcXML.zip" basedir="${itext.src}" includes="com/lowagie/servlets/*.java,com/lowagie/text/xml/*.java,com/lowagie/text/html/HtmlParser.java,com/lowagie/text/html/HtmlPeer.java,com/lowagie/text/html/HtmlTagMap.java,com/lowagie/text/html/SAXmyHtmlHandler.java" /> -++ </target> -++ -++ <target name="srctargz" depends="properties" description="--> makes two tar.gz-files (1 with the core iText code and 1 with XML/RTF classes)"> -++ <mkdir dir="${itext.dist}" /> -++ <tar tarfile="${itext.dist}/classes.tar" basedir="${itext.classes}" /> -++ <tar tarfile="${itext.dist}/src.tar" basedir="${itext.src}" includes="**/*.java, **/*.txt, **/*.afm" excludes="com/lowagie/servlets/*.java,com/lowagie/text/xml/*.java,com/lowagie/text/html/HtmlParser.java,com/lowagie/text/html/HtmlPeer.java,com/lowagie/text/html/HtmlTagMap.java,com/lowagie/text/html/SAXmyHtmlHandler.java" /> -++ <tar tarfile="${itext.dist}/srcXML.tar" basedir="${itext.src}" includes="com/lowagie/servlets/*.java,com/lowagie/text/xml/*.java,com/lowagie/text/html/HtmlParser.java,com/lowagie/text/html/HtmlPeer.java,com/lowagie/text/html/HtmlTagMap.java,com/lowagie/text/html/SAXmyHtmlHandler.java" /> -++ <gzip zipfile="${itext.dist}/classes.tar.gz" src="${itext.dist}/classes.tar" /> -++ <gzip zipfile="${itext.dist}/src.tar.gz" src="${itext.dist}/src.tar" /> -++ <gzip zipfile="${itext.dist}/srcXML.tar.gz" src="${itext.dist}/srcXML.tar" /> -++ <delete file="${itext.dist}/classes.tar" /> -++ <delete file="${itext.dist}/src.tar" /> -++ <delete file="${itext.dist}/srcXML.tar" /> -++ </target> -++ -++ <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --> -++ <!-- Archiving the source --> -++ <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --> -++ -++ <target name="javadoc" depends="properties" description="--> generates the complete documentation with javadoc"> -++ <mkdir dir="${itext.docs}" /> -++ <javadoc packagenames="com.lowagie.tools.*,com.lowagie.servlets.*, com.lowagie.text.*, com.lowagie.text.pdf.*, com.lowagie.text.rtf.*, com.lowagie.text.pdf.afm.*, com.lowagie.text.pdf.hyphenation.*, com.lowagie.text.pdf.wmf.*, com.lowagie.text.html.*, com.lowagie.text.markup.*, com.lowagie.text.xml.*" -++ sourcepath="${itext.src}" -++ destdir="${itext.docs}" -++ author="true" -++ private="true"> -++ <link href="http://java.sun.com/j2se/1.3/docs/api/" /> -++ </javadoc> -++ </target> -++ -++ <target name="docstargz" depends="properties,javadoc" description="--> makes a tar.gz-file with the complete javadoc documentation"> -++ <mkdir dir="${itext.dist}" /> -++ <tar tarfile="${itext.dist}/docs.tar" basedir="${itext.docs}" /> -++ <gzip zipfile="${itext.dist}/docs.tar.gz" src="${itext.dist}/docs.tar" /> -++ <delete file="${itext.dist}/docs.tar" /> -++ </target> -++ -++ <target name="tutorialtargz" depends="properties" description="--> makes several tar.gz-files with the tutorial, examples,..."> -++ <mkdir dir="${itext.dist}" /> -++ <tar tarfile="${itext.dist}/www.tar" basedir="${itext.www}" excludes="**/tutorial/*.*, **/examples/*.*" /> -++ <gzip zipfile="${itext.dist}/www.tar.gz" src="${itext.dist}/www.tar" /> -++ <delete file="${itext.dist}/www.tar" /> -++ <tar tarfile="${itext.dist}/tutorial.tar" basedir="${itext.tutorial}" /> -++ <gzip zipfile="${itext.dist}/tutorial.tar.gz" src="${itext.dist}/tutorial.tar" /> -++ <delete file="${itext.dist}/tutorial.tar" /> -++ <tar tarfile="${itext.dist}/examples.tar" basedir="${itext.examples}" excludes="**/*.class" /> -++ <gzip zipfile="${itext.dist}/examples.tar.gz" src="${itext.dist}/examples.tar" /> -++ <delete file="${itext.dist}/examples.tar" /> -++ </target> -++ -++ <target name="examples" depends="properties" description="--> executes (almost) all examples from the tutorial"> -++ <echo>Examples Chap0105.java, OutSimplePDF.java, Calendar.java and Month.java are NOT STANDALONE programs.</echo> -++ <echo>They will not compile without a servlet library.</echo> -++ <echo>Examples Chap0611.java and Chap0612.java require JAI.</echo> -++ <echo>They will not compile without this extra library.</echo> -++ <javac srcdir="${itext.examples}" destdir="${itext.examples}" verbose="false" deprecation="false" excludes="Chap0105.java, OutSimplePDF.java, Calendar.java, Month.java, Chap0611.java, Chap0612.java" > -++ <classpath refid="classpath" /> -++ </javac> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0101"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0102"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0103"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0104"> -++ <classpath refid="classpath" /> -++ </java> -++ <echo>Chapter 1 example 5: this is a Servlet example!</echo> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0106"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0107"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0108"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0109"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0110"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0111"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0201"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0202"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0203"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0204"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0205"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0206"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0207"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0208"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap02_hyphenation"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0209"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0301"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0302"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0303"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0304"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0401"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0402"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0403"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0404"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0405"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0501"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0502"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0503"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0504"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0505"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0506"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0507"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0508"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0509"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0510"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0511"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0512"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0513"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0514"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0515"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0516"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0517"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0518"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0601"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0602"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0603"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0604"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0605"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0606"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0607"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0608"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0609"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0610"> -++ <classpath refid="classpath" /> -++ </java> -++ <echo>Chapter 6 example 11: this example requires JAI</echo> -++ <echo>Please compile and execute it seperately</echo> -++ <echo>Chapter 6 example 12: this example requires JAI</echo> -++ <echo>Please compile and execute it seperately</echo> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0613"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0614"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0615"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0616"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0701"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0702"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0703"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0704"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0705"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0706"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0707"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0708"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0801"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0802"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0803"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0804"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0901"> -++ <classpath refid="classpath" /> -++ </java> -++ <echo>Chapter 9 example 2: this example requires a correct filepath to comic.ttf</echo> -++ <echo>Please compile and execute it seperately</echo> -++ <echo>Chapter 9 example 3: this example requires a correct filepath to comic.ttf</echo> -++ <echo>Please compile and execute it seperately</echo> -++ <echo>Chapter 9 example 4: this example requires a correct filepath to msgothic.ttc</echo> -++ <echo>Please compile and execute it seperately</echo> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0905"> -++ <classpath refid="classpath" /> -++ </java> -++ <echo>Chapter 9 example 6: this example requires a correct filepath to some ttc's and ttf's</echo> -++ <echo>Please compile and execute it seperately</echo> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0907"> -++ <classpath refid="classpath" /> -++ </java> -++ <echo>Chapter 9 example 8: this example requires a correct filepath to some barcode ttf's</echo> -++ <echo>Please compile and execute it seperately</echo> -++ <java fork="yes" dir="${itext.examples}" classname="Chap0909"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap1001"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap1002"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap1003"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap1004"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap1005"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap1006"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap1007"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap1008"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap1009"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap1010"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap1011"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap1012"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap1013"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap1014"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap1015"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap10_Graphics2D"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="iTextLogo"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap1101"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap1102"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap1103"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap1104"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap1105"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap1106"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap1107"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap1108"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap1109"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap1110"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap1201"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap1202"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap1203"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap13_form"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="Chap13_pdfreader"> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="com.lowagie.tools.concat_pdf"> -++ <arg value="Chap0101.pdf"/> -++ <arg value="Chap0102.pdf"/> -++ <arg value="Chap0103.pdf"/> -++ <arg value="result.pdf"/> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="com.lowagie.tools.split_pdf"> -++ <arg value="result.pdf"/> -++ <arg value="result1.pdf"/> -++ <arg value="result2.pdf"/> -++ <arg value="2"/> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="com.lowagie.tools.handout_pdf"> -++ <arg value="result.pdf"/> -++ <arg value="handout.pdf"/> -++ <arg value="2"/> -++ <classpath refid="classpath" /> -++ </java> -++ <java fork="yes" dir="${itext.examples}" classname="com.lowagie.tools.encrypt_pdf"> -++ <arg value="result.pdf"/> -++ <arg value="encrypted.pdf"/> -++ <arg value="user"/> -++ <arg value="master"/> -++ <arg value="00000000"/> -++ <arg value="128"/> -++ <classpath refid="classpath" /> -++ </java> -++ <delete> -++ <fileset dir="${itext.examples}" includes="**/*.class"/> -++ </delete> -++ </target> -++ -++ <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --> -++ <!-- Making a release --> -++ <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --> -++ -++ <target name="release" depends="properties,jarWithXML, srczip, srctargz, docstargz, tutorialtargz" description="--> makes a complete iText release"> -++ </target> -++ -++ <target name="no.version.number" if="number.is.invalid"> -++ <fail message="You didn't enter a version number: ant -Dnumber=XXX release.sf" /> -++ </target> -++ -++ <target name="release.sf" depends="properties" description="--> makes a complete iText release ready to publish on SourceForge"> -++ <property name="number" value="${defaultnumber}" /> -++ <property name="number.is.${number}" value="true" /> -++ <antcall target="no.version.number" /> -++ <antcall target="release" /> -++ <mkdir dir="${itext.sf}" /> -++ <copy file="${itext.dist}/iText.jar" tofile="${itext.sf}/itext-${number}.jar" overwrite="yes" /> -++ <copy file="${itext.dist}/iTextXML.jar" tofile="${itext.sf}/itext-xml-${number}.jar" overwrite="yes" /> -++ <copy file="${itext.dist}/src.zip" tofile="${itext.sf}/itext-src-${number}.zip" overwrite="yes" /> -++ <copy file="${itext.dist}/srcXML.zip" tofile="${itext.sf}/itext-xml-src-${number}.zip" overwrite="yes" /> -++ <copy file="${itext.dist}/src.tar.gz" tofile="${itext.sf}/itext-src-${number}.tar.gz" overwrite="yes" /> -++ <copy file="${itext.dist}/srcXML.tar.gz" tofile="${itext.sf}/itext-xml-src-${number}.tar.gz" overwrite="yes" /> -++ <copy file="${itext.dist}/docs.tar.gz" tofile="${itext.sf}/itext-docs-${number}.tar.gz" overwrite="yes" /> -++ <copy file="${itext.dist}/tutorial.tar.gz" tofile="${itext.sf}/itext-tutorial-${number}.tar.gz" overwrite="yes" /> -++ </target> -++ -++ <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --> -++ <!-- Installing iText in one command --> -++ <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --> -++ -++ <target name="install" depends="properties,download.site, release, examples" description="--> installs iText in one command"> -++ </target> -++ -++ <target name="install.cvs" depends="properties,download.cvs, release, examples" description="--> installs the current version of iText in one command"> -++ </target> -++ -++</project> -+\ Kein Zeilenumbruch am Dateiende. diff --git a/debian/patches/02_ant_properties.patch b/debian/patches/02_ant_properties.patch new file mode 100644 index 0000000..531db1d --- /dev/null +++ b/debian/patches/02_ant_properties.patch @@ -0,0 +1,18 @@ +--- itext.orig/ant/.ant.properties 2006-09-14 06:19:00.000000000 -0400 ++++ itext/ant.properties 2006-09-23 21:07:51.000000000 -0400 +@@ -1,6 +1,6 @@ +-itext.home=../.. ++itext.home=../ + +-itext.src=${itext.home}/src ++itext.src=${itext.home}/ + itext.www=${itext.home}/www + itext.build=${itext.home}/build + +@@ -24,4 +24,4 @@ + releasenumber=1.4.5 + releasedate=2006-09-14 + earlyaccesslowagie=1.4.5 +-itext.cvsroot=:pserver:[email protected]:/cvsroot/itext +\ No hay ning�n car�cter de nueva l�nea al final del fichero ++itext.cvsroot=:pserver:[email protected]:/cvsroot/itext diff --git a/debian/rules b/debian/rules index 5c174e9..8ac105c 100755 --- a/debian/rules +++ b/debian/rules @@ -4,54 +4,28 @@ include /usr/share/cdbs/1/rules/debhelper.mk include /usr/share/cdbs/1/class/ant.mk include /usr/share/cdbs/1/rules/simple-patchsys.mk -JAVA_HOME := /usr/lib/kaffe +JAVA_HOME := /usr/lib/jvm/java-gcj ANT_HOME := /usr/share/ant DEB_JARS := servlet-2.3.jar ant-optional ecj $(ANT_HOME)/lib/ant-launcher.jar -DEB_ANT_BUILD_TARGET := javadoc dist -DEB_ANT_COMPILER := org.eclipse.jdt.core.JDTCompilerAdapter +DEB_ANT_BUILD_TARGET := jar +DEB_ANT_CLEAN_TARGET := # Additional command-line arguments for Ant -#ANT_ARGS := -verbose - -ANT_ARGS := -Dbuild.sysclasspath=first -Dj2ee.jar=/usr/share/java/servlet-api.jar - -DEB_ANT_COMPILER := org.eclipse.jdt.core.JDTCompilerAdapter -DEB_ANT_BUILD_TARGET := compileWithXML jarWithXML javadoc +ANT_ARGS := -Dcompile.optimize=false -D debian/ant.properties +#ANT_ARGS := -Dbuild.sysclasspath=first -Dj2ee.jar=/usr/share/java/servlet-api.jar LIBRARY_PACKAGE := itext -API_VERSION := 1.02b - -pre-build:: debian/stamp-uncompress - -uncompress: debian/stamp-uncompress -debian/stamp-uncompress: - dh_testdir - # Add here commands to configure the package. - mkdir src - (cd src; tar xvzf ../dist/src.tar.gz ; tar xvzf ../dist/srcXML.tar.gz) - mkdir lib - touch $@ +API_VERSION := 1.4.5 install/lib$(LIBRARY_PACKAGE)-java:: dh_installdirs -plib$(LIBRARY_PACKAGE)-java usr/share/java - install -m 644 bin/iText.jar debian/lib$(LIBRARY_PACKAGE)-java/usr/share/java/$(LIBRARY_PACKAGE)-$(API_VERSION).jar + install -m 644 build/bin/iText.jar debian/lib$(LIBRARY_PACKAGE)-java/usr/share/java/$(LIBRARY_PACKAGE)-$(API_VERSION).jar ln -s $(LIBRARY_PACKAGE)-$(API_VERSION).jar debian/lib$(LIBRARY_PACKAGE)-java/usr/share/java/$(LIBRARY_PACKAGE).jar - install -m 644 bin/iTextXML.jar debian/lib$(LIBRARY_PACKAGE)-java/usr/share/java/$(LIBRARY_PACKAGE)-xml-$(API_VERSION).jar - install -m 644 bin/iTextAsian.jar debian/lib$(LIBRARY_PACKAGE)-java/usr/share/java/$(LIBRARY_PACKAGE)-asian-$(API_VERSION).jar - install -m 644 bin/iTextAsianCmaps.jar debian/lib$(LIBRARY_PACKAGE)-java/usr/share/java/$(LIBRARY_PACKAGE)-asian-cmaps-$(API_VERSION).jar - -install/lib$(LIBRARY_PACKAGE)-java-doc:: - mkdir www - (cd www; tar xvzf ../dist/www.tar.gz) - (cd www/examples; tar xvzf ../../dist/examples.tar.gz) - (cd www/tutorial;tar xvzf ../../dist/tutorial.tar.gz) - dh_installdocs -plib$(LIBRARY_PACKAGE)-java-doc www docs clean:: dh_testdir dh_testroot - -rm -rf lib src bin classes www docs dist/*.jar - -rm debian/stamp-uncompress + -rm -rf build -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/libitext-java.git _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

