source: main/trunk/greenstone3/build.xml@ 23855

Last change on this file since 23855 was 23855, checked in by ak19, 13 years ago

Not a bug as suspected, just a change of target. Changing the port number in build.properties now requires calling the configure target not configure-web since the latter no longer updates the tomcat server.xml file, while configure will call both configure-tomcat (which does update server.xml) and configure-web, which will write the new port number into global.properties as well.

File size: 89.6 KB
Line 
1<?xml version="1.0"?>
2<!-- ======================================================================
3 March 2005
4
5 Greenstone3 build and install script
6
7 kjdon
8 ====================================================================== -->
9<project name="greenstone3" default="usage" basedir=".">
10 <echo>os.name: ${os.name}</echo>
11
12 <!-- ============ classpath =================== -->
13 <path id="project.classpath">
14 <fileset dir="lib/java">
15 <include name="**/*.jar"/>
16 </fileset>
17 </path>
18
19 <!-- ============ self defined tasks =================== -->
20 <taskdef name="mysetproxy" classname="org.greenstone.anttasks.MySetProxy" classpathref="project.classpath"/>
21 <taskdef name="getuserandpassword" classname="org.greenstone.anttasks.MyGetUserAndPassword" classpathref="project.classpath"/>
22 <taskdef name="rsr" classname="org.greenstone.anttasks.RegexSearchReplace" classpathref="project.classpath"/>
23 <!--<taskdef name="svn" classname="org.tigris.subversion.svnant.SvnTask" classpathref="project.classpath"/>-->
24 <taskdef name="if" classname="ise.antelope.tasks.IfTask" classpathref="project.classpath"/>
25 <taskdef name="stringutil" classname="ise.antelope.tasks.StringUtilTask" classpathref="project.classpath"/>
26
27
28 <!-- ===================== Property Definitions =========================== -->
29
30 <!--
31
32 Each of the following properties are used in the build script.
33 Values for these properties are set by the first place they are
34 defined, from the following list:
35
36 * Definitions on the "ant" command line (ant -Dfoo=bar compile).
37
38 * Definitions from a "build.properties" file in the top level
39 source directory of this application.
40
41 * Definitions from a "build.properties" file in the user's
42 home directory.
43
44 * Default definitions in this build.xml file.
45
46 You will note below that property values can be composed based on the
47 contents of previously defined properties. This is a powerful technique
48 that helps you minimize the number of changes required when your development
49 environment is modified. Note that property composition is allowed within
50 "build.properties" files as well as in the "build.xml" script.
51
52 -->
53
54 <!-- create build.properties if it has not been created yet -->
55 <if>
56 <bool><not><available file="build.properties"/></not></bool>
57 <copy file="build.properties.in" tofile="build.properties"/>
58 </if>
59
60 <!-- create the packages dir if it has not been created yet -->
61 <mkdir dir="packages"/>
62
63 <!--the first three properties have to be put on the top to be used by build.properties-->
64 <property name="gs2build.home" value="${basedir}${file.separator}gs2build"/>
65 <property name="src.packages.home" value="${basedir}/src/packages"/>
66 <property name="flax.svn.root" value="http://svn.greenstone.org/flax"/>
67
68 <property file="build.properties"/>
69 <if><bool><available file="${user.home}/build.properties"/></bool>
70 <property file="${user.home}/build.properties"/>
71 </if>
72
73 <!-- now we've read in properties, apply defaults -->
74 <property name="disable.collection.building" value="false"/>
75
76 <!-- get properties from the environment -->
77 <property environment="env"/>
78
79 <!-- get the filesets defining components and executables -->
80 <import file="resources/xml/components.xml"/>
81 <import file="resources/xml/executables.xml"/>
82
83 <!-- version properties for external packages -->
84 <!-- for Java versions < 1.4, we print out the message that Java is too old.
85 For Java 1.4, we use Tomcat 5.5, for Java5 and higher, we use Tomcat 6.0-->
86 <condition property="tomcat.version" value="apache-tomcat-5.5.25" else="apache-tomcat-6.0.20">
87 <equals arg1="1.4" arg2="${ant.java.version}"/>
88 </condition>
89 <condition property="tomcat.version.major" value="5" else="6">
90 <equals arg1="1.4" arg2="${ant.java.version}"/>
91 </condition>
92 <condition property="privileged.attribute" value="privileged='true'" else="">
93 <equals arg1="6" arg2="${tomcat.version.major}"/>
94 </condition>
95
96 <property name="axis.zip.version" value="axis-bin-1_4.zip"/>
97 <property name="axis.dir.version" value="axis-1_4"/>
98 <property name="sqlite.targz.version" value="sqlite-amalgamation-3.5.9.tar.gz"/>
99
100 <property name="build.home" value="${basedir}/build"/>
101 <property name="src.home" value="${basedir}/src/java"/>
102 <property name="packages.home" value="${basedir}/packages"/>
103 <!-- this may be set in build.properties, eg if you move the web dir to
104 tomcats webapps directory -->
105 <property name="web.home" value="${basedir}/web"/>
106 <!-- jar files needed by applets go here -->
107 <property name="web.applet" value="${web.home}/applet"/>
108
109 <!-- jar files needed by the servlet (and extra ones) go here -->
110 <property name="web.lib" value="${web.home}/WEB-INF/lib"/>
111 <!-- other files needed by the servlet go here -->
112 <property name="web.classes" value="${web.home}/WEB-INF/classes"/>
113 <!--- flax: the WordNet home -->
114 <property name="wn.home" value="${web.home}/WEB-INF/classes/flax/WordNet"/>
115
116 <!-- jni libraries and java wrappers go here -->
117 <property name="lib.jni" value="${basedir}/lib/jni"/>
118
119 <!-- other jar files needed for installation (but not runtime) go here -->
120 <property name="lib.java" value="${basedir}/lib/java"/>
121
122 <property name="javadocs" value="${basedir}/docs/javadoc"/>
123
124 <property name="app.name" value="greenstone3"/>
125 <property name="app.path" value="/${app.name}"/>
126
127 <property name="admin.dir" value="${basedir}/admin"/>
128
129 <!-- defaults - set these on the command line or in build.properties or they will take these default values-->
130 <property name="app.version" value="trunk"/>
131 <property name="branch.path" value="trunk"/>
132 <property name="branch.revision" value="HEAD"/>
133
134 <!--constants -->
135 <property name="svn.root" value="http://svn.greenstone.org"/>
136
137 <!-- catalina home is set to tomcat basedir if already installed, otherwise
138 use greenstone's tomcat -->
139 <condition property="catalina.home" value="${tomcat.installed.path}" else="${packages.home}/tomcat">
140 <and>
141 <isset property="tomcat.installed.path"/>
142 <not>
143 <equals arg1="" arg2="${tomcat.installed.path}"/>
144 </not>
145 </and>
146 </condition>
147
148 <property name="os.linux" value="Linux"/>
149 <property name="os.mac" value="Mac OS X"/>
150 <property name="os.solaris" value="SunOS"/>
151 <property name="os.unix" value="${os.linux},${os.mac},${os.solaris}"/>
152 <property name="os.windows" value="Windows 95,Windows 98,Windows 2000,Windows 2003,Windows XP,Windows NT,Windows ME,Windows Vista,Windows 7"/> <!-- check this!!!-->
153
154 <!-- this is true for linux and macs -->
155 <condition property="current.os.isunix">
156 <os family="unix"/>
157 </condition>
158
159 <condition property="current.os.isunixnotmac">
160 <and>
161 <os family="unix"/>
162 <not>
163 <os family="mac"/>
164 </not>
165 </and>
166 </condition>
167
168 <condition property="current.os.ismac">
169 <os family="mac"/>
170 </condition>
171
172 <condition property="current.os.iswindows">
173 <os family="windows"/>
174 </condition>
175
176 <!-- is there a better way to do this?? what about solaris?? -->
177 <condition property="os.bin.dir" value="windows">
178 <os family="windows"/>
179 </condition>
180 <condition property="os.bin.dir" value="darwin">
181 <os family="mac"/>
182 </condition>
183 <condition property="os.bin.dir" value="linux">
184 <and>
185 <os family="unix"/>
186 <not>
187 <os family="mac"/>
188 </not>
189 </and>
190 </condition>
191
192
193 <condition property="collection.building.disabled">
194 <and>
195 <isset property="disable.collection.building"/>
196 <istrue value="${disable.collection.building}"/>
197 </and>
198 </condition>
199
200 <condition property="collection.building.enabled">
201 <not>
202 <istrue value="${disable.collection.building}"/>
203 </not>
204 </condition>
205
206 <condition property="collection.building.enabled.windows">
207 <and>
208 <istrue value="${collection.building.enabled}"/>
209 <isset property="current.os.iswindows"/>
210 </and>
211 </condition>
212
213 <condition property="collection.building.enabled.unix">
214 <and>
215 <istrue value="${collection.building.enabled}"/>
216 <isset property="current.os.isunix"/>
217 </and>
218 </condition>
219
220 <condition property="static.arg" value="LDFLAGS=-static" else=" ">
221 <isset property="compile.static"/>
222 </condition>
223
224 <!-- If building a release then we want to adjust environment variables so that the support library can be see during compilation -->
225 <if><bool><isset property="use.support.lib"/></bool>
226 <property name="gnome-lib-dir" value="${basedir}/ext/gnome-lib-minimal/${os.bin.dir}"/>
227
228 <if><bool><isset property="env.CFLAGS"/></bool>
229 <property name="cflags.arg" value="CFLAGS=&quot;-I${gnome-lib-dir}/include ${env.CFLAGS}&quot;"/>
230 <else>
231 <property name="cflags.arg" value="CFLAGS=&quot;-I${gnome-lib-dir}/include&quot;"/>
232 </else>
233 </if>
234
235 <if><bool><isset property="env.CPPFLAGS"/></bool>
236 <property name="cppflags.arg" value="CPPFLAGS=&quot;-I${gnome-lib-dir}/include ${env.CPPFLAGS}&quot;"/>
237 <else>
238 <property name="cppflags.arg" value="CPPFLAGS=&quot;-I${gnome-lib-dir}/include&quot;"/>
239 </else>
240 </if>
241
242 <if><bool><isset property="env.CXXFLAGS"/></bool>
243 <property name="cxxflags.arg" value="CXXFLAGS=&quot;-I${gnome-lib-dir}/include ${env.CXXFLAGS}&quot;"/>
244 <else>
245 <property name="cxxflags.arg" value="CXXFLAGS=&quot;-I${gnome-lib-dir}/include&quot;"/>
246 </else>
247 </if>
248
249 <if><bool><isset property="env.LDFLAGS"/></bool>
250 <property name="ldflags.arg" value="LDFLAGS=&quot;-L${gnome-lib-dir}/lib ${env.LDFLAGS}&quot;"/>
251 <else>
252 <property name="ldflags.arg" value="LDFLAGS=&quot;-L${gnome-lib-dir}/lib&quot;"/>
253 </else>
254 </if>
255
256 <if><bool><isset property="env.PATH"/></bool>
257 <property name="path.arg" value="PATH=&quot;${gnome-lib-dir}/bin:${env.PATH}&quot;"/>
258 <else>
259 <property name="path.arg" value="PATH=&quot;${gnome-lib-dir}/bin&quot;"/>
260 </else>
261 </if>
262
263 <if><bool><isset property="env.PKG_CONFIG_PATH"/></bool>
264 <property name="pcpath.arg" value="PKG_CONFIG_PATH=&quot;${gnome-lib-dir}/lib/pkgconfig:${env.PKG_CONFIG_PATH}&quot;"/>
265 <else>
266 <property name="pcpath.arg" value="PKG_CONFIG_PATH=&quot;${gnome-lib-dir}/lib/pkgconfig&quot;"/>
267 </else>
268 </if>
269
270 <if><bool><equals arg1="${os.bin.dir}" arg2="darwin"/></bool>
271 <if><bool><isset property="env.DYLD_LIBRARY_PATH"/></bool>
272 <property name="ldlpath.arg" value="DYLD_LIBRARY_PATH=&quot;${gnome-lib-dir}/lib:${env.DYLD_LIBRARY_PATH}&quot;"/>
273 <else>
274 <property name="ldlpath.arg" value="DYLD_LIBRARY_PATH=&quot;${gnome-lib-dir}/lib&quot;"/>
275 </else>
276 </if>
277 <else>
278 <if><bool><isset property="env.LD_LIBRARY_PATH"/></bool>
279 <property name="ldlpath.arg" value="LD_LIBRARY_PATH=&quot;${gnome-lib-dir}/lib:${env.LD_LIBRARY_PATH}&quot;"/>
280 <else>
281 <property name="ldlpath.arg" value="LD_LIBRARY_PATH=&quot;${gnome-lib-dir}/lib&quot;"/>
282 </else>
283 </if>
284 </else>
285 </if>
286
287 <else>
288 <if><bool><isset property="env.CFLAGS"/></bool>
289 <property name="cflags.arg" value="CFLAGS=&quot;${env.CFLAGS}&quot;"/>
290 <else>
291 <property name="cflags.arg" value=" "/>
292 </else>
293 </if>
294
295 <if><bool><isset property="env.CPPFLAGS"/></bool>
296 <property name="cppflags.arg" value="CPPFLAGS=&quot;${env.CPPFLAGS}&quot;"/>
297 <else>
298 <property name="cppflags.arg" value=" "/>
299 </else>
300 </if>
301
302 <if><bool><isset property="env.CXXFLAGS"/></bool>
303 <property name="cxxflags.arg" value="CXXFLAGS=&quot;${env.CXXFLAGS}&quot;"/>
304 <else>
305 <property name="cxxflags.arg" value=" "/>
306 </else>
307 </if>
308
309 <if><bool><isset property="env.LDFLAGS"/></bool>
310 <property name="ldflags.arg" value="LDFLAGS=&quot;${env.LDFLAGS}&quot;"/>
311 <else>
312 <property name="ldflags.arg" value=" "/>
313 </else>
314 </if>
315
316 <if><bool><isset property="env.PATH"/></bool>
317 <property name="path.arg" value="PATH=&quot;${env.PATH}&quot;"/>
318 <else>
319 <property name="path.arg" value=" "/>
320 </else>
321 </if>
322
323 <if><bool><isset property="env.PKG_CONFIG_PATH"/></bool>
324 <property name="pcpath.arg" value="PKG_CONFIG_PATH=&quot;${env.PKG_CONFIG_PATH}&quot;"/>
325 <else>
326 <property name="pcpath.arg" value=" "/>
327 </else>
328 </if>
329
330 <if><bool><equals arg1="${os.bin.dir}" arg2="darwin"/></bool>
331 <if><bool><isset property="env.DYLD_LIBRARY_PATH"/></bool>
332 <property name="ldlpath.arg" value="DYLD_LIBRARY_PATH=&quot;${env.DYLD_LIBRARY_PATH}&quot;"/>
333 <else>
334 <property name="ldlpath.arg" value=" "/>
335 </else>
336 </if>
337 <else>
338 <if><bool><isset property="env.LD_LIBRARY_PATH"/></bool>
339 <property name="ldlpath.arg" value="LD_LIBRARY_PATH=&quot;${env.LD_LIBRARY_PATH}&quot;"/>
340 <else>
341 <property name="ldlpath.arg" value=" "/>
342 </else>
343 </if>
344 </else>
345 </if>
346 </else>
347 </if>
348 <property name="allargs" value="${cflags.arg} ${cxxflags.arg} ${cppflags.arg} ${ldflags.arg} ${path.arg} ${ldlpath.arg} ${pcpath.arg}"/>
349
350 <condition property="gs2.opt.args" value= " " else="--disable-mg --disable-mgpp --disable-accentfold --disable-gdbm --disable-sqlite">
351 <istrue value="${with.jni}"/>
352 </condition>
353 <condition property="gs2.compile.target" value="with-jni" else="without-jni">
354 <istrue value="${with.jni}"/>
355 </condition>
356 <condition property="gs2.install.target" value="install-with-jni" else="install-without-jni">
357 <istrue value="${with.jni}"/>
358 </condition>
359 <condition property="gs2.windows.enablejni" value="1" else="0">
360 <istrue value="${with.jni}"/>
361 </condition>
362 <condition property="gs2.windows.enablemg" value="1" else="0">
363 <istrue value="${with.jni}"/>
364 </condition>
365 <condition property="gs2.windows.enablemgpp" value="1" else="0">
366 <istrue value="${with.jni}"/>
367 </condition>
368 <!-- Should accent folding not also be set here ?? -->
369 <condition property="gs2.windows.usegdbm" value="1" else="0">
370 <istrue value="${with.jni}"/>
371 </condition>
372 <condition property="gs2.windows.usesqlite" value="1" else="0">
373 <istrue value="${with.jni}"/>
374 </condition>
375
376 <!-- where is search4j tool -->
377 <condition property="search4j.exec" value="bin/search4j.exe" else="bin/search4j">
378 <isset property="current.os.iswindows"/>
379 </condition>
380
381
382 <!-- ============= Base dirs for each package and component ============ -->
383 <property name="src.gsdl3.home" value="${src.home}/org/greenstone/gsdl3"/>
384 <property name="anttasks.home" value="${src.home}/org/greenstone/anttasks"/>
385 <property name="gli.home" value="${basedir}/gli"/>
386 <property name="javagdbm.home" value="${src.packages.home}/javagdbm"/>
387
388 <condition property="common.src.home" value="${basedir}/common-src" else="${gs2build.home}${file.separator}common-src">
389 <istrue value="${disable.collection.building}"/>
390 </condition>
391
392 <property name="build.src.home" value="${gs2build.home}/build-src"/>
393 <property name="gdbm.home" value="${common.src.home}/packages/gdbm"/>
394 <property name="mg.home" value="${common.src.home}/indexers/mg"/>
395 <property name="mgpp.home" value="${common.src.home}/indexers/mgpp"/>
396 <property name="lucene.home" value="${common.src.home}/indexers/lucene-gs"/>
397
398 <!-- ==================== Compilation Control Options ==================== -->
399
400 <!--
401
402 These properties control option settings on the Javac compiler when it
403 is invoked using the <javac> task.
404
405 compile.debug Should compilation include the debug option?
406
407 compile.deprecation Should compilation include the deprecation option?
408
409 compile.optimize Should compilation include the optimize option?
410
411 -->
412
413 <property name="compile.debug" value="true"/>
414 <property name="compile.deprecation" value="true"/>
415 <property name="compile.optimize" value="true"/>
416
417 <!--
418
419 Rather than relying on the CLASSPATH environment variable, Ant includes
420 features that makes it easy to dynamically construct the classpath you
421 need for each compilation. The example below constructs the compile
422 classpath to include the servlet.jar file, as well as the other components
423 that Tomcat makes available to web applications automatically, plus anything
424 that you explicitly added.
425
426 -->
427
428 <!-- All elements that Tomcat 5 exposes to applications -->
429 <path id="tomcat5">
430 <pathelement location="${catalina.home}/common/classes"/>
431 <fileset dir="${catalina.home}/common/endorsed">
432 <include name="*.jar"/>
433 </fileset>
434 <fileset dir="${catalina.home}/common/lib">
435 <include name="*.jar"/>
436 </fileset>
437 <!-- seems to be empty, but will leave in just in case some people make use of this to customise their install: -->
438 <pathelement location="${catalina.home}/shared/classes"/>
439 <fileset dir="${catalina.home}/shared/lib">
440 <include name="*.jar"/>
441 </fileset>
442 </path>
443
444 <!-- All elements that Tomcat 6 exposes to applications -->
445 <path id="tomcat6">
446 <fileset dir="${catalina.home}/lib">
447 <include name="*.jar"/>
448 </fileset>
449 </path>
450
451 <path id="compile.classpath">
452 <!-- Include all jar files and libraries in our jni lib directory -->
453 <pathelement location="${lib.jni}"/>
454 <fileset dir="${lib.jni}">
455 <include name="*.jar"/>
456 </fileset>
457 <!-- Include all jar files in our web lib directory -->
458 <pathelement location="${web.lib}"/>
459 <fileset dir="${web.lib}">
460 <include name="*.jar"/>
461 </fileset>
462
463 <pathelement location="${lib.java}"/>
464 <fileset dir="${lib.java}">
465 <include name="*.jar"/>
466 </fileset>
467
468 <!-- include the jar files from the source packages -->
469 <!-- mg and mgpp get installed into lib/jni but they may not be there yet
470 so we add them in by name -->
471 <!-- *** is there any way to make this optional, based on ${with.jni}? -->
472 <pathelement location="${lib.jni}/mg.jar"/>
473 <pathelement location="${lib.jni}/mgpp.jar"/>
474
475 <!-- Include all elements that Tomcat exposes to applications -->
476 <path refid="tomcat${tomcat.version.major}"/>
477
478 </path>
479
480 <path id="local.tomcat.classpath">
481 <!-- explicitly include the jni java wrappers in the classpath -->
482 <pathelement location="${lib.jni}"/>
483 <fileset dir="${lib.jni}">
484 <include name="*.jar"/>
485 </fileset>
486 </path>
487
488 <path id="local.tomcat.path">
489 <pathelement location="${basedir}/bin/script"/>
490 <pathelement location="${basedir}/bin"/>
491 <pathelement location="${lib.jni}"/>
492 <pathelement path="${env.PATH}"/>
493 <pathelement path="${env.Path}"/>
494 <pathelement path="${wn.home}/bin"/>
495 </path>
496
497 <target name="test-setup">
498 <echo>ant java version=${ant.java.version}</echo>
499 <echo>is unix : ${current.os.isunix}</echo>
500 <echo>is mac : ${current.os.ismac}</echo>
501 <echo>is unixnotmac : ${current.os.isunixnotmac}</echo>
502 <echo>is windows : ${current.os.iswindows}</echo>
503 <echo>os.unix: ${os.unix}</echo>
504 </target>
505
506 <!-- ==================== Primary and Global Targets ============================= -->
507
508 <target name="prepare" depends="accept-properties,init,prepare-core,prepare-packages,prepare-common-src,prepare-collection-building,prepare-tomcat,prepare-axis,prepare-web,prepare-collections, prepare-flax"
509 description="Use this when you first checkout the code: 'ant prepare install'. This will do some additional subversion checkouts and downloads, so you need to be online to run this.">
510
511 <!-- make sure .sh files are executable -->
512 <chmod dir="${basedir}" perm="ugo+rx"
513 includes="*.sh"/>
514 <chmod dir="${basedir}/bin/script" perm="ugo+rx"
515 includes="*.sh,*.pl"/>
516 </target>
517
518 <!-- install-common-src and install-collection-building are mutually exclusive and either one or the other will be done depending on whether collection building is enabled or not -->
519 <target name="install" depends="init,install-common-src,install-collection-building,install-runtime"
520 description="Install Greenstone 3. Use this when you first checkout the code: 'ant prepare new-install'."/>
521
522 <target name="install-common-src" depends="init"
523 description="Install (configure, compile, install) only the common-src package (shared code from Greenstone 2). " >
524 <antcall target="configure-common-src"/>
525 <antcall target="compile-common-src"/>
526 <antcall target="install-auxiliary-jar-files"/>
527 <antcall target="install-jni-files"/>
528 </target>
529
530 <target name="install-collection-building" depends="init" if="collection.building.enabled"
531 description="Install (configure, compile, install) the Greenstone 2 collection building package." >
532 <antcall target="configure-collection-building"/>
533 <antcall target="tweak-makefiles" />
534 <antcall target="compile-collection-building"/>
535 </target>
536
537
538 <target name="install-runtime" depends="init,configure,configure-packages,configure-core,compile-web,compile-packages,compile-core,compile-classpath-jars"
539 description="Install (configure, compile, install) the runtime system. Needs either common-src or collection-building to have been installed first." />
540
541 <target name="svnupdate" depends="init,svnupdate-packages,svnupdate-core,svnupdate-common-src,svnupdate-collection-building,svnupdate-web"
542 description="Do a `svn update` for all sources. Doesn't recompile the code. You need to be online to run this."/>
543
544 <target name="configure" depends="init,configure-tomcat,configure-web"
545 description="Configure the installation (not the C++ code). Includes setting up config files. Should be re-run if you change the build.properties file, including if you change the port number."/>
546
547 <target name="clean" depends="init,clean-packages,clean-core,clean-common-src,clean-collection-building,clean-classpath-jars"
548 description="Remove all old compiled code. Includes runtime and collection-building if necessary"/>
549
550 <target name="distclean" depends="init,distclean-packages,clean-core,distclean-common-src,distclean-collection-building,clean-classpath-jars"
551 description="Remove all compiled code and also any Makefiles etc generated during configure-c++. Includes runtime and collection-building as necessary"/>
552
553 <target name="update" depends="init,svnupdate,clean,install"
554 description="Update (thru Subversion) all the source (including common-src or collection-building, and runtime), then clean, and re-install. To do this without any SVN updates, run it like 'ant -Dnosvn.mode=yes update'"/>
555
556
557 <target name="perl-for-building" depends="init">
558 <!-- uses perl.path if set in build.properties, otherwise try for
559 environment variable PERLPATH, and failing that assumes 'perl'
560 is on environment PATH -->
561 <if><bool><available file="${build.src.home}"/></bool>
562
563 <if><bool><not><isset property="perl.path"/></not></bool>
564
565 <if>
566 <bool>
567 <and>
568 <isset property="env.PERLPATH"/>
569 <not><equals arg1="${env.PERLPATH}" arg2=""/></not>
570 </and>
571 </bool>
572 <property name="perl.path" value="${env.PERLPATH}"/>
573 <else>
574 <echo>
575 Using PATH enviroment variable to locate Perl.
576 </echo>
577 <exec executable="which" os="${os.unix}" spawn="false" outputproperty="full.perl.path">
578 <arg value="perl" />
579 </exec>
580
581 <stringutil string="${full.perl.path}" property="perl.path">
582 <replace regex="\/[^\/]*$" replacement="" />
583 </stringutil>
584
585 <if><bool><not><equals arg1="${full.perl.path}" arg2="/usr/bin/perl"/></not></bool>
586 <echo>
587 Non-standard location of Perl found: ${full.perl.path}
588 Set the environment variable PERLPATH or the perl.path property in
589 build.properties to explicitly control the version of Perl used.
590 </echo>
591 </if>
592 </else>
593 </if>
594 </if>
595
596 <!-- full.perl.path is for pretty-printing only, e.g. used in target "start" -->
597 <if><bool><isset property="perl.path"/></bool>
598 <property name="full.perl.path" value="${perl.path}${file.separator}perl"/>
599 <else>
600 <property name="full.perl.path" value="perl (will use the enviroment variable PATH to find this executable)"/>
601 </else>
602 </if>
603 </if>
604 </target>
605
606 <target name="start" depends="init,configure-web,start-tomcat"
607 description="Startup the Tomcat server." >
608 <echo>${app.name} (${app.version}) server running using Apache Tomcat and Java</echo>
609 <echo>Tomcat: ${catalina.home}</echo>
610 <echo>Java : ${java.home}</echo>
611 <if><bool><available file="${build.src.home}"/></bool>
612 <echo>Perl : ${full.perl.path}</echo>
613 </if>
614 <echo>URL : http://${tomcat.server}:${tomcat.port}${app.path}/</echo>
615 <!-- assuming that index.html is not needed here -->
616 </target>
617
618 <target name="stop" depends="init,stop-tomcat"
619 description="Shutdown the Tomcat server."/>
620
621 <target name="restart" description="Shutdown and restart Tomcat" depends="init,stop,start"/>
622
623
624 <!-- =========== Help targets =================================== -->
625
626 <property name="install-command" value="ant [options] prepare install"/>
627
628 <target name="usage" description="Print a help message">
629 <echo message=" Execute 'ant -projecthelp' for a list of targets."/>
630 <echo message=" Execute 'ant -help' for Ant help."/>
631 <echo>
632 To install Greenstone3, run '${install-command}'.
633 There are properties defined in build.properties. The install
634 process will ask you if these properties are set correctly.
635 To avoid this prompt, use the '-Dproperties.accepted=yes'
636 option.
637 To log the output, use the '-logfile build.log' option.
638 The README.txt file has more information about the ant targets
639 and install process.
640 </echo>
641 </target>
642
643 <target name="help" depends="usage" description="Print a help message"/>
644
645 <target name="debug" depends="init" description="Display all the currently used properties">
646 <echoproperties/>
647 </target>
648
649 <!-- ====== initialization and setup targets ================== -->
650
651 <target name="accept-properties" unless="properties.accepted">
652 <input addproperty="properties.ok" validargs="y,n">The following properties (among others) are being used from a build.properties file found in this directory:
653 tomcat.server=${tomcat.server}
654 tomcat.port=${tomcat.port}
655 tomcat.installed.path=${tomcat.installed.path} (this is the location of Tomcat's base dir if it is already installed)
656 proxy.host=${proxy.host}
657 proxy.port=${proxy.port}
658 disable.collection.building=${disable.collection.building}
659 If these are not acceptable, please change them and rerun this target. Continue [y/n]?
660 </input>
661 <condition property="do.abort">
662 <equals arg1="n" arg2="${properties.ok}"/>
663 </condition>
664 <fail if="do.abort">Build aborted by user. Please change your properties settings and re-run the target</fail>
665 </target>
666
667 <!-- this sets up some initial properties -->
668 <target name="init">
669
670 <!-- has the gs3-setup script been run?? -->
671 <condition property="gs3-setup-not-done">
672 <not>
673 <isset property="env.GSDL3HOME"/>
674 </not>
675 </condition>
676
677 <!--<fail if="gs3-setup-not-done" message="please run 'gs3-setup' (Windows) or 'source gs3-setup.sh' (Linux/Mac) before running this target."/>-->
678
679 <condition property="java.too.old">
680 <or>
681 <equals arg1="1.1" arg2="${ant.java.version}"/>
682 <equals arg1="1.2" arg2="${ant.java.version}"/>
683 <equals arg1="1.3" arg2="${ant.java.version}"/>
684 </or>
685 </condition>
686 <fail if="java.too.old" message="You need Java 1.4 or greater to run Greenstone 3"/>
687
688 <available file="${basedir}/gli" property="gli.present"/>
689 <available file="${basedir}/common-src" property="common.src.present"/>
690 <available file="${basedir}/gs2build" property="gs2build.present"/>
691
692 <condition property="tomcat.islocal">
693 <or>
694 <not><isset property="tomcat.installed.path"/></not>
695 <equals arg1="" arg2="${tomcat.installed.path}"/>
696 </or>
697 </condition>
698
699 <echo>tomcat.port = ${tomcat.port}</echo>
700
701 <condition property="proxy.present">
702 <and>
703 <isset property="proxy.host"/>
704 <not><equals arg1="" arg2="${proxy.host}"/></not>
705 </and>
706 </condition>
707
708 <!--
709 the next block checks if the bundled tomcat is present in the 'packages' directory,
710 and checks for the lethal combination of tomcat 6 and java 1.4. Test for
711 tomcat6 is based on the presence of a file inserted by greenstone into the tomcat6
712 download, as there is no other surefire way to check tomcat version under java 1.4
713 -->
714 <condition property="packages.tomcat.ispresent" value="true" else="false">
715 <available file="packages/tomcat"/>
716 </condition>
717 <condition property="packages.tomcat.istomcat6" value="true" else="false">
718 <available file="packages/tomcat/tomcat6.txt"/>
719 </condition>
720 <if>
721 <bool>
722 <and>
723 <istrue value="${packages.tomcat.ispresent}"/>
724 <istrue value="${packages.tomcat.istomcat6}"/>
725 <equals arg1="1.4" arg2="${ant.java.version}"/>
726 </and>
727 </bool>
728 <fail>Your Java (version 1.4) is too old to work with the bundled Apache Tomcat (version 6). Please upgrade to Java version 1.5 or greater. Alternatively, you may remove the bundled Apache Tomcat from the 'packages' folder and then run 'ant prepare-tomcat'.</fail>
729 </if>
730
731 </target>
732
733 <target name="setup-proxy" depends="init" if="proxy.present">
734 <condition property="ask.user">
735 <or>
736 <equals arg1="" arg2="${proxy.user}"/>
737 <equals arg1="" arg2="${proxy.password}"/>
738 </or>
739 </condition>
740
741 <getuserandpassword message="Using proxy: ${proxy.host}:${proxy.port}" if="ask.user" username="${proxy.user}" userproperty="proxy.username" pwordproperty="proxy.password"/>
742 <mysetproxy proxyhost="${proxy.host}" proxyport="${proxy.port}" proxyuser="${proxy.username}" proxypassword="${proxy.password}"/>
743 </target>
744
745 <!-- ========== Web app Targets ================================ -->
746
747 <target name="prepare-web" depends="init">
748 <mkdir dir="${web.home}/applet"/>
749 <mkdir dir="${web.home}/logs"/>
750 </target>
751
752 <!-- if we are using java 1.5+, we need the xalan.jar file in web/WEB-INF/lib, but if we are using java 1.4, we can't have it there -->
753 <target name="configure-java-version" depends="init"
754 description="Activates or deactivates some jar libraries as needed depending on your java version">
755
756 <available property="have.xalan.jar" file="${web.lib}/xalan.jar"/>
757 <condition property="need.xalan.jar">
758 <or>
759 <equals arg1="1.5" arg2="${ant.java.version}"/>
760 <equals arg1="1.6" arg2="${ant.java.version}"/>
761 </or>
762 </condition>
763
764 <!-- if they have xalan.jar but dont need it -->
765 <if>
766 <bool>
767 <and>
768 <isset property="have.xalan.jar"/>
769 <not><isset property="need.xalan.jar"/></not>
770 </and>
771 </bool>
772 <antcall target="deactivate-xalan-jar"/>
773 </if>
774
775 <!-- if they need xalan.jar but dont have it -->
776 <if>
777 <bool>
778 <and>
779 <not><isset property="have.xalan.jar"/></not>
780 <isset property="need.xalan.jar"/>
781 </and>
782 </bool>
783 <antcall target="activate-xalan-jar"/>
784 </if>
785
786 </target>
787
788 <target name="activate-xalan-jar">
789 <echo>activating xalan.jar</echo>
790 <copy file="${web.lib}/xalan.jar.tmp" tofile="${web.lib}/xalan.jar"/>
791 <if>
792 <bool>
793 <and>
794 <isset property="current.os.ismac"/>
795 <available file="${catalina.home}/common/endorsed" type="dir"/>
796 </and>
797 </bool>
798 <copy file="${web.lib}/xalan.jar.tmp" tofile="${catalina.home}/common/endorsed/xalan.jar"/>
799 </if>
800 </target>
801
802 <target name="deactivate-xalan-jar">
803 <echo>deactivating xalan.jar</echo>
804 <delete file="${web.lib}/xalan.jar"/>
805 <!-- should we be deleting common/endorsed/xalan.jar on mac?? -->
806 </target>
807
808
809 <target name="prepare-collections" depends="init">
810 <property name="collect.dir" value="${web.home}/sites/localsite/collect"/>
811 <property name="index.zip" value="index.zip"/>
812
813 <echo message="installing collections..."/>
814 <antcall target="gs2mgdemo-install"/>
815 <antcall target="gs2mgppdemo-install"/>
816 <antcall target="gberg-install"/>
817 </target>
818
819 <target name="gs2mgdemo-prepare" if="collect.dir">
820 <property name="gs2mgdemo.dir" value="${collect.dir}/gs2mgdemo"/>
821
822 <condition property="gs2mgdemo.present">
823 <and>
824 <available file="${gs2mgdemo.dir}/${index.zip}"/>
825 </and>
826 </condition>
827 </target>
828
829 <target name="gs2mgdemo-install" if="gs2mgdemo.present" depends="gs2mgdemo-prepare">
830 <echo> installing gs2mgdemo</echo>
831 <unzip dest="${gs2mgdemo.dir}" src="${gs2mgdemo.dir}/${index.zip}" />
832 <echo>collection gs2mgdemo installed</echo>
833 </target>
834
835 <target name="gs2mgppdemo-prepare" if="collect.dir">
836 <property name="gs2mgppdemo.dir" value="${collect.dir}/gs2mgppdemo"/>
837
838 <condition property="gs2mgppdemo.present">
839 <and>
840 <available file="${gs2mgppdemo.dir}/${index.zip}"/>
841 </and>
842 </condition>
843 </target>
844
845 <target name="gs2mgppdemo-install" if="gs2mgppdemo.present" depends="gs2mgppdemo-prepare">
846 <unzip dest="${gs2mgppdemo.dir}" src="${gs2mgppdemo.dir}/${index.zip}" />
847 <echo>collection gs2mgppdemo installed</echo>
848 </target>
849
850 <target name="gberg-prepare" if="collect.dir">
851 <property name="gberg.dir" value="${collect.dir}/gberg"/>
852 <available file="${gberg.dir}/index/${index.zip}" property="gberg.present"/>
853 </target>
854
855 <target name="gberg-install" if="gberg.present" depends="gberg-prepare">
856 <unzip dest="${gberg.dir}/index" src="${gberg.dir}/index/${index.zip}"/>
857 <echo>collection gberg installed</echo>
858 </target>
859
860 <target name="configure-web" depends="init,perl-for-building"
861 description="Configure only the web app config files">
862 <!-- we want a unix path in the global.properties file -->
863 <pathconvert targetos="unix" property="src.gsdl3.home.unix">
864 <path path="${web.home}"/>
865 </pathconvert>
866 <filter token="gsdl3home" value="${src.gsdl3.home.unix}"/>
867 <filter token="gsdl3version" value="${app.version}"/>
868 <filter token="tomcat.server" value="${tomcat.server}"/>
869 <filter token="tomcat.port" value="${tomcat.port}"/>
870 <filter token="perlpath" value="${perl.path}"/>
871 <copy file="${basedir}/resources/java/global.properties.in" tofile="${web.classes}/global.properties" filtering="true" overwrite="true"/>
872 <copy file="${basedir}/resources/java/log4j.properties.in" tofile="${web.classes}/log4j.properties" filtering="true" overwrite="true"/>
873 <chmod file="${web.classes}/global.properties" perm="600"/>
874 <chmod file="${web.classes}/log4j.properties" perm="600"/>
875 </target>
876
877 <target name="compile-web" depends="init">
878 <javac srcdir="${web.classes}"
879 destdir="${web.classes}"
880 debug="${compile.debug}"
881 deprecation="${compile.deprecation}"
882 optimize="${compile.optimize}">
883 <classpath><path refid="compile.classpath"/></classpath>
884 </javac>
885 </target>
886
887 <target name="compile-classpath-jars" depends="init">
888 <if><bool><available file="admin/cp.mf"/></bool>
889 <jar destfile="admin/cp.jar" manifest="admin/cp.mf"/>
890 </if>
891 <if><bool><available file="${lib.java}/cp.mf"/></bool>
892 <jar destfile="${lib.java}/cp.jar" manifest="${lib.java}/cp.mf"/>
893 </if>
894 <if><bool><available file="${lib.jni}/cp.mf"/></bool>
895 <jar destfile="${lib.jni}/cp.jar" manifest="${lib.jni}/cp.mf"/>
896 </if>
897 <if><bool><available file="${web.lib}/cp.mf"/></bool>
898 <jar destfile="${web.lib}/cp.jar" manifest="${web.lib}/cp.mf"/>
899 </if>
900 <jar destfile="cp.jar">
901 <manifest>
902 <attribute name="Class-Path" value="server.jar admin/cp.jar lib/java/cp.jar lib/jni/cp.jar web/WEB-INF/lib/cp.jar"/>
903 </manifest>
904 </jar>
905 </target>
906
907 <target name="clean-classpath-jars" depends="init">
908 <delete file="admin/cp.jar"/>
909 <delete file="${lib.java}/cp.jar"/>
910 <delete file="${lib.jni}/cp.jar"/>
911 <delete file="${web.lib}/cp.jar"/>
912 <delete file="cp.jar"/>
913 </target>
914
915
916 <target name="svnupdate-web" unless="nosvn.mode">
917 <exec executable="svn">
918 <arg value="update"/>
919 <arg value="${web.home}"/>
920 <arg value="-r"/><arg value="${branch.revision}"/>
921 </exec>
922 </target>
923
924 <target name="update-web" depends="init,svnupdate-web,configure-web"
925 description="update only the web stuff (config files)"/>
926
927 <!-- ======================= Tomcat Targets ========================== -->
928
929 <!-- this target downloads and installs Tomcat -->
930 <!-- we download tomcat (version 6 for Java 1.5 and later, version 5 for Java 1.4 plus the 1.4 compatibility package). -->
931 <target name="prepare-tomcat" depends="init,setup-proxy" if="tomcat.islocal"
932 description="downloads the appropriate version of Tomcat (Tomcat 5 if using Java 1.4, Tomcat 6 if using Java 1.5 or higher). If you want to change which version of Java you are using between 1.4 and 1.5/6 then you need to run prepare-tomcat">
933 <if>
934 <bool>
935 <not><available file="${packages.home}/tomcat/.flagfile"/></not>
936 </bool>
937
938 <!-- check that packages dir is there -->
939 <mkdir dir="${packages.home}"/>
940 <get src="http://www.greenstone.org/gs3files/${tomcat.version}.zip"
941 dest="${packages.home}/${tomcat.version}.zip"
942 usetimestamp="true"/>
943 <unzip src="${packages.home}/${tomcat.version}.zip"
944 dest="${packages.home}"/>
945
946 <!-- If we are using Java 1.4, we'd be using tomcat 5.5 in which case
947 we would need to have the tomcat compat package to work with Java 1.4-->
948 <if>
949 <bool><equals arg1="1.4" arg2="${ant.java.version}"/></bool>
950 <get src="http://www.greenstone.org/gs3files/${tomcat.version}-compat.zip"
951 dest="${packages.home}/${tomcat.version}-compat.zip"
952 usetimestamp="true"/>
953 <unzip src="${packages.home}/${tomcat.version}-compat.zip"
954 dest="${packages.home}"/>
955 </if>
956
957 <!-- delete any existing tomcat -->
958 <delete dir="${packages.home}/tomcat"/>
959 <move todir="${packages.home}/tomcat">
960 <fileset dir="${packages.home}/${tomcat.version}"/>
961 </move>
962 <copy file="${basedir}/resources/tomcat/setclasspath.bat"
963 tofile="${packages.home}/tomcat/bin/setclasspath.bat"
964 overwrite="true"/>
965 <copy file="${basedir}/resources/tomcat/setclasspath.sh"
966 tofile="${packages.home}/tomcat/bin/setclasspath.sh"
967 overwrite="true"/>
968 <!-- make sure we have execute permission for the .sh files -->
969 <chmod dir="${packages.home}/tomcat/bin" perm="ugo+rx"
970 includes="*.sh"/>
971
972 <echo file="${packages.home}/tomcat/.flagfile">
973 the timestamp of this file is the time that tomcat was extracted from the zip files.
974 it is used to figure out whether the files need to be refreshed or not in `ant prepare-tomcat`
975 </echo>
976
977 <!-- this is not strictly a prepare tomcat thing, but if one changes
978 Java, then they need to change tomcat as well, so might as well call
979 it here -->
980 <antcall target="configure-java-version"/>
981 <else>
982 <echo>Tomcat has been prepared, will not prepare</echo>
983 <echo>Delete ${packages.home}/tomcat/.flagfile to force refresh</echo>
984 </else>
985
986 </if>
987
988 </target>
989
990 <target name="configure-tomcat" depends="init,configure-tomcat-local,configure-tomcat-external"/>
991
992 <target name="configure-tomcat-local" depends="init" if="tomcat.islocal">
993 <!-- re-setup the server.xml file -->
994 <copy file="${basedir}/resources/tomcat/server_tomcat${tomcat.version.major}.xml"
995 tofile="${packages.home}/tomcat/conf/server.xml" overwrite="true">
996 <filterset>
997 <filter token="port" value="${tomcat.port}"/>
998 <filter token="shutdown-port" value="${tomcat.shutdown.port}"/>
999 </filterset>
1000 </copy>
1001 <!-- set up the greenstone3 context -->
1002 <copy file="${basedir}/resources/tomcat/greenstone3.xml" tofile="${packages.home}/tomcat/conf/Catalina/localhost/greenstone3.xml" overwrite="true">
1003 <filterset>
1004 <filter token="gsdl3webhome" value="${web.home}"/>
1005 <filter token="privilegedattribute" value ="${privileged.attribute}"/>
1006 </filterset>
1007 </copy>
1008 </target>
1009
1010 <target name="configure-tomcat-external" depends="init" unless="tomcat.islocal">
1011 <!-- re-setup the server.xml file -->
1012 <!-- need to edit the config file, or do we get the user to do this???-->
1013 </target>
1014
1015
1016
1017<!-- Another way: http://ptrthomas.wordpress.com/2006/03/25/how-to-start-and-stop-tomcat-from-ant/ -->
1018 <target name="start-tomcat" description="Startup only Tomcat" depends="init" if="tomcat.islocal">
1019 <property name="tomcat.classpath" refid="local.tomcat.classpath"/>
1020 <property name="tomcat.path" refid="local.tomcat.path"/>
1021 <property name="catalina.opts" value="-Djava.util.prefs.syncInterval=2000000 -DGSDL3HOME=$GSDL3HOME -DGSDLOS=$GSDLOS -DPATH=$PATH -Xmx400M"/>
1022 <exec executable="${catalina.home}/bin/startup.sh" os="${os.unix}" dir="${catalina.home}/bin" spawn="false">
1023 <!--<env key="GSDLOS" value="linux"/> do we need this?? -->
1024 <env key="GSDL3HOME" value="${basedir}"/>
1025 <env key="PATH" path="${tomcat.path}"/>
1026 <env key="CATALINA_OPTS" value="${catalina.opts}"/>
1027 <env key="CATALINA_HOME" value="${catalina.home}"/>
1028 <env key="CLASSPATH" path="${tomcat.classpath}"/>
1029 <env key="LD_LIBRARY_PATH" path="${env.LD_LIBRARY_PATH}:${lib.jni}"/>
1030 <env key="DYLD_LIBRARY_PATH" path="${env.DYLD_LIBRARY_PATH}:${lib.jni}:${gdbm.home}/lib"/> <!-- for mac os --> <!-- need gdbm here these days ??-->
1031 <env key="WNHOME" path="${wn.home}"/>
1032 </exec>
1033 <exec executable="${catalina.home}/bin/startup.bat" os="${os.windows}" dir="${catalina.home}/bin" spawn="true">
1034 <env key="GSDLOS" value="windows"/>
1035 <env key="GSDL3HOME" value="${basedir}"/>
1036 <env key="Path" path="${tomcat.path}"/>
1037 <env key="PATH" path="${tomcat.path}"/>
1038 <env key="CATALINA_OPTS" value="${catalina.opts}"/>
1039 <env key="CATALINA_HOME" value="${catalina.home}"/>
1040 <env key="CLASSPATH" path="${tomcat.classpath}"/>
1041 </exec>
1042 <!-- wait for the server to startup in case other targets need it running -->
1043 <waitfor maxwait="5" maxwaitunit="second">
1044 <and>
1045 <socket server="${tomcat.server}" port="${tomcat.port}"/>
1046 <http url="http://${tomcat.server}:${tomcat.port}${app.path}/index.html"/>
1047 </and>
1048 </waitfor>
1049 </target>
1050
1051 <!--ant task http: http://www.jajakarta.org/ant/ant-1.6.1/docs/ja/manual/api/org/apache/tools/ant/taskdefs/condition/Http.html-->
1052 <target name="reconfigure" description="Reconfigure the message router">
1053 <waitfor maxwait="5" maxwaitunit="second">
1054 <http url="http://${tomcat.server}:${tomcat.port}${app.path}${server.default.servlet}?a=s&amp;sa=c"/>
1055 </waitfor>
1056 </target>
1057
1058 <!--Command-line args to Ant: http://www.jguru.com/faq/view.jsp?EID=471794-->
1059 <target name="reconfigure-collection" description="Reconfigure the collection">
1060 <waitfor maxwait="5" maxwaitunit="second">
1061 <http url="http://${tomcat.server}:${tomcat.port}${app.path}${server.default.servlet}?a=s&amp;sa=c&amp;sc=${collection}"/>
1062 </waitfor>
1063 </target>
1064
1065 <!-- windows: do we want to launch a webrowser?? -->
1066 <!-- shouldn't this test whether anything is running first? -->
1067 <target name="stop-tomcat" description="Shutdown only Tomcat" depends="init" if="tomcat.islocal">
1068 <exec executable="${catalina.home}/bin/shutdown.sh" os="${os.unix}" dir="${catalina.home}/bin" spawn="false">
1069 <env key="CATALINA_HOME" value="${catalina.home}"/>
1070 </exec>
1071 <exec executable="${catalina.home}/bin/shutdown.bat" os="${os.windows}" dir="${catalina.home}/bin" spawn="false">
1072 <env key="CATALINA_HOME" value="${catalina.home}"/>
1073 </exec>
1074 </target>
1075
1076 <target name="restart-tomcat" description="Shutdown and restart only Tomcat" depends="init,stop-tomcat,start-tomcat"/>
1077
1078 <target name="setup-catalina-ant-tasks">
1079 <!-- Configure the custom Ant tasks for the Tomcat Manager application -->
1080 <taskdef name="deploy" classname="org.apache.catalina.ant.DeployTask"
1081 classpath="${catalina.home}/server/lib/catalina-ant.jar"/>
1082 <taskdef name="list" classname="org.apache.catalina.ant.ListTask"
1083 classpath="${catalina.home}/server/lib/catalina-ant.jar"/>
1084 <taskdef name="reload" classname="org.apache.catalina.ant.ReloadTask"
1085 classpath="${catalina.home}/server/lib/catalina-ant.jar"/>
1086 <taskdef name="resources" classname="org.apache.catalina.ant.ResourcesTask"
1087 classpath="${catalina.home}/server/lib/catalina-ant.jar"/>
1088 <taskdef name="roles" classname="org.apache.catalina.ant.RolesTask"
1089 classpath="${catalina.home}/server/lib/catalina-ant.jar"/>
1090 <taskdef name="start" classname="org.apache.catalina.ant.StartTask"
1091 classpath="${catalina.home}/server/lib/catalina-ant.jar"/>
1092 <taskdef name="stop" classname="org.apache.catalina.ant.StopTask"
1093 classpath="${catalina.home}/server/lib/catalina-ant.jar"/>
1094 <taskdef name="undeploy" classname="org.apache.catalina.ant.UndeployTask"
1095 classpath="${catalina.home}/server/lib/catalina-ant.jar"/>
1096 </target>
1097
1098
1099 <!-- ======================= ant Targets ============================ -->
1100 <target name="prepare-ant" depends="init">
1101 <if>
1102 <bool>
1103 <not><available file="${packages.home}/ant/.flagfile"/></not>
1104 </bool>
1105
1106 <get src="http://www.greenstone.org/gs3files/apache-ant-1.7.0-bin.zip"
1107 dest="${packages.home}/apache-ant-1.7.0-bin.zip"
1108 usetimestamp="true"/>
1109 <unzip src="${packages.home}/apache-ant-1.7.0-bin.zip"
1110 dest="${packages.home}"/>
1111 <move todir="${packages.home}/ant">
1112 <fileset dir="${packages.home}/apache-ant-1.7.0"/>
1113 </move>
1114 <echo file="${packages.home}/ant/.flagfile">
1115 the timestamp of this file is the time that ant was extracted from the zip files.
1116 it is used to figure out whether the files need to be refreshed or not in `ant prepare-ant`
1117 </echo>
1118
1119 <else>
1120 <echo>Ant has been prepared, will not prepare</echo>
1121 <echo>Delete ${packages.home}/ant/.flagfile to force refresh</echo>
1122 </else>
1123
1124 </if>
1125 </target>
1126
1127 <!-- ======================= Axis Targets ============================ -->
1128
1129 <target name="prepare-axis" depends="init">
1130
1131 <if>
1132 <bool>
1133 <not><available file="${packages.home}/axis/.flagfile"/></not>
1134 </bool>
1135
1136 <get src="http://www.greenstone.org/gs3files/${axis.zip.version}"
1137 dest="${packages.home}/${axis.zip.version}"
1138 usetimestamp="true"/>
1139 <unzip src="${packages.home}/${axis.zip.version}"
1140 dest="${packages.home}"/>
1141 <move todir="${packages.home}/axis">
1142 <fileset dir="${packages.home}/${axis.dir.version}"/>
1143 </move>
1144 <!-- install axis into greenstone web app -->
1145 <copy todir="${web.lib}">
1146 <fileset dir="${packages.home}/axis/webapps/axis/WEB-INF/lib">
1147 <include name="*.jar"/>
1148 </fileset>
1149 </copy>
1150 <copy todir="${web.home}">
1151 <fileset dir="${packages.home}/axis/webapps/axis/">
1152 <include name="*.jsp"/>
1153 <include name="*.jws"/>
1154 </fileset>
1155 </copy>
1156 <copy tofile="${web.home}/axis.html" file="${packages.home}/axis/webapps/axis/index.html"/>
1157 <copy todir="${web.classes}">
1158 <fileset dir="${packages.home}/axis/webapps/axis/WEB-INF/classes">
1159 <include name="*.properties"/>
1160 </fileset>
1161 </copy>
1162 <echo file="${packages.home}/axis/.flagfile">
1163 the timestamp of this file is the time that axis was extracted from the zip files.
1164 it is used to figure out whether the files need to be refreshed or not in `ant prepare-axis`
1165 </echo>
1166
1167 <else>
1168 <echo>Axis has been prepared, will not prepare</echo>
1169 <echo>Delete ${packages.home}/axis/.flagfile to force refresh</echo>
1170 </else>
1171
1172 </if>
1173 </target>
1174
1175 <target name="soap-deploy-site" depends="init,get-sitename,get-siteuri,get-webservices,create-deployment-files,deploy-site"
1176 description="Deploy a SOAP web service for a local Greenstone site. Tomcat must be running for this to work."/>
1177
1178 <target name="deploy-site">
1179 <java classname="org.apache.axis.client.AdminClient">
1180 <classpath refid="compile.classpath"/>
1181 <arg value="-l"/>
1182 <arg value="http://${tomcat.server}:${tomcat.port}${app.path}/servlet/AxisServlet"/>
1183 <arg file="${basedir}/resources/soap/deploy.wsdd"/>
1184 </java>
1185 <delete file="${basedir}/resources/soap/deploy.wsdd"/> <!--clean up, no longer used-->
1186 </target>
1187
1188 <target name="soap-undeploy-site" depends="get-undeploy-service-name"
1189 description="Undeploy a SOAP web service for a local Greenstone site. Tomcat must be running for this to work.">
1190 <filter token="servicesname" value="${axis.undeploy.servicename}"/>
1191 <copy file="${basedir}/resources/soap/undeploy-site.wsdd.template"
1192 tofile="${basedir}/resources/soap/undeploy.wsdd"
1193 filtering="true"
1194 overwrite="true"/>
1195 <java classname="org.apache.axis.client.AdminClient">
1196 <classpath refid="compile.classpath"/>
1197 <arg value="-l"/>
1198 <arg value="http://${tomcat.server}:${tomcat.port}${app.path}/servlet/AxisServlet"/>
1199 <arg file="${basedir}/resources/soap/undeploy.wsdd"/>
1200 </java>
1201 <delete file="${basedir}/resources/soap/undeploy.wsdd"/> <!--clean up, no longer used-->
1202 </target>
1203
1204 <!-- this target used to deploy the default web service SOAPServer (base.webservice.name) on the localsite server
1205 with the default servicename of localsite-->
1206 <target name="deploy-localsite" depends="init"
1207 description="Deploy the SOAP server for localsite. Will start and stop Tomcat.">
1208 <antcall target="start-tomcat"/>
1209 <echo>Deploying ${base.webservice.name} web services for localsite under service name: localsite</echo>
1210 <antcall target="create-deployment-files">
1211 <param name="axis.sitename" value="localsite"/>
1212 <param name="axis.servicesname" value="${base.webservice.name}"/>
1213 <param name="axis.siteuri" value="localsite"/>
1214 </antcall>
1215 <antcall target="deploy-site">
1216 <param name="axis.sitename" value="localsite"/>
1217 <param name="axis.servicesname" value="${base.webservice.name}"/>
1218 <param name="axis.siteuri" value="localsite"/>
1219 </antcall>
1220 <echo>The Greenstone server has been started up. If you do not want it running, please type: ant stop.</echo>
1221 </target>
1222
1223 <target name="get-sitename" unless="axis.sitename">
1224 <input addproperty="axis.sitename" defaultvalue="localsite">What site do you want to deploy services for?
1225Press Enter for default:localsite</input>
1226 </target>
1227
1228 <target name="get-undeploy-service-name" unless="axis.undeploy.servicename">
1229 <input addproperty="axis.undeploy.servicename" defaultvalue="localsite">Please enter the full name of the service you wish to undeploy.
1230To find out which web services you've got deployed, point your browser to http://HOST:PORT/greenstone3/services
1231Or press Enter for undeploying the default:localsite /&gt;</input>
1232 <echo>Name of service to undeploy: ${axis.undeploy.servicename}</echo>
1233 </target>
1234
1235 <target name="get-webservices" unless="axis.servicesname">
1236 <input addproperty="axis.servicesname" defaultvalue="${base.webservice.name}">Which set of web services do you want to deploy?
1237Choose from: ${web.services.list}
1238Or press Enter for default:${base.webservice.name} /&gt;</input>
1239 <echo>${axis.servicesname}</echo>
1240 </target>
1241
1242 <target name="get-siteuri" depends="get-sitename,get-webservices" unless="axis.siteuri">
1243 <input addproperty="axis.siteuri" defaultvalue="${axis.servicesname}${axis.sitename}">What name do you want the service to have? (Press Enter for default:${axis.servicesname}${axis.sitename})</input>
1244 <echo>Site: ${axis.sitename}, services: ${axis.servicesname}, servicesname: ${axis.siteuri}</echo>
1245 </target>
1246
1247 <target name="set-soapmethod" description="Determines whether the service in the wsdd should have the style attribute set to message or the provider attribute set to java:RPC" if="axis.servicesname">
1248 <condition property="soap.method" value="provider='java:MSG' style='message' use='literal'">
1249 <equals arg1="${axis.servicesname}" arg2="${base.webservice.name}"/>
1250 </condition>
1251
1252 <!--everything else defaults to java:RPC at present-->
1253 <condition property="soap.method" value="provider='java:RPC'">
1254 <not>
1255 <equals arg1="${axis.servicesname}" arg2="${base.webservice.name}"/>
1256 </not>
1257 </condition>
1258 </target>
1259
1260 <target name="create-deployment-files" depends="set-soapmethod" if="axis.sitename">
1261 <filter token="sitename" value="${axis.sitename}"/>
1262 <filter token="siteuri" value="${axis.siteuri}"/>
1263 <filter token="servicesname" value="${axis.servicesname}"/>
1264 <filter token="soapmethod" value="${soap.method}"/>
1265 <copy file="${basedir}/resources/soap/site.wsdd.template"
1266 tofile="${basedir}/resources/soap/deploy.wsdd"
1267 filtering="true"
1268 overwrite="true"/>
1269 <!-- create the java files and compile them -->
1270 <copy file="${basedir}/resources/java/${axis.servicesname}.java.in"
1271 tofile="${src.gsdl3.home}/${axis.servicesname}${axis.sitename}.java"
1272 filtering="true"
1273 overwrite="true"/>
1274 <mkdir dir="${build.home}"/>
1275 <javac srcdir="${src.home}"
1276 destdir="${build.home}"
1277 debug="${compile.debug}"
1278 deprecation="${compile.deprecation}"
1279 optimize="${compile.optimize}">
1280 <classpath refid="compile.classpath"/>
1281 <include name="org/greenstone/gsdl3/${axis.servicesname}${axis.sitename}.java" />
1282 </javac>
1283 <mkdir dir="${web.classes}/org/greenstone/gsdl3"/>
1284 <copy file="${build.home}/org/greenstone/gsdl3/${axis.servicesname}${axis.sitename}.class"
1285 tofile="${web.classes}/org/greenstone/gsdl3/${axis.servicesname}${axis.sitename}.class"
1286 overwrite="true" />
1287 </target>
1288
1289
1290 <!-- ====================== Core targets ============================== -->
1291 <!-- core targets refer to the core gsdl3 java src -->
1292
1293 <target name="prepare-core"/>
1294
1295 <target name="configure-core"/>
1296
1297 <target name="update-core" depends="init,svnupdate-core,clean-core,compile-core"
1298 description="Update only the Greenstone core" />
1299
1300 <target name="svnupdate-core" unless="nosvn.mode">
1301 <exec executable="svn">
1302 <arg value="update"/>
1303 <arg value="${basedir}"/>
1304 <arg value="-r"/><arg value="${branch.revision}"/>
1305 </exec>
1306 </target>
1307
1308 <target name="clean-core"
1309 description="Clean only the Greenstone core">
1310 <!-- should this delete the gsdl3.jar from web/WEB-INF?? -->
1311 <delete dir="${build.home}"/>
1312 </target>
1313
1314 <target name="compile-core" depends="init"
1315 description="Compile only the Greenstone core">
1316 <mkdir dir="${build.home}"/>
1317 <if><bool><isset property="with.jni"/></bool>
1318 <javac srcdir="${src.home}"
1319 destdir="${build.home}"
1320 debug="${compile.debug}"
1321 deprecation="${compile.deprecation}"
1322 optimize="${compile.optimize}">
1323 <classpath>
1324 <path refid="compile.classpath"/>
1325 </classpath>
1326 </javac>
1327 <else>
1328 <property name="gsprefix" value=""/>
1329 <javac srcdir="${src.home}"
1330 destdir="${build.home}"
1331 debug="${compile.debug}"
1332 deprecation="${compile.deprecation}"
1333 optimize="${compile.optimize}">
1334 <classpath>
1335 <path refid="compile.classpath"/>
1336 </classpath>
1337 <exclude name="org/greenstone/gsdl3/service/GS2MGPPRetrieve.java"/>
1338 <exclude name="org/greenstone/gsdl3/service/GS2MGPPSearch.java"/>
1339 <exclude name="org/greenstone/gsdl3/service/GS2MGSearch.java"/>
1340 <exclude name="org/greenstone/gsdl3/service/GS2MGRetrieve.java"/>
1341 <exclude name="org/greenstone/gsdl3/service/GoogleNgramMGPPSearch.java"/>
1342 <exclude name="org/greenstone/gsdl3/service/PhindPhraseBrowse.java"/>
1343 <exclude name="org/greenstone/gsdl3/util/GDBMWrapper.java"/>
1344 </javac>
1345 </else>
1346 </if>
1347 <jar destfile="${build.home}/gsdl3.jar">
1348 <fileset dir="${build.home}">
1349 <include name="org/greenstone/gsdl3/**"/>
1350 <include name="org/flax/**"/>
1351 <exclude name="**/Test.class"/>
1352 </fileset>
1353 <manifest>
1354 <attribute name="Built-By" value="${user.name}" />
1355 </manifest>
1356 </jar>
1357 <copy file="${build.home}/gsdl3.jar" todir="${web.lib}"/>
1358
1359 <jar destfile="${build.home}/gutil.jar">
1360 <fileset dir="${build.home}">
1361 <include name="org/greenstone/util/**"/>
1362 </fileset>
1363 <manifest>
1364 <attribute name="Built-By" value="${user.name}" />
1365 </manifest>
1366 </jar>
1367 <copy file="${build.home}/gutil.jar" todir="${web.lib}"/>
1368
1369 <!-- copy the localsite server in case we need it -->
1370 <copy file="${build.home}/org/greenstone/gsdl3/${base.webservice.name}localsite.class" tofile="${web.classes}/org/greenstone/gsdl3/${base.webservice.name}localsite.class" />
1371
1372 <!-- Greenstone Administrator Interface -->
1373 <jar destfile="${build.home}/GAI.jar">
1374 <fileset dir="${build.home}">
1375 <include name="org/greenstone/admin/**"/>
1376 </fileset>
1377 <manifest>
1378 <attribute name="Built-By" value="${user.name}" />
1379 </manifest>
1380 </jar>
1381 <copy file="${build.home}/GAI.jar" todir="${web.lib}"/>
1382 <copy file="${build.home}/GAI.jar" todir="${admin.dir}"/>
1383 <jar destfile="${build.home}/phind.jar">
1384 <fileset dir="${build.home}">
1385 <include name="org/greenstone/applet/phind/**"/>
1386 </fileset>
1387 <manifest>
1388 <attribute name="Built-By" value="${user.name}" />
1389 </manifest>
1390 </jar>
1391 <mkdir dir="${web.applet}"/>
1392 <copy file="${build.home}/phind.jar" todir="${web.applet}"/>
1393 <!-- phind also needs xercesImpl.jar and xml-apis.jar to be in web/applet -->
1394 <if>
1395 <bool><istrue value="${tomcat.islocal}"/></bool>
1396 <copy file="${web.lib}/xercesImpl.jar" todir="${web.applet}"/>
1397 <copy file="${web.lib}/xml-apis.jar" todir="${web.applet}"/>
1398 </if>
1399
1400
1401 <!-- skip anttasks for now
1402 <jar destfile="${build.home}/anttasks.jar">
1403 <fileset dir="${build.home}">
1404 <include name="org/greenstone/anttasks/**"/>
1405 </fileset>
1406 <manifest>
1407 <attribute name="Built-By" value="${user.name}" />
1408 </manifest>
1409 </jar>
1410 <copy file="${build.home}/anttasks.jar" todir="${basedir}/lib/java"/>-->
1411 <jar destfile="${build.home}/gsdl3test.jar">
1412 <fileset dir="${build.home}">
1413 <include name="org/greenstone/gsdl3/**/*Test.class"/>
1414 <include name="org/greenstone/testing/**"/>
1415 </fileset>
1416 <manifest>
1417 <attribute name="Built-By" value="${user.name}" />
1418 </manifest>
1419 </jar>
1420 <jar destfile="${build.home}/server.jar">
1421 <fileset dir="${build.home}">
1422 <include name="org/greenstone/server/**"/>
1423 <include name="org/greenstone/util/**"/>
1424 </fileset>
1425 <fileset file="${basedir}/resources/java/server.properties"/>
1426 <manifest>
1427 <attribute name="Built-By" value="${user.name}"/>
1428 </manifest>
1429 </jar>
1430 <copy file="${build.home}/server.jar" todir="${basedir}"/>
1431 </target>
1432
1433 <!-- ================== Packages targets ================================ -->
1434 <!-- these targets refer to the greenstone source packages - these need
1435 updating less often, so are in separate targets to the core -->
1436 <target name="prepare-packages" depends="init"/>
1437
1438 <target name="update-packages" depends="init,svnupdate-packages,configure-packages,clean-packages,compile-packages"
1439 description="Update only the source packages"/>
1440
1441 <target name="svnupdate-packages" unless="nosvn.mode">
1442 <exec executable="svn">
1443 <arg value="update"/>
1444 <arg value="${src.packages.home}"/>
1445 <arg value="-r"/><arg value="${branch.revision}"/>
1446 </exec>
1447 </target>
1448
1449
1450 <target name="configure-packages" depends="init,configure-javagdbm"
1451 description="Configure only the packages."/>
1452
1453 <target name="configure-javagdbm" if="with.jni">
1454 <echo>
1455 Configuring JavaGDBM
1456 </echo>
1457
1458 <exec executable="${javagdbm.home}/configure" os="${os.unix}" dir="${javagdbm.home}" failonerror="true">
1459 <arg value="--prefix=${basedir}"/>
1460 <arg value="--libdir=${lib.jni}"/>
1461 <arg value="--with-gdbm=${gdbm.home}"/>
1462 </exec>
1463 </target>
1464
1465 <target name="clean-packages" depends="init,clean-javagdbm" description="Clean only the packages"/>
1466
1467 <target name="clean-javagdbm" depends="init">
1468 <exec executable="make" os="${os.unix}"
1469 dir="${javagdbm.home}" failonerror="true">
1470 <arg value="clean"/>
1471 </exec>
1472 </target>
1473
1474 <target name="distclean-packages" depends="init,distclean-javagdbm" description="Distclean only the packages"/>
1475
1476 <target name="distclean-javagdbm" depends="init">
1477 <exec executable="make" os="${os.unix}"
1478 dir="${javagdbm.home}" failonerror="true">
1479 <arg value="distclean"/>
1480 </exec>
1481 </target>
1482
1483 <target name="compile-packages" description="Compile only the source packages">
1484 <!-- javagdbm -->
1485 <antcall target="compile-javagdbm"/>
1486 <!-- Search4j -->
1487 <antcall target="compile-search4j"/>
1488 </target>
1489
1490 <target name="compile-javagdbm" description="Compile JavaGDBM" if="with.jni">
1491
1492 <!-- unix: -->
1493 <echo>compile javagdbm</echo>
1494 <exec executable="make" os="${os.unix}" dir="${javagdbm.home}" failonerror="true"/>
1495 <exec executable="make" os="${os.unix}" dir="${javagdbm.home}" failonerror="true">
1496 <arg value="install"/>
1497 </exec>
1498
1499 <!-- windows: Calling without the "compile" argument first will run winMake.bat with
1500 "all" which will then perform both the compile AND link targets in jni/win32.mak
1501 (thereby also generating gdbmjava.dll). Then we run the same command with
1502 the "install" argument to copy the gdbmjava.dll into the correct location. -->
1503 <echo>Windows: compile javagdbm</echo>
1504 <exec executable="${javagdbm.home}/winMake.bat" os="${os.windows}" dir="${javagdbm.home}" failonerror="true">
1505 <env key="GSDLHOME" path="${gs2build.home}"/>
1506 </exec>
1507 <exec executable="${javagdbm.home}/winMake.bat" os="${os.windows}" dir="${javagdbm.home}" failonerror="true">
1508 <env key="GSDLHOME" path="${gs2build.home}"/>
1509 <arg value="install"/>
1510 </exec>
1511
1512 <!-- install the jar file -->
1513 <echo>Install the javagdbm jar file ${javagdbm.home}/javagdbm.jar ${lib.jni}</echo>
1514 <copy file="${javagdbm.home}/javagdbm.jar" todir="${lib.jni}"/>
1515 </target>
1516
1517 <target name="compile-search4j">
1518
1519 <!-- windows -->
1520 <if><bool><istrue value="${current.os.iswindows}"/></bool>
1521 <exec executable="nmake" dir="${src.packages.home}/search4j" failonerror="true">
1522 <arg value="/f"/>
1523 <arg value="win32.mak"/>
1524 <arg value='BINDIR="${basedir}\bin"'/>
1525 </exec>
1526 <exec executable="nmake" dir="${src.packages.home}/search4j" failonerror="true">
1527 <arg value="/f"/>
1528 <arg value="win32.mak"/>
1529 <arg value="install"/>
1530 <arg value='BINDIR="${basedir}\bin"'/>
1531 </exec>
1532
1533 <!-- unix -->
1534 <else><if><bool><istrue value="${current.os.isunix}"/></bool>
1535 <exec executable="${src.packages.home}/search4j/configure" dir="${src.packages.home}/search4j" failonerror="true">
1536 <arg value="--bindir=${basedir}/bin"/>
1537 <arg value="${static.arg}"/>
1538 </exec>
1539 <exec executable="make" dir="${src.packages.home}/search4j" failonerror="true"/>
1540 <exec executable="make" dir="${src.packages.home}/search4j" failonerror="true">
1541 <arg value="install"/>
1542 </exec>
1543
1544 <!-- else warn -->
1545 <else>
1546 <fail>this target does not support the current os</fail>
1547
1548 </else></if></else></if>
1549
1550 </target>
1551
1552 <target name="install-auxiliary-jar-files" depends="init">
1553
1554 <if>
1555 <bool><available file="${mg.home}/mg.jar"/></bool>
1556 <copy file="${mg.home}/mg.jar" todir="${lib.jni}"/>
1557 </if>
1558
1559 <if>
1560 <bool><available file="${mgpp.home}/mgpp.jar"/></bool>
1561 <copy file="${mgpp.home}/mgpp.jar" todir="${lib.jni}"/>
1562 </if>
1563
1564 <copy file="${lucene.home}/LuceneWrapper.jar" todir="${web.lib}"/>
1565 </target>
1566
1567 <target name="install-jni-files" depends="init" if="with.jni">
1568 <antcall target="install-jni-files-linux"/>
1569 <antcall target="install-jni-files-windows"/>
1570 <antcall target="install-jni-files-macos"/>
1571 </target>
1572
1573 <target name="install-jni-files-linux" depends="init" if="current.os.isunixnotmac">
1574 <copy file="${mg.home}/jni/libmgretrievejni.so" todir="${lib.jni}"/>
1575 <copy file="${mg.home}/jni/libmgsearchjni.so" todir="${lib.jni}"/>
1576 <copy file="${mg.home}/jni/libmgpassjni.so" todir="${lib.jni}"/>
1577 <copy file="${mgpp.home}/jni/libmgppretrievejni.so" todir="${lib.jni}"/>
1578 <copy file="${mgpp.home}/jni/libmgppsearchjni.so" todir="${lib.jni}"/>
1579 <copy file="${mgpp.home}/jni/libmgpppassjni.so" todir="${lib.jni}"/>
1580 </target>
1581 <target name="install-jni-files-windows" depends="init" if="current.os.iswindows">
1582 <copy file="${mg.home}/jni/mgretrievejni.dll" todir="${lib.jni}"/>
1583 <copy file="${mg.home}/jni/mgsearchjni.dll" todir="${lib.jni}"/>
1584 <copy file="${mg.home}/jni/mgpassjni.dll" todir="${lib.jni}"/>
1585 <copy file="${mgpp.home}/jni/mgppretrievejni.dll" todir="${lib.jni}"/>
1586 <copy file="${mgpp.home}/jni/mgppsearchjni.dll" todir="${lib.jni}"/>
1587 <copy file="${mgpp.home}/jni/mgpppassjni.dll" todir="${lib.jni}"/>
1588 </target>
1589 <target name="install-jni-files-macos" depends="init" if="current.os.ismac">
1590 <copy file="${mg.home}/jni/libmgretrievejni.jnilib" todir="${lib.jni}"/>
1591 <copy file="${mg.home}/jni/libmgsearchjni.jnilib" todir="${lib.jni}"/>
1592 <copy file="${mg.home}/jni/libmgpassjni.jnilib" todir="${lib.jni}"/>
1593 <copy file="${mgpp.home}/jni/libmgppretrievejni.jnilib" todir="${lib.jni}"/>
1594 <copy file="${mgpp.home}/jni/libmgppsearchjni.jnilib" todir="${lib.jni}"/>
1595 <copy file="${mgpp.home}/jni/libmgpppassjni.jnilib" todir="${lib.jni}"/>
1596 </target>
1597
1598 <!-- ========common-src targets =================================-->
1599 <!-- these are used to get common-src (for indexers, gdbm, sqlite etc) when
1600 collection building is not enabled -->
1601
1602 <target name="update-common-src" depends="init" if="collection.building.disabled">
1603 </target>
1604
1605 <target name="svnupdate-common-src" depends="init" if="collection.building.disabled" unless="nosvn.mode">
1606 <exec executable="svn">
1607 <arg value="update"/>
1608 <arg value="${common.src.home}"/>
1609 <arg value="-r"/><arg value="${branch.revision}"/>
1610 </exec>
1611 </target>
1612
1613 <target name="prepare-common-src" depends="init" if="collection.building.disabled" unless="common.src.present">
1614 <antcall target="checkout-common-src"/>
1615 <antcall target="unzip-windows-packages"/>
1616 </target>
1617
1618 <target name="checkout-common-src" depends="init" if="collection.building.disabled" unless="nosvn.mode">
1619 <echo>checking out common-src</echo>
1620 <exec executable="svn">
1621 <arg value="checkout"/>
1622 <arg value="${svn.root}/main/${branch.path}/greenstone2/common-src"/>
1623 <arg value="common-src"/>
1624 <arg value="-r"/><arg value="${branch.revision}"/>
1625 </exec>
1626 </target>
1627
1628 <target name="configure-common-src" depends="init">
1629 <exec executable="${common.src.home}/configure" os="${os.unix}"
1630 dir="${common.src.home}" failonerror="true">
1631 <arg value="--prefix=${gs2build.home}"/> <!-- what value to use?? -->
1632 <arg value="--bindir=${gs2build.home}/bin/${os.bin.dir}"/> <!-- what value to use?? -->
1633 <arg line="${gs2.opt.args}"/>
1634 <arg line="${static.arg}"/>
1635 <arg line="${allargs}"/>
1636 </exec>
1637 </target>
1638
1639 <target name="clean-common-src" depends="init">
1640 <!-- unix: -->
1641 <exec executable="make" os="${os.unix}" dir="${common.src.home}" failonerror="true">
1642 <arg value="clean"/>
1643 </exec>
1644 <!-- windows: -->
1645 <exec executable="nmake" dir="${common.src.home}" os="${os.windows}" failonerror="true">
1646 <arg value="/f"/>
1647 <arg value="win32.mak"/>
1648 <arg value="clean"/>
1649 <arg value="GSDLHOME=${gs2build.home}"/>
1650 </exec>
1651 </target>
1652 <target name="distclean-common-src" depends="init">
1653 <!-- unix: -->
1654 <exec executable="make" os="${os.unix}" dir="${common.src.home}" failonerror="true">
1655 <arg value="distclean"/>
1656 </exec>
1657 <!-- windows: distclean = clean + remove configure products (remove makefiles). But on Windows there is no removing makefiles, so we just call clean -->
1658 <exec executable="nmake" dir="${common.src.home}" os="${os.windows}" failonerror="true">
1659 <arg value="/f"/>
1660 <arg value="win32.mak"/>
1661 <arg value="clean"/>
1662 <arg value="GSDLHOME=${gs2build.home}"/>
1663 </exec>
1664 </target>
1665 <target name="compile-common-src" depends="init">
1666 <!-- unix: -->
1667 <exec executable="make" os="${os.unix}" dir="${common.src.home}" failonerror="true">
1668 <arg value="${gs2.compile.target}"/>
1669 </exec>
1670 <!-- windows: -->
1671 <exec executable="nmake" dir="${common.src.home}" os="${os.windows}" failonerror="true">
1672 <arg value="/f"/>
1673 <arg value="win32.mak"/>
1674 <arg value="GSDLHOME=${gs2build.home}"/>
1675 <arg value="ENABLE_JNI=${gs2.windows.enablejni}"/>
1676 <arg value="ENABLE_MG=${gs2.windows.enablemg}"/>
1677 <arg value="ENABLE_MGPP=${gs2.windows.enablemgpp}"/>
1678 <arg value="USE_GDBM=${gs2.windows.usegdbm}"/>
1679 <arg value="USE_SQLITE=${gs2.windows.usesqlite}"/>
1680 </exec>
1681 </target>
1682
1683 <!-- ======= collection-building targets ===========================-->
1684
1685 <target name="update-collection-building" if="collection.building.enabled"
1686 depends="init,svnupdate-collection-building,gs2build-edit-setup-bat,configure-common-src,clean-common-src,compile-common-src,configure-collection-building,clean-collection-building,compile-collection-building"
1687 description="Update (SVN update, configure, compile etc) only the collection building components"/>
1688
1689 <target name="svnupdate-collection-building" if="collection.building.enabled" depends="init,svnupdate-gs2build,svnupdate-gli" unless="nosvn.mode"
1690 description="SVN update the collection building components">
1691 </target>
1692
1693 <target name="prepare-collection-building" depends="init,prepare-gs2build,prepare-gli" if="collection.building.enabled">
1694 </target>
1695
1696 <target name="configure-collection-building" depends="init,configure-build-src" if="collection.building.enabled"
1697 description="Configure the collection building components">
1698 </target>
1699
1700 <target name="clean-collection-building" depends="init,clean-gli,clean-build-src"
1701 description="Clean only the collection building components"
1702 if="collection.building.enabled"/>
1703
1704 <target name="distclean-collection-building" depends="init,clean-build-src,distclean-build-src"
1705 description="Distclean only the collection building components"
1706 if="collection.building.enabled"/>
1707
1708 <target name="compile-collection-building" depends="init,compile-build-src,compile-gli" if="collection.building.enabled"
1709 description="Compile only the collection building components">
1710 <!-- make install for common-src -->
1711 <!-- unix: -->
1712 <exec executable="make" os="${os.unix}" dir="${common.src.home}" failonerror="true">
1713 <arg value="${gs2.install.target}"/>
1714 </exec>
1715
1716 <!-- windows: -->
1717 <exec executable="nmake" dir="${common.src.home}" os="${os.windows}" failonerror="true">
1718 <arg value="/f"/>
1719 <arg value="win32.mak"/>
1720 <arg value="install"/>
1721 <arg value="GSDLHOME=${gs2build.home}"/>
1722 <arg value="ENABLE_JNI=${gs2.windows.enablejni}"/>
1723 <arg value="ENABLE_MG=${gs2.windows.enablemg}"/>
1724 <arg value="ENABLE_MGPP=${gs2.windows.enablemgpp}"/>
1725 <arg value="USE_GDBM=${gs2.windows.usegdbm}"/>
1726 <arg value="USE_SQLITE=${gs2.windows.usesqlite}"/>
1727 <!--
1728 <arg value="ENABLE_JNI=${gs2.windows.enablejni}"/>
1729 <arg value="USE_SQLITE=0"/>--> <!-- why is this not on by default? -->
1730 </exec>
1731
1732 <!-- install gs2build indexers for windows -->
1733 <if>
1734 <bool><istrue value="${current.os.iswindows}"/></bool>
1735 <copy todir="${gs2build.home}/bin/windows">
1736 <fileset dir="${gs2build.home}/common-src/indexers/bin">
1737 <include name="*.*"/>
1738 </fileset>
1739 </copy>
1740 </if>
1741
1742 <!-- LuceneWrapper jar file not installed by default -->
1743 <mkdir dir="${gs2build.home}/bin/java"/>
1744 <copy file="${lucene.home}/LuceneWrapper.jar" todir="${gs2build.home}/bin/java"/>
1745
1746 </target>
1747
1748 <!-- ============== gli targets ================================= -->
1749 <target name="svnupdate-gli" if="collection.building.enabled" depends="init" unless="nosvn.mode">
1750
1751 <exec executable="svn">
1752 <arg value="update"/>
1753 <arg value="${gli.home}"/>
1754 <arg value="-r"/><arg value="${branch.revision}"/>
1755 </exec>
1756
1757 <exec executable="svn" dir="web/WEB-INF/cgi">
1758 <arg value="export"/>
1759 <arg value="-r"/><arg value="${branch.revision}"/>
1760 <arg value="${svn.root}/main/${branch.path}/greenstone2/cgi-bin/gliserver.pl"/>
1761 </exec>
1762 <exec executable="svn" dir="web/WEB-INF/cgi">
1763 <arg value="export"/>
1764 <arg value="-r"/><arg value="${branch.revision}"/>
1765 <arg value="${svn.root}/main/${branch.path}/greenstone2/cgi-bin/gsdlCGI.pm"/>
1766 </exec>
1767
1768 </target>
1769
1770 <target name="prepare-gli" depends="init" if="collection.building.enabled" unless="gli.present">
1771 <!-- checkout -->
1772 <if><bool><and><not><istrue value="${nosvn.mode}"/></not><isset property="with.gli.and.gems"/></and></bool>
1773
1774 <exec executable="svn">
1775 <arg value="checkout"/>
1776 <arg value="${svn.root}/main/${branch.path}/gli"/>
1777 <arg value="-r"/><arg value="${branch.revision}"/>
1778 </exec>
1779
1780 <exec executable="svn" dir="web/WEB-INF/cgi">
1781 <arg value="export"/>
1782 <arg value="-r"/><arg value="${branch.revision}"/>
1783 <arg value="${svn.root}/main/${branch.path}/greenstone2/cgi-bin/gliserver.pl"/>
1784 </exec>
1785 <exec executable="svn" dir="web/WEB-INF/cgi">
1786 <arg value="export"/>
1787 <arg value="-r"/><arg value="${branch.revision}"/>
1788 <arg value="${svn.root}/main/${branch.path}/greenstone2/cgi-bin/gsdlCGI.pm"/>
1789 </exec>
1790
1791 </if>
1792 </target>
1793
1794 <target name="clean-gli" depends="init" if="collection.building.enabled">
1795 <!-- gli -->
1796 <property name="gli.home" value="${basedir}/gli"/>
1797 <!-- linux -->
1798 <exec executable="clean.sh" os="${os.unix}" dir="${gli.home}"
1799 resolveExecutable="true" failonerror="true"/>
1800 <!-- windows -->
1801 <exec executable="clean.bat" os="${os.windows}" dir="${gli.home}"
1802 resolveExecutable="true" failonerror="true"/>
1803 </target>
1804
1805 <target name="compile-gli" depends="init" if="collection.building.enabled">
1806 <if><bool><isset property="with.gli.and.gems"/></bool>
1807 <!-- gli -->
1808 <property name="gli.home" value="${basedir}/gli"/>
1809
1810 <!-- linux -->
1811 <exec executable="makegli.sh" os="${os.unix}" dir="${gli.home}" resolveExecutable="true" failonerror="true"/>
1812 <!--remote gli-->
1813 <exec executable="makejar.sh" os="${os.unix}" dir="${gli.home}"
1814 resolveExecutable="true" failonerror="true"/>
1815 <!-- windows -->
1816 <exec executable="makegli.bat" os="${os.windows}" dir="${gli.home}" resolveExecutable="true" failonerror="true"/>
1817 <!--remote gli-->
1818 <exec executable="makejar.bat" os="${os.windows}" dir="${gli.home}"
1819 resolveExecutable="true" failonerror="true"/>
1820 <copy file="${gli.home}/GLIServer.jar" todir="${gs2build.home}/bin/java" />
1821 </if>
1822 </target>
1823
1824 <target name="gli" description="Run the Greenstone Librarian Interface" depends="init" if="collection.building.enabled">
1825 <exec executable="${basedir}/gli/gli.sh" os="${os.linux},${os.solaris}" dir="${basedir}/gli" spawn="true">
1826 <env key="gsdl3path" path="${basedir}"/>
1827 <env key="gsdlpath" path="${gs2build.home}"/>
1828 </exec>
1829 <exec executable="${basedir}/gli/gli.sh" os="${os.mac}" dir="${basedir}/gli" spawn="true">
1830 <env key="gsdl3path" path="${basedir}"/>
1831 <env key="gsdlpath" path="${gs2build.home}"/>
1832 <env key="DYLD_LIBRARY_PATH" path="${env.DYLD_LIBRARY_PATH}:${gdbm.home}/lib"/>
1833 </exec>
1834 <exec executable="${basedir}/gli/gli.bat" os="${os.windows}" dir="${basedir}/gli" spawn="true">
1835 <env key="GSDL3PATH" path="${basedir}"/>
1836 <env key="GSDLPATH" path="${gs2build.home}"/>
1837 </exec>
1838 <echo>Running GLI from Ant means that you don't get to see any of the terminal output. If you have problems with GLI and want to see the output, please run the script gli.sh/bat from the greenstone3/gli directory.
1839 </echo>
1840 </target>
1841
1842 <!-- ================ gs2build targets =========================== -->
1843
1844 <target name="svnupdate-gs2build" if="collection.building.enabled" depends="init" unless="nosvn.mode">
1845 <echo>svn updating gs2build</echo>
1846 <exec executable="svn">
1847 <arg value="update"/>
1848 <arg value="${gs2build.home}"/>
1849 <arg value="-r"/><arg value="${branch.revision}"/>
1850 </exec>
1851 </target>
1852
1853 <target name="prepare-gs2build" depends="init" if="collection.building.enabled" unless="gs2build.present">
1854 <antcall target="checkout-gs2build"/>
1855 <antcall target="unzip-windows-packages"/>
1856 <antcall target="checkout-winbin"/>
1857 <antcall target="get-windows-binaries"/>
1858 <antcall target="delete-winbin"/>
1859 </target>
1860
1861 <target name="checkout-gs2build" depends="init" if="collection.building.enabled" unless="nosvn.mode">
1862 <echo>checking out gs2build</echo>
1863 <exec executable="svn">
1864 <arg value="checkout"/>
1865 <arg value="${svn.root}/main/${branch.path}/gs2build"/>
1866 <arg value="-r"/><arg value="${branch.revision}"/>
1867 </exec>
1868
1869
1870 </target>
1871
1872 <target name="checkout-winbin" depends="init" if="current.os.iswindows"
1873 unless="nosvn.mode">
1874
1875 <exec executable="svn">
1876 <arg value="checkout"/>
1877 <arg value="${svn.root}/main/${branch.path}/binaries/windows"/>
1878 <arg value="-r"/><arg value="${branch.revision}"/>
1879 <arg value="winbin"/>
1880 </exec>
1881
1882 </target>
1883
1884 <target name="update-winbin" depends="init" if="current.os.iswindows" unless="nosvn.mode">
1885 <exec executable="svn">
1886 <arg value="update"/>
1887 <arg value="winbin"/>
1888 <arg value="-r"/><arg value="${branch.revision}"/>
1889 </exec>
1890
1891 </target>
1892
1893 <target name="get-windows-binaries" depends="init" if="collection.building.enabled.windows">
1894 <move todir="${gs2build.home}/bin/windows" failonerror="false">
1895 <fileset dir="${basedir}/winbin/bin"/>
1896 </move>
1897 </target>
1898
1899 <target name="delete-winbin" depends="init" if="collection.building.enabled.windows">
1900 <delete dir="${basedir}/winbin"/>
1901 </target>
1902
1903 <target name="unzip-windows-packages" depends="init" if="current.os.iswindows">
1904 <unzip src="${common.src.home}/packages/windows/crypt/crypt.zip"
1905 dest="${common.src.home}/packages/windows/crypt"/>
1906 <untar compression="gzip"
1907 src="${common.src.home}/packages/sqlite/${sqlite.targz.version}"
1908 dest="${common.src.home}/packages/sqlite"/>
1909 <unzip src="${common.src.home}/indexers/packages/windows/iconv/iconv.zip"
1910 dest="${common.src.home}/indexers/packages/windows/iconv"/>
1911 </target>
1912
1913 <target name="gs2build-edit-setup-bat" if="collection.building.enabled.windows">
1914 <!-- we want a windows path in the setup.bat file -->
1915 <pathconvert targetos="windows" property="gs2build.home.windows">
1916 <path path="${gs2build.home}"/>
1917 </pathconvert>
1918 <move file="${gs2build.home}/setup.bat" tofile="${gs2build.home}/setup-tmp.bat">
1919 <filterset>
1920 <filter token="gsdlhome" value="${gs2build.home.windows}"/>
1921 </filterset>
1922 </move>
1923 <move file="${gs2build.home}/setup-tmp.bat" tofile="${gs2build.home}/setup.bat" />
1924 </target>
1925
1926
1927 <target name="clean-build-src" depends="init" if="collection.building.enabled">
1928 <!-- unix: -->
1929 <exec executable="make" os="${os.unix}" dir="${build.src.home}" failonerror="true">
1930 <arg value="clean"/>
1931 </exec>
1932 <!-- windows: -->
1933 <exec executable="nmake" dir="${build.src.home}" os="${os.windows}" failonerror="true">
1934 <arg value="/f"/>
1935 <arg value="win32.mak"/>
1936 <arg value="clean"/>
1937 <arg value="GSDLHOME=${gs2build.home}"/>
1938 </exec>
1939 </target>
1940
1941
1942 <target name="distclean-build-src" depends="init,clean-build-src" if="collection.building.enabled">
1943 <!-- unix: -->
1944 <exec executable="make" os="${os.unix}" dir="${build.src.home}" failonerror="true">
1945 <arg value="distclean"/>
1946 </exec>
1947 <!-- windows: distclean = clean + remove configure products (remove makefiles). But on Windows there is no removing makefiles, so we just call clean -->
1948 <exec executable="nmake" dir="${build.src.home}" os="${os.windows}" failonerror="true">
1949 <arg value="/f"/>
1950 <arg value="win32.mak"/>
1951 <arg value="clean"/>
1952 <arg value="GSDLHOME=${gs2build.home}"/>
1953 </exec>
1954 </target>
1955
1956 <target name="configure-build-src" depends="init" if="collection.building.enabled"
1957 description="Configure the build-src component">
1958 <exec executable="${build.src.home}/configure" os="${os.unix}"
1959 dir="${build.src.home}" failonerror="true">
1960 <arg value="--prefix=${gs2build.home}"/>
1961 <arg line="${gs2.opt.args} ${static.arg} ${allargs}"/>
1962 </exec>
1963 </target>
1964
1965 <!-- common-src is done separately and needs to be compiled first -->
1966 <target name="compile-build-src" depends="init" if="collection.building.enabled">
1967
1968 <exec executable="make" dir="${build.src.home}" os="${os.unix}" failonerror="true">
1969 <arg line="${ldlpath.arg}"/>
1970 </exec>
1971
1972 <exec executable="make" dir="${build.src.home}" os="${os.unix}" failonerror="true">
1973 <arg value="install"/>
1974 </exec>
1975
1976 <!-- run the setup script -->
1977 <!-- <exec executable="${compile.windows.c++.setup}" os="${os.windows}" failonerror="true"/>-->
1978 <!--Above does not work: even though vcvars.bat executes, the env changes it makes don't get saved. Need user to run vcvars.bat first before calling ant-->
1979 <exec executable="nmake" dir="${build.src.home}" os="${os.windows}" failonerror="true">
1980 <arg value="/f"/>
1981 <arg value="win32.mak"/>
1982 <arg value="GSDLHOME=${gs2build.home}"/>
1983 </exec>
1984 <exec executable="nmake" dir="${build.src.home}" os="${os.windows}" failonerror="true">
1985 <arg value="/f"/>
1986 <arg value="win32.mak"/>
1987 <arg value="install"/>
1988 <arg value="GSDLHOME=${gs2build.home}"/>
1989 </exec>
1990 </target>
1991
1992
1993 <!-- ======================== TESTING Targets ========================= -->
1994
1995 <target name="test" description="Run the (incomplete) JUnit test suite "
1996 depends="init">
1997 <mkdir dir="${basedir}/test"/>
1998 <junit printsummary="withOutAndErr"
1999 errorproperty="test.failed"
2000 failureproperty="test.failed"
2001 fork="${junit.fork}">
2002 <formatter type="plain"/>
2003 <classpath>
2004 <pathelement location="${build.home}/gsdl3test.jar"/>
2005 <path refid="compile.classpath"/>
2006 </classpath>
2007 <test name="${testcase}" if="testcase"/>
2008 <batchtest todir="${basedir}/test" unless="testcase">
2009 <fileset dir="${build.home}" includes="**/*Test.class" />
2010 </batchtest>
2011 </junit>
2012 <echo>
2013 *********************************************
2014 Test output can be found in directory 'test'
2015 *********************************************
2016 </echo>
2017 </target>
2018
2019 <!-- ======================== FLAX Targets ========================= -->
2020 <target name="prepare-flax" description="check out flax source code from another repository" if="install.flax">
2021 <echo>checking out flax ...</echo>
2022 <mkdir dir="${basedir}/src/java/org/flax"/>
2023 <mkdir dir="${basedir}/src/java/org/greenstone/gsdl3/flax"/>
2024 <mkdir dir="${basedir}/src/java/org/greenstone/gsdl3/action/flax"/>
2025 <mkdir dir="${web.home}/WEB-INF/classes/flax"/>
2026 <mkdir dir="${web.home}/interfaces/flax"/>
2027 <mkdir dir="${web.home}/sites/flax"/>
2028 <mkdir dir="${basedir}/flax-resources"/>
2029 <mkdir dir="${basedir}/flax-lib"/>
2030 <exec executable="svn"><arg value="checkout"/><arg value="${flax.checkout.path}/src/java/org/flax"/>
2031 <arg value="src/java/org/flax"/></exec>
2032 <exec executable="svn"><arg value="checkout"/><arg value="${flax.checkout.path}/src/java/org/greenstone/gsdl3/flax"/>
2033 <arg value="src/java/org/greenstone/gsdl3/flax"/></exec>
2034 <exec executable="svn"><arg value="checkout"/><arg value="${flax.checkout.path}/src/java/org/greenstone/gsdl3/action/flax"/>
2035 <arg value="src/java/org/greenstone/gsdl3/action/flax"/></exec>
2036 <exec executable="svn"><arg value="checkout"/><arg value="${flax.checkout.path}/web/WEB-INF/classes/flax"/>
2037 <arg value="${web.home}/WEB-INF/classes/flax"/></exec>
2038 <exec executable="svn"><arg value="checkout"/><arg value="${flax.checkout.path}/web/interfaces/flax"/>
2039 <arg value="${web.home}/interfaces/flax"/></exec>
2040 <exec executable="svn"><arg value="checkout"/><arg value="${flax.checkout.path}/web/sites/flax"/>
2041 <arg value="${web.home}/sites/flax"/></exec>
2042 <exec executable="svn"><arg value="checkout"/><arg value="${flax.checkout.path}/flax-resources"/>
2043 <arg value="flax-resources"/></exec>
2044 <exec executable="svn"><arg value="checkout"/><arg value="${flax.checkout.path}/lib"/>
2045 <arg value="flax-lib"/></exec>
2046 <antcall target="flax-copy-files" />
2047 </target>
2048
2049 <target name="flax-copy-files" description="copy some flax files into the appropriate greenstone3 directories">
2050 <echo>copying flax files ...</echo>
2051 <copy file="${web.home}/WEB-INF/classes/flax/web.xml" todir="${web.home}/WEB-INF" overwrite="true" />
2052 <!-- A configuration file containing web service binding information for the axis engine -->
2053 <copy file="${web.home}/WEB-INF/classes/flax/server-config.wsdd" todir="${web.home}/WEB-INF" overwrite="true" />
2054 <!-- A static web service wsdl file which is queried by soap client. The reason this file is used (instead of the dynamically generated version) is in case any redirects are used in the Apache configuration (e.g., flax.nzdl.org:80 redirects to harakeke:8080) -->
2055 <copy file="${basedir}/flax-resources/FlaxWebService.wsdl" tofile="${web.home}/FlaxWebService.wsdl" overwrite="true"/>
2056 <copy todir="${web.home}/WEB-INF/lib">
2057 <fileset dir="${basedir}/flax-lib">
2058 <include name="*.jar"/>
2059 </fileset>
2060 </copy>
2061 </target>
2062 <target name="configure-flax-wsdl" description="Configure flax webservice with tomcat server/port">
2063 <rsr file="${web.home}/FlaxWebService.wsdl" pattern="@flaxpublicserver@:@flaxpublicport@" replacement="${tomcat.server}:${tomcat.port}"/>
2064 </target>
2065
2066 <target name="update-flax" description="update flax from repository">
2067 <echo>updating flax ...</echo>
2068 <exec executable="svn"><arg value="update"/>
2069 <arg value="src/java/org/flax"/></exec>
2070 <exec executable="svn"><arg value="update"/>
2071 <arg value="src/java/org/greenstone/gsdl3/action/flax"/></exec>
2072 <exec executable="svn"><arg value="update"/>
2073 <arg value="src/java/org/greenstone/gsdl3/flax"/></exec>
2074 <exec executable="svn"><arg value="update"/>
2075 <arg value="${web.home}/WEB-INF/classes/flax"/></exec>
2076 <exec executable="svn"><arg value="update"/>
2077 <arg value="${web.home}/interfaces/flax"/></exec>
2078 <exec executable="svn"><arg value="update"/>
2079 <arg value="flax-resources"/></exec>
2080 <exec executable="svn"><arg value="update"/>
2081 <arg value="flax-lib"/></exec>
2082 <antcall target="flax-copy-files" />
2083 </target>
2084
2085
2086 <target name="compile-javadocs">
2087 <javadoc packagenames="org.greenstone.*"
2088 sourcepath="src/java"
2089 defaultexcludes="yes"
2090 destdir="docs/javadoc"
2091 author="true"
2092 version="true"
2093 use="true"
2094 windowtitle="Greenstone3 API">
2095 <doctitle><![CDATA[<h1>Greenstone3 API</h1>]]></doctitle>
2096 </javadoc>
2097 </target>
2098
2099<!-- ========== Some distribution targets ======================== -->
2100 <target name="remove-source">
2101 <if><bool><isset property="with.gli.and.gems"/></bool>
2102 <delete includeEmptyDirs="true">
2103 <fileset dir="." defaultexcludes="false">
2104 <patternset refid="greenstone3.source.component"/>
2105 </fileset>
2106 </delete>
2107
2108 <else>
2109 <delete includeEmptyDirs="true">
2110 <fileset dir="." defaultexcludes="false">
2111 <patternset refid="greenstone3.source.no.gli.component"/>
2112 </fileset>
2113 </delete>
2114 </else>
2115 </if>
2116 </target>
2117
2118 <target name="dist-tidy"
2119 description="'tidies-up' a greenstone3 installation for distribution.">
2120
2121 <!-- delete unneeded things -->
2122 <delete dir="${packages.home}/axis"/>
2123 <delete><fileset dir="${packages.home}" includes="*.zip"/></delete>
2124 <delete file="README-SVN.txt"/>
2125 <delete file="build.properties.in"/>
2126
2127 <!-- delete source files -->
2128 <antcall target="remove-source"/>
2129
2130 <!-- create empty directories -->
2131 <mkdir dir="${web.home}/applet"/>
2132 <mkdir dir="${web.home}/logs"/>
2133
2134 <!-- os specific tidy-ups -->
2135 <!-- linux, mac -->
2136 <if><bool><istrue value="${current.os.isunix}"/></bool>
2137 <delete><fileset dir="." includes="*.bat"/></delete>
2138 <if><bool><isset property="with.gli.and.gems"/></bool>
2139 <delete><fileset dir="gli" includes="*.bat"/></delete>
2140 </if>
2141 <delete><fileset dir="gs2build" includes="*.bat"/></delete>
2142 <delete><fileset dir="bin/script" includes="*.bat"/></delete>
2143 <delete file="${basedir}/gs2build/win32cfg.h"/>
2144 <delete file="${basedir}/gs2build/win32.mak"/>
2145 <delete dir="${basedir}/winutil"/>
2146 <delete failonerror="false"><fileset dir="${lib.jni}" includes="*.dll"/></delete>
2147
2148 <!-- windows -->
2149 <else><if><bool><istrue value="${current.os.iswindows}"/></bool>
2150 <delete><fileset dir="." includes="*.sh,*.bash,*.csh"/></delete>
2151 <if><bool><isset property="with.gli.and.gems"/></bool>
2152 <delete><fileset dir="gli" includes="*.sh,*.bash,*.csh"/></delete>
2153 </if>
2154 <delete><fileset dir="gs2build" includes="*.sh,*.bash,*.csh"/></delete>
2155 <delete><fileset dir="bin/script" includes="*.sh,*.bash,*.csh"/></delete>
2156 </if></else></if>
2157
2158 </target>
2159
2160 <!-- fix up executable permissions for binary release -->
2161 <target name="fix-execute-permissions">
2162 <echo>Setting binaries to executable</echo>
2163 <chmod perm="775">
2164 <fileset dir="."><patternset refid="greenstone3.executables"/></fileset>
2165 </chmod>
2166 </target>
2167
2168 <!-- fix up executable permissions for source code release -->
2169 <target name="fix-execute-permissions-source">
2170 <chmod perm="775">
2171 <fileset dir="."><patternset refid="greenstone3.source.executables"/></fileset>
2172 </chmod>
2173 </target>
2174
2175
2176 <!-- ============= tweaks for making compilation static ========== -->
2177 <target name="tweak-makefiles" depends="init" if="compile.static">
2178 <antcall target="rtftohtml-add-static" />
2179 </target>
2180
2181 <target name="rtftohtml-add-static" depends="init" if="collection.building.enabled">
2182 <rsr file="${gs2build.home}/build-src/packages/rtftohtml/rtftohtml_src/Makefile" pattern="-o rtftohtml(.{2})EXEEXT(.{1})" replacement="-o rtftohtml$1EXEEXT$2 -static" />
2183 </target>
2184
2185</project>
2186
Note: See TracBrowser for help on using the repository browser.