source: release-kits/mark2/ant-scripts/compile.xml@ 19510

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

changing the way the release kits make the greenstone2 distribution: instead of starting from a fresh export of greenstone, start from a copy of the compiled working copy

File size: 3.6 KB
Line 
1<?xml version="1.0" encoding="utf-8" ?>
2<project name="mark2-compile" default="compile">
3
4 <target name="compile">
5
6 <!-- checkout -->
7 <antcall target="checkout-gsdl-gli" />
8 <antcall target="drop-in-docs"><param name="gsdl.basedir" value="${basedir}/compiled"/></antcall>
9 <antcall target="gsdl-set-version-numbers"><param name="gsdl.basedir" value="${basedir}/compiled"/></antcall>
10 <antcall target="gli-set-version-numbers"><param name="glibasedir" value="${basedir}/compiled/gli"/></antcall>
11
12 <!-- configure -->
13 <antcall target="run-configure"/>
14 <antcall target="tweak-makefiles"/>
15
16 <!-- make common-src and reconfigure -->
17 <!-- this is a workaround to a problem with the gsdl build code -->
18 <!-- expat needs to be compiled before the perl XML Parser is configured -->
19 <antcall target="make-common-src"/>
20 <antcall target="run-configure"/>
21
22 <!-- make -->
23 <antcall target="run-make"/>
24 <antcall target="run-make-install"/>
25 <antcall target="run-make-apache-for-dist"/>
26 <antcall target="strip-execs"/>
27
28 <!-- gli -->
29 <antcall target="compile-gli">
30 <param name="script.format" value="sh"/>
31 <param name="glibasedir" value="${basedir}/compiled/gli"/>
32 <param name="gsdlbasedir" value="${basedir}/compiled"/>
33 </antcall>
34
35 <!-- uninstaller -->
36 <antcall target="compile-uninstaller" /> <!-- from rk2-targets -->
37
38 <!-- build collections -->
39 <antcall target="build-demo-collection" />
40
41 </target>
42
43 <target name="run-configure">
44 <exec dir="${basedir}/compiled" executable="${basedir}/compiled/configure">
45 <arg value="--with-gdbm=${mark2.home}/mac/${processor}/gdbm"/>
46 <arg value="--enable-apache-httpd"/>
47 </exec>
48 </target>
49
50 <target name="tweak-makefiles">
51 <rsr file="${basedir}/compiled/runtime-src/src/recpt/Makefile" pattern="^(LIBS =.*)-L${mark2.home}/mac/${processor}/gdbm/lib -lgdbm(.*)$" replacement="$1${mark2.home}/mac/${processor}/gdbm/lib/libgdbm.a$2" />
52 <rsr file="${basedir}/compiled/runtime-src/src/oaiservr/Makefile" pattern="^(LIBS =.*)-L${mark2.home}/mac/${processor}/gdbm/lib -lgdbm(.*)$" replacement="$1${mark2.home}/mac/${processor}/gdbm/lib/libgdbm.a$2" />
53 <rsr file="${basedir}/compiled/common-src/src/gdbmedit/db2txt/Makefile" pattern="^(LIBS =.*)-L${mark2.home}/mac/${processor}/gdbm/lib -lgdbm(.*)$" replacement="$1${mark2.home}/mac/${processor}/gdbm/lib/libgdbm.a$2" />
54 <rsr file="${basedir}/compiled/common-src/src/gdbmedit/txt2db/Makefile" pattern="^(LIBS =.*)-L${mark2.home}/mac/${processor}/gdbm/lib -lgdbm(.*)$" replacement="$1${mark2.home}/mac/${processor}/gdbm/lib/libgdbm.a$2" />
55 <rsr file="${basedir}/compiled/runtime-src/src/recpt/Makefile" pattern="^(LIBS =.*)-L(.)\(PACKAGES_DIR\)/expat/lib -lexpat(.*)$" replacement="$1$2(PACKAGES_DIR)/expat/lib/libexpat.a$3" />
56 <rsr file="${basedir}/compiled/runtime-src/src/oaiservr/Makefile" pattern="^(LIBS =.*)-L(.)\(PACKAGES_DIR\)/expat/lib -lexpat(.*)$" replacement="$1$2(PACKAGES_DIR)/expat/lib/libexpat.a$3" />
57 </target>
58
59 <target name="run-make">
60 <exec dir="${basedir}/compiled" executable="make"/>
61 </target>
62
63 <target name="run-make-install">
64 <exec dir="${basedir}/compiled" executable="make"><arg value="install"/></exec>
65 </target>
66
67 <target name="run-make-apache-for-dist">
68 <exec dir="${basedir}/compiled" executable="make"><arg value="apache-for-dist"/></exec>
69 </target>
70
71 <target name="strip-execs">
72 <exec dir="${basedir}/compiled/bin/darwin" executable="find">
73 <arg line=". ! -name . -type f -maxdepth 1 -exec strip {} &#59;"/>
74 </exec>
75 </target>
76
77 <target name="build-demo-collection">
78 <exec dir="${basedir}/compiled" executable="${mark2.home}/resources/build-demo.sh"/>
79 </target>
80
81</project>
Note: See TracBrowser for help on using the repository browser.