source: release-kits/wirk3/ant-scripts/compile.xml@ 17898

Last change on this file since 17898 was 17898, checked in by oranfry, 15 years ago

Standardised names of directories used in release kits

  • gsdl and greenstone3 -> compiled
  • distribution and distributions -> distributions
  • greenstone3 and web -> web

And, expect more specifically named properties files, e.g., lirk3-build.properties, wirk2-build.properties

File size: 3.0 KB
Line 
1<?xml version="1.0" encoding="utf-8" ?>
2<project name="wirk3-compile" default="compile">
3
4 <target name="compile">
5 <antcall target="checkout-greenstone3" />
6 <antcall target="greenstone3-set-version-numbers"><param name="greenstone3basedir" value="${basedir}/compiled" /></antcall>
7 <ant target="prepare-windows" dir="compiled" antfile="${wirk3.home}/ant-scripts/operations-on-gs3home.xml" inheritAll="false">
8 <property name="app.version" value="${version}"/>
9 <property name="branch.path" value="${branch.path}"/>
10 <property name="branch.revision" value="${branch.revision}"/>
11 </ant>
12 <ant target="build-windows" dir="compiled" antfile="${wirk3.home}/ant-scripts/operations-on-gs3home.xml" inheritAll="false">
13 <property name="app.version" value="${version}"/>
14 <property name="branch.path" value="${branch.path}"/>
15 <property name="branch.revision" value="${branch.revision}"/>
16 </ant>
17 <antcall target="compile-uninstaller" /> <!-- from rk3-targets -->
18 <antcall target="prepare-documentation" />
19 </target>
20
21 <target name="checkout-greenstone3">
22 <svn>
23 <checkout url="${svn.root}/greenstone3/${branch.path}" destPath="compiled" revision="${branch.revision}"/>
24 </svn>
25 </target>
26
27 <target name="tweak-configure-scripts">
28 <antcall target="mgpp-add-static" />
29 <antcall target="mg-add-static" />
30 <antcall target="gs2buildextra-add-static" />
31 </target>
32
33 <target name="prepare-documentation">
34 <mkdir dir="compiled/gsdl-manuals"/>
35 <svn>
36 <checkout url="${svn.root}/documentation/${branch.path}/manuals" destPath="compiled/gsdl-manuals/manuals" revision="${branch.revision}"/>
37 <checkout url="${svn.root}/documentation/${branch.path}/shared" destPath="compiled/gsdl-manuals/shared" revision="${branch.revision}"/>
38 </svn>
39 <javac srcdir="compiled/gsdl-manuals/shared" destdir="compiled/gsdl-manuals/shared" debug="on"><include name="*.java"/></javac>
40 <unzip src="compiled/gsdl-manuals/shared/fop.zip" dest="compiled/gsdl-manuals/shared"/>
41
42 <echo>Define Classpath</echo>
43 <path id="documentation.compile.classpath">
44 <fileset dir="compiled/gsdl-manuals">
45 <include name="**/*.jar"/>
46 </fileset>
47 <pathelement path="compiled/gsdl-manuals/shared"/>
48 <pathelement path="compiled/gsdl-manuals/manuals"/>
49 <pathelement path="compiled/gli/classes"/>
50 </path>
51
52 <echo>Apply XSLT</echo>
53 <java classname="org.apache.xalan.xslt.Process" classpathref="documentation.compile.classpath" fork="true">
54 <jvmarg value="-DGSDLHOME=${basedir}/greenstone" />
55 <arg value="-IN"/><arg file="compiled/gli/help/en/help.xml" />
56 <arg value="-XSL"/><arg file="compiled/gsdl-manuals/manuals/processing/gen-gli-help-to-manual-chapter.xsl" />
57 <arg value="-OUT"/><arg file="compiled/gsdl-manuals/manuals/xml-source/en/help-en.xml" />
58 </java>
59
60 <echo>Run generate-pdf.bat</echo>
61 <exec dir="${basedir}\compiled/gsdl-manuals/manuals" executable="cmd">
62 <arg value="/C" />
63 <arg file="${basedir}/compiled/gsdl-manuals/manuals/generate-pdf.bat" />
64 <arg value="u" />
65 <arg value="en" />
66 </exec>
67 </target>
68
69</project>
Note: See TracBrowser for help on using the repository browser.