aboutsummaryrefslogtreecommitdiffstats
path: root/buildtools.xml
blob: 8b3838fb86d35a3501bcfc0543b9dcde5de8eb27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<?xml version="1.0"?>

<!-- ======================================================================= 

    Instructions for building the buildtools.jar:

 Classpath should contain the following:
   Xerces 1.2.x
   Xalan  1.2.x
   Xalan  2.x
   xml-fop/lib/ant.jar

  Run "ant -f buildtools.xml" to build a new version of the buildtools jar

======================================================================= -->
   

<project default="buildtools" basedir=".">
  <target name="init">
   <property name="src.dir" value="./src"/>
   <property name="build.src" value="./lib/src"/>
   <property name="build.dest" value="./lib/classes"/>

   <property name="tools" value="org/apache/fop/tools"/>
   <property name="hyph"  value="org/apache/fop/layout/hyphenation"/>
   <property name="buildtools.jar" value="./lib/buildtools.jar"/>

   <property name="xalan1" value="Xalan1Transform.java"/>
   <property name="trax" value="TraxTransform.java"/>

   <available property="trax.present" classname="javax.xml.transform.Transformer"/>
   <available property="xalan1.present" classname="org.apache.xalan.xslt.XSLTProcessor"/>
   </target>

   <target name="compile" depends="init,prepare.src">
     <mkdir dir="${build.dest}"/>
     <javac srcdir="${build.src}"
	    destdir="${build.dest}"/>
     
   </target>

   <target name="buildtools" depends="clean,init,compile">
     <echo message="Creating the jar file ${buildtools.jar}"/>
     <jar jarfile="${buildtools.jar}"
	  basedir="${build.dest}"
	  includes="${tools}/**,${hyph}/**"/>
   </target>

   <target name="prepare.src" depends="prepare.xalan1,prepare.trax">
     <copy todir="${build.src}">
       <fileset dir="${src.dir}"
	        includes="${tools}/**,${hyph}/**"
	        excludes="${tools}/anttasks/Fop.java,${tools}/TestConverter.java,${hyph}/Hyphenator.java,**/${xalan1},**/${trax}"/>
     </copy>
   </target>

   <target name="prepare.xalan1" if="xalan1.present">
     <echo message="Xalan1 is present. Installing Xalan1 support"/>
     <copy todir="${build.src}">
	<fileset dir="${src.dir}"
	      includes="**/${xalan1}"/>
     </copy>
   </target>

   <target name="prepare.trax" if="trax.present">
     <echo message="JAXP1.1 transforms is present. Installing TRaX support"/>
     <copy todir="${build.src}">
       <fileset dir="${src.dir}"
	        includes="**/${trax}"/>
     </copy>
   </target>

   <target name="clean" depends="init">
     <delete dir="${build.src}"/>
     <delete dir="${build.dest}"/>
   </target>

</project>