source: release-kits/wirk2/ant-scripts/compile.xml@ 17978

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

use the shared target in favour of unshared one

File size: 3.5 KB
Line 
1<?xml version="1.0" encoding="utf-8" ?>
2<project name="wirk2-compile" default="compile">
3
4 <target name="compile">
5 <antcall target="checkout-gsdl-gli" />
6 <antcall target="gsdl-set-version-numbers"><param name="gsdl.basedir" value="${basedir}/compiled"/></antcall>
7 <antcall target="unzip-packages" />
8 <antcall target="get-winbin" />
9 <antcall target="insert-windows-perl"><param name="gsdl.basedir" value="compiled"/></antcall>
10 <antcall target="compile-c-code" />
11 <antcall target="compile-uninstaller" /> <!-- from rk2-targets -->
12 <antcall target="build-demo-collection" />
13 </target>
14
15 <target name="checkout-gsdl-gli">
16 <svn>
17 <checkout url="${svn.root}/gsdl/${branch.path}" destPath="${basedir}/compiled"/>
18 <checkout url="${svn.root}/gli/${branch.path}" destPath="${basedir}/compiled/gli"/>
19 </svn>
20 </target>
21
22 <target name="unzip-packages">
23 <unzip src="${basedir}/compiled/common-src/packages/windows/crypt/crypt.zip" dest="${basedir}/compiled/common-src/packages/windows/crypt"/>
24 <unzip src="${basedir}/compiled/common-src/packages/windows/expat/expat.zip" dest="${basedir}/compiled/common-src/packages/windows/expat"/>
25 <unzip src="${basedir}/compiled/common-src/packages/windows/gdbm/gdbm.zip" dest="${basedir}/compiled/common-src/packages/windows/gdbm"/>
26 <unzip src="${basedir}/compiled/common-src/packages/windows/stlport/stlport.zip" dest="${basedir}/compiled/common-src/packages/windows/stlport"/>
27 <unzip src="${basedir}/compiled/common-src/indexers/packages/windows/iconv/iconv.zip" dest="${basedir}/compiled/common-src/indexers/packages/windows/iconv"/>
28 </target>
29
30 <target name="get-winbin">
31 <if>
32 <bool><not><available file="${basedir}/compiled/bin/windows"/></not></bool>
33 <svn><export srcUrl="${svn.root}/other-projects/trunk/winbin/bin" destPath="${basedir}/compiled/bin/windows" revision="${branch.revision}"/></svn>
34 </if>
35 </target>
36
37 <target name="compile-c-code">
38 <copy file="${wirk2.home}/resources/compile.bat" todir="${basedir}/compiled" overwrite="true"/>
39 <exec dir="${basedir}/compiled" executable="${basedir}/compiled/compile.bat" />
40 <move file="${basedir}/compiled/server.exe" todir="${basedir}/compiled/bin/windows"/>
41 <move todir="${basedir}/compiled/bin/windows">
42 <fileset dir="${basedir}/compiled/cgi-bin" includes="library.exe,oaiserver.exe"/>
43 </move>
44 </target>
45
46 <target name="build-demo-collection">
47 <!-- the envs on these execs simulate the environment when you run setup.bat -->
48 <exec dir="${basedir}/compiled" executable="${basedir}/compiled/bin/windows/perl/bin/perl.exe">
49 <arg line="bin\script\import.pl --removeold demo"/>
50 <env key="GSDLHOME" value="${basedir}/compiled"/>
51 <env key="GSDLCOLLECTDIR" value="${basedir}/compiled/collect"/>
52 <env key="GSDLOS" value="windows"/>
53 <env key="PATH" value="${basedir}\compiled\bin\windows\perl\bin;${basedir}\compiled\bin\windows;${basedir}\compiled\bin\script"/>
54 </exec>
55 <exec dir="${basedir}/compiled" executable="${basedir}/compiled/bin/windows/perl/bin/perl.exe">
56 <arg line="bin\script\buildcol.pl --removeold demo"/>
57 <env key="GSDLHOME" value="${basedir}/compiled"/>
58 <env key="GSDLCOLLECTDIR" value="${basedir}/compiled/collect"/>
59 <env key="GSDLOS" value="windows"/>
60 <env key="PATH" value="${basedir}\compiled\bin\windows\perl\bin;${basedir}\compiled\bin\windows;${basedir}\compiled\bin\script"/>
61 </exec>
62
63 <delete dir="${basedir}/compiled/collect/demo/index"/>
64 <move file="${basedir}/compiled/collect/demo/building" tofile="${basedir}/compiled/collect/demo/index"/>
65 </target>
66
67</project>
Note: See TracBrowser for help on using the repository browser.