source: branches/rk-oran/mark2/ant-scripts/compile.xml@ 18907

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

partially tested, partially complete changes for release kits to create dist based on the compiled copy of greenstone

File size: 3.5 KB
RevLine 
[14982]1<?xml version="1.0" encoding="utf-8" ?>
[16453]2<project name="mark2-compile" default="compile">
[14982]3
4 <target name="compile">
5
6 <!-- checkout -->
[16741]7 <antcall target="checkout-gsdl-gli" />
[18907]8 <antcall target="drop-in-docs"><param name="gsdl.basedir" value="${basedir}/compiled"/></antcall>
[17898]9 <antcall target="gsdl-set-version-numbers"><param name="gsdl.basedir" value="${basedir}/compiled"/></antcall>
[18907]10 <antcall target="gli-set-version-numbers"><param name="glibasedir" value="${basedir}/compiled/gli"/></antcall>
[15956]11
[14982]12 <!-- configure -->
[16741]13 <antcall target="run-configure"/>
14 <antcall target="tweak-makefiles"/>
[14982]15
[18907]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
[15956]22 <!-- make -->
[16741]23 <antcall target="run-make"/>
24 <antcall target="run-make-install"/>
[18854]25 <antcall target="run-make-apache-for-dist"/>
[16741]26 <antcall target="strip-execs"/>
[14982]27
[18907]28 <!-- gli -->
29 <antcall target="compile-gli">
30 <param name="glibasedir" value="${basedir}/compiled/gli"/>
31 <param name="gsdlbasedir" value="${basedir}/compiled"/>
32 </antcall>
33
[17257]34 <!-- uninstaller -->
[17268]35 <antcall target="compile-uninstaller" /> <!-- from rk2-targets -->
[17257]36
[15956]37 <!-- build collections -->
[16741]38 <antcall target="build-demo-collection" />
[14982]39
40 </target>
41
[15956]42 <target name="run-configure">
[17898]43 <exec dir="${basedir}/compiled" executable="${basedir}/compiled/configure">
[18666]44 <arg value="--with-gdbm=${mark2.home}/mac/${processor}/gdbm"/>
45 <arg value="--enable-apache-httpd"/>
[16741]46 </exec>
[14982]47 </target>
48
[16453]49 <target name="tweak-makefiles">
[17898]50 <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" />
51 <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" />
52 <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" />
53 <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" />
54 <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" />
55 <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" />
[14982]56 </target>
57
[15956]58 <target name="run-make">
[17898]59 <exec dir="${basedir}/compiled" executable="make"/>
[14982]60 </target>
61
[15956]62 <target name="run-make-install">
[17898]63 <exec dir="${basedir}/compiled" executable="make"><arg value="install"/></exec>
[14982]64 </target>
65
[18854]66 <target name="run-make-apache-for-dist">
67 <exec dir="${basedir}/compiled" executable="make"><arg value="apache-for-dist"/></exec>
68 </target>
69
[15956]70 <target name="strip-execs">
[17898]71 <exec dir="${basedir}/compiled/bin/darwin" executable="find">
[16741]72 <arg line=". ! -name . -type f -maxdepth 1 -exec strip {} &#59;"/>
73 </exec>
[14982]74 </target>
75
[15956]76 <target name="build-demo-collection">
[17898]77 <exec dir="${basedir}/compiled" executable="${mark2.home}/resources/build-demo.sh"/>
[14982]78 </target>
79
80</project>
Note: See TracBrowser for help on using the repository browser.