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

Last change on this file since 30013 was 30013, checked in by ak19, 9 years ago

ant restart calls both stop and start, which tries to stop and start both the derby and the tomcat, all in a single ant command. Derby stop and start both do a check to see if the derbyserver is running and set a property. Tomcat stop and start similarly both do a check to see if the tomcat server is running and set a property. Since a property is set obly once during a single ant invocation, two properties are needed to store the stop check and the start check for tomcat respectively, and two properties are needed for the stop check and start check for the derbyserver respectively.

File size: 141.2 KB
RevLine 
[15124]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=".">
[20241]10 <echo>os.name: ${os.name}</echo>
[15124]11
[15799]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"/>
[19930]22 <taskdef name="rsr" classname="org.greenstone.anttasks.RegexSearchReplace" classpathref="project.classpath"/>
[21196]23 <!--<taskdef name="svn" classname="org.tigris.subversion.svnant.SvnTask" classpathref="project.classpath"/>-->
[15799]24 <taskdef name="if" classname="ise.antelope.tasks.IfTask" classpathref="project.classpath"/>
[26115]25 <taskdef name="for" classname="net.sf.antcontrib.logic.ForTask" classpathref="project.classpath"/>
[23854]26 <taskdef name="stringutil" classname="ise.antelope.tasks.StringUtilTask" classpathref="project.classpath"/>
27
[19930]28
[15799]29 <!-- ===================== Property Definitions =========================== -->
30
31 <!--
[15124]32
33 Each of the following properties are used in the build script.
34 Values for these properties are set by the first place they are
35 defined, from the following list:
36
37 * Definitions on the "ant" command line (ant -Dfoo=bar compile).
38
39 * Definitions from a "build.properties" file in the top level
[15799]40 source directory of this application.
[15124]41
42 * Definitions from a "build.properties" file in the user's
[15799]43 home directory.
[15124]44
45 * Default definitions in this build.xml file.
46
47 You will note below that property values can be composed based on the
48 contents of previously defined properties. This is a powerful technique
49 that helps you minimize the number of changes required when your development
50 environment is modified. Note that property composition is allowed within
51 "build.properties" files as well as in the "build.xml" script.
52
[15799]53 -->
[18227]54
[27834]55 <property name="os.linux" value="Linux"/>
56 <property name="os.mac" value="Mac OS X"/>
57 <property name="os.solaris" value="SunOS"/>
58 <property name="os.unix" value="${os.linux},${os.mac},${os.solaris}"/>
[28042]59 <property name="os.windows" value="Windows 95,Windows 98,Windows 2000,Windows 2003,Windows XP,Windows NT,Windows ME,Windows Vista,Windows 7,Windows Server 2008,Windows Server 2008 R2"/> <!-- check this!!!-->
[27834]60
61 <!-- this is true for linux and macs -->
62 <condition property="current.os.isunix">
63 <os family="unix"/>
64 </condition>
65
66 <condition property="current.os.isunixnotmac">
67 <and>
68 <os family="unix"/>
69 <not>
70 <os family="mac"/>
71 </not>
72 </and>
73 </condition>
74
75 <condition property="current.os.ismac">
76 <os family="mac"/>
77 </condition>
78
79 <condition property="current.os.iswindows">
80 <os family="windows"/>
81 </condition>
82
[18227]83 <!-- create build.properties if it has not been created yet -->
84 <if>
85 <bool><not><available file="build.properties"/></not></bool>
86 <copy file="build.properties.in" tofile="build.properties"/>
87 </if>
88
[18515]89 <!-- create the packages dir if it has not been created yet -->
90 <mkdir dir="packages"/>
[15799]91
[15859]92 <!--the first three properties have to be put on the top to be used by build.properties-->
[19960]93 <property name="gs2build.home" value="${basedir}${file.separator}gs2build"/>
[15124]94 <property name="src.packages.home" value="${basedir}/src/packages"/>
[15859]95 <property name="flax.svn.root" value="http://svn.greenstone.org/flax"/>
[19878]96
[27860]97 <property name="solr-ext.home" value="${basedir}/ext/solr"/>
98
[15124]99 <property file="build.properties"/>
[16962]100 <if><bool><available file="${user.home}/build.properties"/></bool>
101 <property file="${user.home}/build.properties"/>
102 </if>
[15124]103
[20464]104 <!-- now we've read in properties, apply defaults -->
105 <property name="disable.collection.building" value="false"/>
106
[15124]107 <!-- get properties from the environment -->
108 <property environment="env"/>
[15799]109
[20127]110 <!-- get the filesets defining components and executables -->
[19975]111 <import file="resources/xml/components.xml"/>
[20127]112 <import file="resources/xml/executables.xml"/>
[15799]113
114 <!-- version properties for external packages -->
[20079]115 <!-- for Java versions < 1.4, we print out the message that Java is too old.
[25131]116 For Java 1.4, we use Tomcat 5.5, for Java5 and higher, we use Tomcat 7.0-->
[29578]117 <condition property="tomcat.version" value="apache-tomcat-5.5.25" else="apache-tomcat-7.0.57">
[20079]118 <equals arg1="1.4" arg2="${ant.java.version}"/>
119 </condition>
[25131]120 <condition property="tomcat.version.major" value="5" else="7">
[20079]121 <equals arg1="1.4" arg2="${ant.java.version}"/>
122 </condition>
[22320]123 <condition property="privileged.attribute" value="privileged='true'" else="">
[25384]124 <equals arg1="7" arg2="${tomcat.version.major}"/>
[22320]125 </condition>
[20233]126
[29845]127 <!-- external access to the GS3 pages or not
128 https://tomcat.apache.org/tomcat-7.0-doc/config/valve.html -->
129 <condition property="allowed.IPs"
130 value=".*"
131 else="(127\.0\.0\.1|::1|0:0:0:0:0:0:0:1)">
132 <matches pattern="^(1|true|yes)$" string="${server.external.access}"/>
133 </condition>
134
[22405]135 <property name="axis.zip.version" value="axis-bin-1_4.zip"/>
136 <property name="axis.dir.version" value="axis-1_4"/>
[24077]137 <property name="sqlite.targz.version" value="sqlite-autoconf-3070602.tar.gz"/>
[15799]138
[15124]139 <property name="build.home" value="${basedir}/build"/>
140 <property name="src.home" value="${basedir}/src/java"/>
[27829]141
142 <if><bool><istrue value="${gsdl3home.isreadonly}"/></bool>
143 <property name="readonly-packages.home" value="${basedir}/packages"/>
144 <property name="packages.home" value="${gsdl3.writablehome}/packages"/>
145 <else>
146 <property name="packages.home" value="${basedir}/packages"/>
147 </else>
148 </if>
149
150 <!-- this may be set in build.properties, e.g. if you move the web dir to
151 tomcats webapps directory -->
[15124]152 <property name="web.home" value="${basedir}/web"/>
[27829]153 <property name="web.writablehome" value="${gsdl3.writablehome}"/>
154
[15124]155 <!-- jar files needed by applets go here -->
156 <property name="web.applet" value="${web.home}/applet"/>
[20085]157
[15124]158 <!-- jar files needed by the servlet (and extra ones) go here -->
159 <property name="web.lib" value="${web.home}/WEB-INF/lib"/>
[27829]160 <property name="web.writablelib" value="${web.writablehome}/WEB-INF/lib"/>
[15124]161 <!-- other files needed by the servlet go here -->
162 <property name="web.classes" value="${web.home}/WEB-INF/classes"/>
[27829]163 <property name="web.writableclasses" value="${web.writablehome}/WEB-INF/classes"/>
164
165 <if>
166 <bool><istrue value="${gsdl3home.isreadonly}"/></bool>
167 <echo>Greenstone3 home directory is read-only</echo>
168 <echo> => Writable area is: ${gsdl3.writablehome}</echo>
169
170 <condition property="gsdl3.writablehome.already-exists">
171 <available file="${gsdl3.writablehome}" type="dir"/>
172 </condition>
173
174 <if>
175 <bool><not><istrue value="${gsdl3.writablehome.already-exists}"/></not></bool>
176
177 <!-- set up writable area -->
178 <echo>No previous Greenstone home writable area detected</echo>
179 <echo> => Setting up area</echo>
180 <mkdir dir="${gsdl3.writablehome}"/>
181 <mkdir dir="${gsdl3.writablehome}/packages"/>
182 <mkdir dir="${gsdl3.writablehome}/logs"/>
[27860]183 <mkdir dir="${gsdl3.writablehome}/ext/solr"/>
[27829]184
185 <chmod perm="a+rwx" dir="${gsdl3.writablehome}"/>
186 <chmod perm="a+rwx" dir="${gsdl3.writablehome}/packages"/>
187 <chmod perm="a+rwx" dir="${gsdl3.writablehome}/logs"/>
[27860]188 <chmod perm="a+rwx" dir="${gsdl3.writablehome}/ext/solr"/>
[27829]189
190 <!-- copy over packages tomcat folder -->
191
192 <if>
[27834]193 <bool><istrue value="${current.os.iswindows}"/></bool>
[27829]194 <copy todir="${gsdl3.writablehome}/packages/tomcat"
195 preservelastmodified="true"
196 failonerror="true" >
197 <fileset dir="${readonly-packages.home}/tomcat" includes="**"/>
198 </copy>
199
200 <else>
201 <!-- else assume Unix -->
202 <!-- Can't go through the OS-independant <copy> task as it fails to preserve exec permissions -->
203 <echo>Copying to ${gsdl3.writablehome}/packages/tomcat</echo>
204 <exec executable="cp" output="/dev/null" spawn="false">
205 <arg value="-r"/>
206 <arg value="${readonly-packages.home}/tomcat"/>
207 <arg value="${gsdl3.writablehome}/packages/."/>
208 </exec>
209
210 </else>
211 </if>
212
213 <echo> => Copying Greenstone's web/WEB-INF to writable area</echo>
214 <copy todir="${gsdl3.writablehome}/WEB-INF"
215 preservelastmodified="true"
216 failonerror="true" >
217 <fileset dir="${web.home}/WEB-INF" includes="**"/>
218 </copy>
219
220 <copy todir="${gsdl3.writablehome}"
221 preservelastmodified="true"
222 failonerror="true" >
223 <fileset dir="${web.home}" includes="index.html"/>
224 </copy>
225
226 </if>
227 </if>
228
229
[15124]230 <!--- flax: the WordNet home -->
231 <property name="wn.home" value="${web.home}/WEB-INF/classes/flax/WordNet"/>
232
233 <!-- jni libraries and java wrappers go here -->
234 <property name="lib.jni" value="${basedir}/lib/jni"/>
[19878]235
236 <!-- other jar files needed for installation (but not runtime) go here -->
[18110]237 <property name="lib.java" value="${basedir}/lib/java"/>
[15799]238
[15124]239 <property name="javadocs" value="${basedir}/docs/javadoc"/>
240
241 <property name="app.name" value="greenstone3"/>
242 <property name="app.path" value="/${app.name}"/>
243
[18124]244 <property name="admin.dir" value="${basedir}/admin"/>
[15124]245
[27829]246 <!-- defaults - set these on the command line or in build.properties or
247 they will take these default values-->
[15124]248 <property name="app.version" value="trunk"/>
249 <property name="branch.path" value="trunk"/>
250 <property name="branch.revision" value="HEAD"/>
251
252 <!--constants -->
253 <property name="svn.root" value="http://svn.greenstone.org"/>
254
[19878]255 <!-- catalina home is set to tomcat basedir if already installed, otherwise
[27829]256 use greenstone's tomcat -->
[20085]257 <condition property="catalina.home" value="${tomcat.installed.path}" else="${packages.home}/tomcat">
[15124]258 <and>
259 <isset property="tomcat.installed.path"/>
260 <not>
[27829]261 <equals arg1="" arg2="${tomcat.installed.path}"/>
[15124]262 </not>
263 </and>
264 </condition>
[25131]265
[15124]266
[19933]267 <!-- is there a better way to do this?? what about solaris?? -->
[26765]268 <condition property="os.bin.dir" value="${cross.os}">
269 <istrue value="${compile.cross}"/>
270 </condition>
[19933]271 <condition property="os.bin.dir" value="windows">
272 <os family="windows"/>
273 </condition>
274 <condition property="os.bin.dir" value="darwin">
275 <os family="mac"/>
276 </condition>
277 <condition property="os.bin.dir" value="linux">
278 <and>
279 <os family="unix"/>
280 <not>
281 <os family="mac"/>
282 </not>
283 </and>
284 </condition>
[26765]285
[19933]286
[19878]287 <condition property="collection.building.disabled">
[20464]288 <and>
289 <isset property="disable.collection.building"/>
290 <istrue value="${disable.collection.building}"/>
291 </and>
[19878]292 </condition>
293
[15124]294 <condition property="collection.building.enabled">
295 <not>
[20464]296 <istrue value="${disable.collection.building}"/>
[15124]297 </not>
298 </condition>
[19878]299
[15124]300 <condition property="collection.building.enabled.windows">
301 <and>
[20464]302 <istrue value="${collection.building.enabled}"/>
[15124]303 <isset property="current.os.iswindows"/>
304 </and>
305 </condition>
306
307 <condition property="collection.building.enabled.unix">
308 <and>
[20464]309 <istrue value="${collection.building.enabled}"/>
[15124]310 <isset property="current.os.isunix"/>
311 </and>
312 </condition>
[22847]313
[20085]314 <condition property="static.arg" value="LDFLAGS=-static" else=" ">
[19931]315 <isset property="compile.static"/>
316 </condition>
[22184]317
[27199]318 <!-- If building a release then we want to adjust environment variables so that the support library can be seen during compilation -->
[27185]319 <if><bool><isset property="use.gnomelib.ext"/></bool>
[23599]320 <property name="gnome-lib-dir" value="${basedir}/ext/gnome-lib-minimal/${os.bin.dir}"/>
[22845]321
[23599]322 <if><bool><isset property="env.CFLAGS"/></bool>
323 <property name="cflags.arg" value="CFLAGS=&quot;-I${gnome-lib-dir}/include ${env.CFLAGS}&quot;"/>
324 <else>
325 <property name="cflags.arg" value="CFLAGS=&quot;-I${gnome-lib-dir}/include&quot;"/>
326 </else>
327 </if>
[22845]328
[23599]329 <if><bool><isset property="env.CPPFLAGS"/></bool>
330 <property name="cppflags.arg" value="CPPFLAGS=&quot;-I${gnome-lib-dir}/include ${env.CPPFLAGS}&quot;"/>
331 <else>
332 <property name="cppflags.arg" value="CPPFLAGS=&quot;-I${gnome-lib-dir}/include&quot;"/>
333 </else>
334 </if>
[22847]335
[23599]336 <if><bool><isset property="env.CXXFLAGS"/></bool>
337 <property name="cxxflags.arg" value="CXXFLAGS=&quot;-I${gnome-lib-dir}/include ${env.CXXFLAGS}&quot;"/>
338 <else>
339 <property name="cxxflags.arg" value="CXXFLAGS=&quot;-I${gnome-lib-dir}/include&quot;"/>
340 </else>
341 </if>
342
343 <if><bool><isset property="env.LDFLAGS"/></bool>
344 <property name="ldflags.arg" value="LDFLAGS=&quot;-L${gnome-lib-dir}/lib ${env.LDFLAGS}&quot;"/>
345 <else>
346 <property name="ldflags.arg" value="LDFLAGS=&quot;-L${gnome-lib-dir}/lib&quot;"/>
347 </else>
348 </if>
349
350 <if><bool><isset property="env.PATH"/></bool>
351 <property name="path.arg" value="PATH=&quot;${gnome-lib-dir}/bin:${env.PATH}&quot;"/>
352 <else>
353 <property name="path.arg" value="PATH=&quot;${gnome-lib-dir}/bin&quot;"/>
354 </else>
355 </if>
356
357 <if><bool><isset property="env.PKG_CONFIG_PATH"/></bool>
358 <property name="pcpath.arg" value="PKG_CONFIG_PATH=&quot;${gnome-lib-dir}/lib/pkgconfig:${env.PKG_CONFIG_PATH}&quot;"/>
359 <else>
360 <property name="pcpath.arg" value="PKG_CONFIG_PATH=&quot;${gnome-lib-dir}/lib/pkgconfig&quot;"/>
361 </else>
362 </if>
363
[23611]364 <if><bool><equals arg1="${os.bin.dir}" arg2="darwin"/></bool>
365 <if><bool><isset property="env.DYLD_LIBRARY_PATH"/></bool>
366 <property name="ldlpath.arg" value="DYLD_LIBRARY_PATH=&quot;${gnome-lib-dir}/lib:${env.DYLD_LIBRARY_PATH}&quot;"/>
367 <else>
368 <property name="ldlpath.arg" value="DYLD_LIBRARY_PATH=&quot;${gnome-lib-dir}/lib&quot;"/>
369 </else>
370 </if>
[23599]371 <else>
[23611]372 <if><bool><isset property="env.LD_LIBRARY_PATH"/></bool>
373 <property name="ldlpath.arg" value="LD_LIBRARY_PATH=&quot;${gnome-lib-dir}/lib:${env.LD_LIBRARY_PATH}&quot;"/>
374 <else>
375 <property name="ldlpath.arg" value="LD_LIBRARY_PATH=&quot;${gnome-lib-dir}/lib&quot;"/>
376 </else>
377 </if>
[23599]378 </else>
379 </if>
380
381 <else>
382 <if><bool><isset property="env.CFLAGS"/></bool>
383 <property name="cflags.arg" value="CFLAGS=&quot;${env.CFLAGS}&quot;"/>
384 <else>
385 <property name="cflags.arg" value=" "/>
386 </else>
387 </if>
388
389 <if><bool><isset property="env.CPPFLAGS"/></bool>
390 <property name="cppflags.arg" value="CPPFLAGS=&quot;${env.CPPFLAGS}&quot;"/>
391 <else>
392 <property name="cppflags.arg" value=" "/>
393 </else>
394 </if>
395
396 <if><bool><isset property="env.CXXFLAGS"/></bool>
397 <property name="cxxflags.arg" value="CXXFLAGS=&quot;${env.CXXFLAGS}&quot;"/>
398 <else>
399 <property name="cxxflags.arg" value=" "/>
400 </else>
401 </if>
402
403 <if><bool><isset property="env.LDFLAGS"/></bool>
404 <property name="ldflags.arg" value="LDFLAGS=&quot;${env.LDFLAGS}&quot;"/>
405 <else>
406 <property name="ldflags.arg" value=" "/>
407 </else>
408 </if>
409
410 <if><bool><isset property="env.PATH"/></bool>
411 <property name="path.arg" value="PATH=&quot;${env.PATH}&quot;"/>
412 <else>
413 <property name="path.arg" value=" "/>
414 </else>
415 </if>
416
417 <if><bool><isset property="env.PKG_CONFIG_PATH"/></bool>
418 <property name="pcpath.arg" value="PKG_CONFIG_PATH=&quot;${env.PKG_CONFIG_PATH}&quot;"/>
419 <else>
420 <property name="pcpath.arg" value=" "/>
421 </else>
422 </if>
423
[23611]424 <if><bool><equals arg1="${os.bin.dir}" arg2="darwin"/></bool>
425 <if><bool><isset property="env.DYLD_LIBRARY_PATH"/></bool>
426 <property name="ldlpath.arg" value="DYLD_LIBRARY_PATH=&quot;${env.DYLD_LIBRARY_PATH}&quot;"/>
427 <else>
428 <property name="ldlpath.arg" value=" "/>
429 </else>
430 </if>
[23599]431 <else>
[23611]432 <if><bool><isset property="env.LD_LIBRARY_PATH"/></bool>
433 <property name="ldlpath.arg" value="LD_LIBRARY_PATH=&quot;${env.LD_LIBRARY_PATH}&quot;"/>
434 <else>
435 <property name="ldlpath.arg" value=" "/>
436 </else>
437 </if>
438 </else>
[23599]439 </if>
440 </else>
[22868]441 </if>
[23611]442 <property name="allargs" value="${cflags.arg} ${cxxflags.arg} ${cppflags.arg} ${ldflags.arg} ${path.arg} ${ldlpath.arg} ${pcpath.arg}"/>
[22868]443
[26765]444 <condition property="opt.cross.build"
445 value="--build=${cross.build}" else=" ">
446 <isset property="cross.build"/>
447 </condition>
448
449
450 <condition property="cross.configure.args"
[26806]451 value="--host=${cross.host} ${opt.cross.build} CPP=${cross.host}-cpp CC=${cross.host}-gcc CXX=${cross.host}-g++ LD=${cross.host}-ld AR=${cross.host}-ar RANLIB=${cross.host}-ranlib STRIP=${cross.host}-strip ${cross.configure.extraargs} crossOS=${cross.os}" else=" ">
[26765]452 <istrue value="${compile.cross}"/>
453 </condition>
454
[28311]455 <!-- if we're told to work with gnome-lib, or if there's a gnome-lib-minimal that the user
456 has placed in gs2build/ext, then compile gs2build after sourcing gnome-lib environment -->
457 <condition property="opt.gnomelibext.arg"
458 value="--enable-gnome-lib-ext" else=" ">
459 <or>
460 <available file="${gs2build.home}/ext/gnome-lib-minimal" type="dir"/>
461 <istrue value="${use.gnomelib.ext}"/>
462 <istrue value="${checkout.gnomelib.ext}"/>
463 </or>
464 </condition>
465
[27028]466<!-- if you want to disable wvware, do so here: set the value (not else) field to contain minus-minus-disable-wvware -->
[28311]467 <condition property="gs2.opt.args" value="${opt.gnomelibext.arg} " else="--disable-mg --disable-mgpp --disable-accentfold --disable-gdbm --disable-sqlite">
[22184]468 <istrue value="${with.jni}"/>
469 </condition>
470 <condition property="gs2.compile.target" value="with-jni" else="without-jni">
471 <istrue value="${with.jni}"/>
472 </condition>
473 <condition property="gs2.install.target" value="install-with-jni" else="install-without-jni">
474 <istrue value="${with.jni}"/>
475 </condition>
476 <condition property="gs2.windows.enablejni" value="1" else="0">
477 <istrue value="${with.jni}"/>
478 </condition>
[22976]479 <condition property="gs2.windows.enablemg" value="1" else="0">
480 <istrue value="${with.jni}"/>
481 </condition>
482 <condition property="gs2.windows.enablemgpp" value="1" else="0">
483 <istrue value="${with.jni}"/>
484 </condition>
485 <!-- Should accent folding not also be set here ?? -->
486 <condition property="gs2.windows.usegdbm" value="1" else="0">
487 <istrue value="${with.jni}"/>
488 </condition>
489 <condition property="gs2.windows.usesqlite" value="1" else="0">
490 <istrue value="${with.jni}"/>
491 </condition>
[19931]492
[15799]493 <!-- where is search4j tool -->
[20085]494 <condition property="search4j.exec" value="bin/search4j.exe" else="bin/search4j">
[15799]495 <isset property="current.os.iswindows"/>
[15136]496 </condition>
497
[15799]498
[15124]499 <!-- ============= Base dirs for each package and component ============ -->
500 <property name="src.gsdl3.home" value="${src.home}/org/greenstone/gsdl3"/>
501 <property name="anttasks.home" value="${src.home}/org/greenstone/anttasks"/>
502 <property name="gli.home" value="${basedir}/gli"/>
503 <property name="javagdbm.home" value="${src.packages.home}/javagdbm"/>
504
[21347]505 <condition property="common.src.home" value="${basedir}/common-src" else="${gs2build.home}${file.separator}common-src">
[20464]506 <istrue value="${disable.collection.building}"/>
[19871]507 </condition>
[19931]508
509 <property name="build.src.home" value="${gs2build.home}/build-src"/>
[19871]510 <property name="gdbm.home" value="${common.src.home}/packages/gdbm"/>
511 <property name="mg.home" value="${common.src.home}/indexers/mg"/>
512 <property name="mgpp.home" value="${common.src.home}/indexers/mgpp"/>
513 <property name="lucene.home" value="${common.src.home}/indexers/lucene-gs"/>
514
[15799]515 <!-- ==================== Compilation Control Options ==================== -->
[15124]516
[15799]517 <!--
[15124]518
519 These properties control option settings on the Javac compiler when it
520 is invoked using the <javac> task.
521
522 compile.debug Should compilation include the debug option?
523
524 compile.deprecation Should compilation include the deprecation option?
525
526 compile.optimize Should compilation include the optimize option?
527
[15799]528 -->
[15124]529
530 <property name="compile.debug" value="true"/>
531 <property name="compile.deprecation" value="true"/>
532 <property name="compile.optimize" value="true"/>
[29515]533 <property name="compile.encoding" value="UTF8"/>
[28137]534 <property name="compile.includeantruntime" value="false"/> <!-- to get rid of annoying 'ant' warning -->
[15124]535
[15799]536 <!--
[15124]537
538 Rather than relying on the CLASSPATH environment variable, Ant includes
539 features that makes it easy to dynamically construct the classpath you
540 need for each compilation. The example below constructs the compile
541 classpath to include the servlet.jar file, as well as the other components
542 that Tomcat makes available to web applications automatically, plus anything
543 that you explicitly added.
544
[15799]545 -->
[20079]546
547 <!-- All elements that Tomcat 5 exposes to applications -->
548 <path id="tomcat5">
[20085]549 <pathelement location="${catalina.home}/common/classes"/>
550 <fileset dir="${catalina.home}/common/endorsed">
551 <include name="*.jar"/>
552 </fileset>
553 <fileset dir="${catalina.home}/common/lib">
554 <include name="*.jar"/>
555 </fileset>
556 <!-- seems to be empty, but will leave in just in case some people make use of this to customise their install: -->
557 <pathelement location="${catalina.home}/shared/classes"/>
558 <fileset dir="${catalina.home}/shared/lib">
559 <include name="*.jar"/>
560 </fileset>
[20079]561 </path>
562
[25131]563 <!-- All elements that Tomcat 7 exposes to applications -->
564 <path id="tomcat7">
[20085]565 <fileset dir="${catalina.home}/lib">
566 <include name="*.jar"/>
567 </fileset>
[20079]568 </path>
569
[15124]570 <path id="compile.classpath">
571 <!-- Include all jar files and libraries in our jni lib directory -->
572 <pathelement location="${lib.jni}"/>
573 <fileset dir="${lib.jni}">
574 <include name="*.jar"/>
575 </fileset>
576 <!-- Include all jar files in our web lib directory -->
577 <pathelement location="${web.lib}"/>
578 <fileset dir="${web.lib}">
579 <include name="*.jar"/>
580 </fileset>
581
[18110]582 <pathelement location="${lib.java}"/>
583 <fileset dir="${lib.java}">
584 <include name="*.jar"/>
585 </fileset>
[15124]586
587 <!-- include the jar files from the source packages -->
588 <!-- mg and mgpp get installed into lib/jni but they may not be there yet
589 so we add them in by name -->
[22184]590 <!-- *** is there any way to make this optional, based on ${with.jni}? -->
[15124]591 <pathelement location="${lib.jni}/mg.jar"/>
592 <pathelement location="${lib.jni}/mgpp.jar"/>
593
[20085]594 <!-- Include all elements that Tomcat exposes to applications -->
595 <path refid="tomcat${tomcat.version.major}"/>
596
[15124]597 </path>
598
599 <path id="local.tomcat.classpath">
600 <!-- explicitly include the jni java wrappers in the classpath -->
601 <pathelement location="${lib.jni}"/>
602 <fileset dir="${lib.jni}">
603 <include name="*.jar"/>
604 </fileset>
[25095]605
[27829]606 <pathelement location="${web.writablelib}"/>
607 <fileset dir="${web.writablelib}">
[29903]608 <include name="derbyclient.jar"/> <!--<include name="derby.jar"/>-->
[25095]609 </fileset>
[15124]610 </path>
611
[29903]612 <path id="derby.server.classpath">
613 <pathelement location="${web.lib}/derbynet.jar"/>
614 <pathelement location="${web.lib}/derby.jar"/>
615 </path>
616
617
[15124]618 <path id="local.tomcat.path">
619 <pathelement location="${basedir}/bin/script"/>
620 <pathelement location="${basedir}/bin"/>
621 <pathelement location="${lib.jni}"/>
622 <pathelement path="${env.PATH}"/>
623 <pathelement path="${env.Path}"/>
624 <pathelement path="${wn.home}/bin"/>
625 </path>
626
627 <target name="test-setup">
628 <echo>ant java version=${ant.java.version}</echo>
629 <echo>is unix : ${current.os.isunix}</echo>
630 <echo>is mac : ${current.os.ismac}</echo>
631 <echo>is unixnotmac : ${current.os.isunixnotmac}</echo>
632 <echo>is windows : ${current.os.iswindows}</echo>
633 <echo>os.unix: ${os.unix}</echo>
634 </target>
[27369]635
636 <!-- Appends the current env to the file environment.txt. For debugging env vars used by the release-kit. -->
[29341]637 <target name="write-env" description="Writes out the environment that this build.xml is executed in to file environment.txt. For debugging.">
[27369]638 <echo message="*****************ENVIRONMENT OUTPUT:****************${line.separator}" file="environment.txt" append="true" />
639
640 <if><bool><istrue value="${current.os.iswindows}"/></bool>
[29343]641 <exec executable="set" dir="${basedir}" failonerror="false" output="environment.txt" append="true">
642 <arg value="/c" />
643 <arg value="set" />
644 </exec>
[27369]645 <else>
646 <exec executable="env" dir="${basedir}" failonerror="false" output="environment.txt" append="true" />
647 </else>
648 </if>
649
650 <echo message="${line.separator}" file="environment.txt" append="true" />
651 </target>
652
[20085]653
[15799]654 <!-- ==================== Primary and Global Targets ============================= -->
[15124]655
[28904]656 <target name="prepare" depends="accept-properties,init,copy-dot-in-files,prepare-core,prepare-packages,prepare-common-src,prepare-collection-building,prepare-tomcat,prepare-axis,prepare-web,prepare-collections, prepare-flax"
[15124]657 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.">
658
659 <!-- make sure .sh files are executable -->
660 <chmod dir="${basedir}" perm="ugo+rx"
661 includes="*.sh"/>
662 <chmod dir="${basedir}/bin/script" perm="ugo+rx"
663 includes="*.sh,*.pl"/>
664 </target>
[16936]665
[19871]666 <!-- 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 -->
[28311]667 <!--before configuring build-src, make sure that gnome-lib is compiled up-->
[28611]668 <target name="install" depends="init,compile-imagemagick,compile-gnome-lib,install-common-src,install-collection-building,install-runtime,install-solr-ext,setup-for-eclipse,get-isisgdl"
[19843]669 description="Install Greenstone 3. Use this when you first checkout the code: 'ant prepare new-install'."/>
670
[19931]671 <target name="install-common-src" depends="init"
672 description="Install (configure, compile, install) only the common-src package (shared code from Greenstone 2). " >
[19894]673 <antcall target="configure-common-src"/>
674 <antcall target="compile-common-src"/>
675 <antcall target="install-auxiliary-jar-files"/>
676 <antcall target="install-jni-files"/>
677 </target>
[19878]678
[19894]679 <target name="install-collection-building" depends="init" if="collection.building.enabled"
680 description="Install (configure, compile, install) the Greenstone 2 collection building package." >
681 <antcall target="configure-collection-building"/>
[19931]682 <antcall target="tweak-makefiles" />
[19894]683 <antcall target="compile-collection-building"/>
684 </target>
685
[19878]686
[20209]687 <target name="install-runtime" depends="init,configure,configure-packages,configure-core,compile-web,compile-packages,compile-core,compile-classpath-jars"
[19878]688 description="Install (configure, compile, install) the runtime system. Needs either common-src or collection-building to have been installed first." />
689
690 <target name="svnupdate" depends="init,svnupdate-packages,svnupdate-core,svnupdate-common-src,svnupdate-collection-building,svnupdate-web"
[15124]691 description="Do a `svn update` for all sources. Doesn't recompile the code. You need to be online to run this."/>
692
693 <target name="configure" depends="init,configure-tomcat,configure-web"
[23855]694 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."/>
[15124]695
[20209]696 <target name="clean" depends="init,clean-packages,clean-core,clean-common-src,clean-collection-building,clean-classpath-jars"
[19878]697 description="Remove all old compiled code. Includes runtime and collection-building if necessary"/>
[15124]698
[20209]699 <target name="distclean" depends="init,distclean-packages,clean-core,distclean-common-src,distclean-collection-building,clean-classpath-jars"
[19878]700 description="Remove all compiled code and also any Makefiles etc generated during configure-c++. Includes runtime and collection-building as necessary"/>
[15799]701
[19878]702 <target name="update" depends="init,svnupdate,clean,install"
703 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'"/>
[15124]704
[23854]705
706 <target name="perl-for-building" depends="init">
707 <!-- uses perl.path if set in build.properties, otherwise try for
708 environment variable PERLPATH, and failing that assumes 'perl'
709 is on environment PATH -->
[23856]710 <!-- if, outside build.properties, we only set perl.path if we have gs2build/build-src (collection building), then we won't set perl.path in a (flax) binary, since it doesn't have build-src -->
[23857]711 <if><bool><available file="${gs2build.home}"/></bool>
[23854]712
713 <if><bool><not><isset property="perl.path"/></not></bool>
714
715 <if>
716 <bool>
717 <and>
718 <isset property="env.PERLPATH"/>
719 <not><equals arg1="${env.PERLPATH}" arg2=""/></not>
720 </and>
721 </bool>
[27859]722 <!-- set perlpath to env.PERLPATH.
723 This is the path to perl\bin that's found by findperl.bat when the server is launched
724 through GLI instead of the console.
725 For windows, this env.PERLPATH is the bin folder and needs a backslash at end, since it
726 will appear suffixed with "perl.exe" in the perl setting in packages\tomcat\config\web.xml.
727 This web.xml's path to perl is then used to find perl when running the perl scripts in the
728 cgi folder, so without a slash appended at this point it becomes "binperl" in web.xml, and
729 things will break when GLI launches the server on Windows and the online GS3 metadata editor
730 is used to save user-edited metadata. -->
731 <if><bool><istrue value="${current.os.iswindows}"/></bool>
732 <property name="perl.path" value="${env.PERLPATH}\"/>
733 <else>
734 <property name="perl.path" value="${env.PERLPATH}"/>
735 </else>
736 </if>
737
[23854]738 <else>
739 <echo>
[23896]740 Using PATH environment variable to locate Perl.
[23854]741 </echo>
742 <exec executable="which" os="${os.unix}" spawn="false" outputproperty="full.perl.path">
743 <arg value="perl" />
744 </exec>
745
[28044]746 <exec executable="${gs2build.home}/bin/windows/which" osfamily="windows" spawn="false" outputproperty="full.perl.path">
[23941]747 <arg value="perl" />
748 </exec>
[23896]749
[25640]750 <stringutil string="${full.perl.path}" property="partial.perl.path">
751 <replace regex="\/[^\/]*$" replacement="/" />
[23854]752 </stringutil>
[27484]753 <stringutil string="${partial.perl.path}" property="perl.path">
[25640]754 <replace regex="\\[^\\]*$" replacement="\\" />
755 </stringutil>
[23896]756 <if><bool><istrue value="${current.os.isunix}"/></bool>
757 <if><bool><not><equals arg1="${full.perl.path}" arg2="/usr/bin/perl"/></not></bool>
758 <echo>
[23854]759 Non-standard location of Perl found: ${full.perl.path}
760 Set the environment variable PERLPATH or the perl.path property in
[27484]761 build.properties to explicitly control the version of Perl used.
[23896]762 </echo>
763 </if>
[23854]764 </if>
765 </else>
766 </if>
767 </if>
768
769 <!-- full.perl.path is for pretty-printing only, e.g. used in target "start" -->
770 <if><bool><isset property="perl.path"/></bool>
771 <property name="full.perl.path" value="${perl.path}${file.separator}perl"/>
772 <else>
773 <property name="full.perl.path" value="perl (will use the enviroment variable PATH to find this executable)"/>
774 </else>
775 </if>
[23857]776
777 <!-- gs2build not available, perl.path -->
778 <else>
779 <property name="perl.path" value=""/>
780 </else>
781 </if>
[27484]782 <stringutil string="${perl.path}" property="escaped.perl.path">
783 <replace regex="\\" replacement="\\\\" />
784 </stringutil>
[23854]785 </target>
786
[25549]787 <target name="get-default-servlet-url">
[29903]788 <echo>http://${tomcat.server}:${tomcat.port}${app.path}${server.default.servlet}</echo>
[29988]789 </target>
790
791 <target name="check-derbyserver-running">
792 <condition property="derby.isrunning" value="true" else="false">
793 <!--<socket server="jdbc:derby://${derby.server}" port="${derby.server.port}"/>-->
794 <socket server="${derby.server}" port="${derby.server.port}"/><!-- like telnet machine port -->
795 </condition>
796 <echo>Derby is running: ${derby.isrunning}</echo>
[29903]797 </target>
[29988]798
[30013]799 <!-- Need a copy of the check-derby-running target with a distinct property, because ant restart runs
800 both stop and start, which stop and start derby respectively. Both need check the derby socket.
801 Because each property can be set only once during an invocation with ant, ant restart will need
802 two check-derbyserver properties, one for each derby check. -->
803 <target name="check-derbyserver-started">
804 <condition property="derby.isstarted" value="true" else="false">
805 <socket server="${derby.server}" port="${derby.server.port}"/>
806 </condition>
807 <echo>Derby is running: ${derby.isstarted}</echo>
808 </target>
809
810
811 <!-- Unused -->
[29988]812 <target name="start-derby-java" depends="check-derbyserver-running">
813 <if><bool><not><istrue value="${derby.isrunning}"/></not></bool>
814 <echo>Launching derby on ${derby.server}:${derby.server.port}...</echo>
815 <java classname="org.apache.derby.drda.NetworkServerControl" fork="true" spawn="true" clonevm="true">
816 <arg value="start"/>
817 <classpath refid="derby.server.classpath"/>
818 </java>
819 <else>
820 <echo>Derby server ALREADY RUNNING on ${derby.server}:${derby.server.port}</echo>
821 </else>
822 </if>
823 </target>
[29903]824
[30013]825 <target name="start-derby" depends="check-derbyserver-started">
826 <if><bool><not><istrue value="${derby.isstarted}"/></not></bool>
827 <echo>About to launch derby on ${derby.server}:${derby.server.port}</echo>
828 <antcall target="force-start-derby"/>
829 <else>
830 <echo>Derby networked server ALREADY RUNNING on ${derby.server}:${derby.server.port}</echo>
831 </else>
832 </if>
833 </target>
834
[29903]835 <!-- Using derby 10.1.2.1
836 See db-derby-10.1.2.1-bin/docs/html/adminguide/index.html -->
[30013]837 <target name="force-start-derby">
[29988]838 <property name="derby.server.classpath.prop" refid="derby.server.classpath" />
839
840 <exec executable="java" spawn="true"><!-- failonerror="true"-->
841 <env key="CLASSPATH" path="${derby.server.classpath.prop}"/>
842 <arg value="org.apache.derby.drda.NetworkServerControl"/>
843 <arg value="start"/>
844 <arg value="-p"/>
845 <arg value="${derby.server.port}"/>
846 </exec>
[30013]847
[29903]848 </target>
849
[29988]850 <target name="force-stop-derby">
[29903]851 <java classname="org.apache.derby.drda.NetworkServerControl">
852 <arg value="shutdown"/>
853 <classpath refid="derby.server.classpath"/>
854 </java>
855 </target>
856
[29988]857 <target name="stop-derby" description="Shutdown derby server only if running" depends="check-derbyserver-running"><!-- if="${derby.isrunning}" checks if true or false only from ant 1.8 on -->
858 <if><bool><istrue value="${derby.isrunning}"/></bool>
859 <!--<echo>Derby is |${derby.isrunning}| running</echo>-->
860 <antcall target="force-stop-derby"/>
861 <else>
862 <echo>Derby is not running</echo>
863 </else>
864 </if>
865 </target>
866
[29903]867 <target name="start" depends="init,configure-tomcat,configure-web,configure-solr-ext,start-derby,start-tomcat"
[15124]868 description="Startup the Tomcat server." >
[15799]869 <echo>${app.name} (${app.version}) server running using Apache Tomcat and Java</echo>
[16936]870 <echo>Tomcat: ${catalina.home}</echo>
871 <echo>Java : ${java.home}</echo>
[23849]872 <if><bool><available file="${build.src.home}"/></bool>
873 <echo>Perl : ${full.perl.path}</echo>
874 </if>
[23936]875 <if><bool><isset property="install.flax"/></bool>
876 <property name="url" value="http://${tomcat.server}:${tomcat.port}${app.path}/flax"/>
877 <else>
878 <property name="url" value="http://${tomcat.server}:${tomcat.port}${app.path}/"/>
879 </else>
880 </if>
881 <echo>URL : ${url}</echo>
[15799]882 <!-- assuming that index.html is not needed here -->
[26033]883
884 <!--Now write out the url with oaiserver suffix as the baseURL property in OAIConfig.xml-->
[29268]885 <available file="${basedir}/resources/oai/OAIConfig.xml" property="oaiconfig.present"/>
[26033]886 <antcall target="init-oaiconfig">
887 <param name="url" value="${url}"/>
888 </antcall>
[15124]889 </target>
890
[26033]891 <target name="init-oaiconfig" if="oaiconfig.present">
[27829]892 <echo>Writing out baseURL ${url}oaiserver to ${web.writableclasses}/OAIConfig.xml</echo>
[29268]893 <copy file="${basedir}/resources/oai/OAIConfig.xml" tofile="${web.writableclasses}/OAIConfig.xml"/>
[28136]894 <rsr verbosity="1" file="${web.writableclasses}/OAIConfig.xml" pattern="&lt;baseURL&gt;.*&lt;/baseURL&gt;" replacement="&lt;baseURL&gt;${url}oaiserver&lt;/baseURL&gt;" />
[26033]895 </target>
896
[29903]897 <target name="stop" depends="init,stop-tomcat,stop-derby"
[15124]898 description="Shutdown the Tomcat server."/>
899
900 <target name="restart" description="Shutdown and restart Tomcat" depends="init,stop,start"/>
901
[15799]902 <!-- =========== Help targets =================================== -->
[15124]903
904 <property name="install-command" value="ant [options] prepare install"/>
905
906 <target name="usage" description="Print a help message">
907 <echo message=" Execute 'ant -projecthelp' for a list of targets."/>
908 <echo message=" Execute 'ant -help' for Ant help."/>
[23849]909 <echo>
910 To install Greenstone3, run '${install-command}'.
911 There are properties defined in build.properties. The install
912 process will ask you if these properties are set correctly.
913 To avoid this prompt, use the '-Dproperties.accepted=yes'
914 option.
915 To log the output, use the '-logfile build.log' option.
916 The README.txt file has more information about the ant targets
917 and install process.
[15124]918 </echo>
919 </target>
920
921 <target name="help" depends="usage" description="Print a help message"/>
922
923 <target name="debug" depends="init" description="Display all the currently used properties">
924 <echoproperties/>
925 </target>
926
[15799]927 <!-- ====== initialization and setup targets ================== -->
[15124]928
929 <target name="accept-properties" unless="properties.accepted">
930 <input addproperty="properties.ok" validargs="y,n">The following properties (among others) are being used from a build.properties file found in this directory:
[15799]931 tomcat.server=${tomcat.server}
932 tomcat.port=${tomcat.port}
933 tomcat.installed.path=${tomcat.installed.path} (this is the location of Tomcat's base dir if it is already installed)
934 proxy.host=${proxy.host}
935 proxy.port=${proxy.port}
[19878]936 disable.collection.building=${disable.collection.building}
[19910]937 If these are not acceptable, please change them and rerun this target. Continue [y/n]?
[15124]938 </input>
939 <condition property="do.abort">
940 <equals arg1="n" arg2="${properties.ok}"/>
941 </condition>
942 <fail if="do.abort">Build aborted by user. Please change your properties settings and re-run the target</fail>
943 </target>
[20085]944
[15124]945 <!-- this sets up some initial properties -->
946 <target name="init">
947
[20085]948 <!-- has the gs3-setup script been run?? -->
949 <condition property="gs3-setup-not-done">
950 <not>
951 <isset property="env.GSDL3HOME"/>
952 </not>
953 </condition>
954
[20092]955 <!--<fail if="gs3-setup-not-done" message="please run 'gs3-setup' (Windows) or 'source gs3-setup.sh' (Linux/Mac) before running this target."/>-->
[20085]956
[15124]957 <condition property="java.too.old">
958 <or>
[16936]959 <equals arg1="1.1" arg2="${ant.java.version}"/>
960 <equals arg1="1.2" arg2="${ant.java.version}"/>
961 <equals arg1="1.3" arg2="${ant.java.version}"/>
[15124]962 </or>
963 </condition>
[20208]964 <fail if="java.too.old" message="You need Java 1.4 or greater to run Greenstone 3"/>
[15124]965
966 <available file="${basedir}/gli" property="gli.present"/>
[19878]967 <available file="${basedir}/common-src" property="common.src.present"/>
[15124]968 <available file="${basedir}/gs2build" property="gs2build.present"/>
[28643]969 <available file="${gnome-lib-dir}" property="gnome-lib.present"/>
[15124]970
971 <condition property="tomcat.islocal">
972 <or>
[16936]973 <not><isset property="tomcat.installed.path"/></not>
974 <equals arg1="" arg2="${tomcat.installed.path}"/>
[15124]975 </or>
976 </condition>
977
[15799]978 <echo>tomcat.port = ${tomcat.port}</echo>
[15124]979
980 <condition property="proxy.present">
981 <and>
[16936]982 <isset property="proxy.host"/>
983 <not><equals arg1="" arg2="${proxy.host}"/></not>
[15124]984 </and>
985 </condition>
986
[20235]987 <!--
[20290]988 the next block checks if the bundled tomcat is present in the 'packages' directory,
[25131]989 and checks for the lethal combination of tomcat 7 and java 1.4. Test for
[20290]990 tomcat6 is based on the presence of a file inserted by greenstone into the tomcat6
991 download, as there is no other surefire way to check tomcat version under java 1.4
[20235]992 -->
993 <condition property="packages.tomcat.ispresent" value="true" else="false">
994 <available file="packages/tomcat"/>
995 </condition>
[25131]996 <condition property="packages.tomcat.istomcat7" value="true" else="false">
997 <available file="packages/tomcat/tomcat7.txt"/>
[20290]998 </condition>
[20235]999 <if>
1000 <bool>
[20290]1001 <and>
1002 <istrue value="${packages.tomcat.ispresent}"/>
[25131]1003 <istrue value="${packages.tomcat.istomcat7}"/>
[20290]1004 <equals arg1="1.4" arg2="${ant.java.version}"/>
1005 </and>
[20235]1006 </bool>
[20290]1007 <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>
[20235]1008 </if>
1009
[15124]1010 </target>
1011
1012 <target name="setup-proxy" depends="init" if="proxy.present">
1013 <condition property="ask.user">
1014 <or>
[16936]1015 <equals arg1="" arg2="${proxy.user}"/>
1016 <equals arg1="" arg2="${proxy.password}"/>
[15124]1017 </or>
1018 </condition>
[19878]1019
[15124]1020 <getuserandpassword message="Using proxy: ${proxy.host}:${proxy.port}" if="ask.user" username="${proxy.user}" userproperty="proxy.username" pwordproperty="proxy.password"/>
1021 <mysetproxy proxyhost="${proxy.host}" proxyport="${proxy.port}" proxyuser="${proxy.username}" proxypassword="${proxy.password}"/>
1022 </target>
1023
[28904]1024 <target name="copy-dot-in-files" depends="init"
1025 description="Copies all resources .in files to version without the .in suffix" >
1026 <if><bool><available file="${basedir}/resources/tomcat/greenstone3.xml"/></bool>
1027 <copy file="${basedir}/resources/tomcat/greenstone3.xml" tofile="${basedir}/resources/tomcat/greenstone3.xml.backup" overwrite="true"/>
1028 </if>
1029
1030 <copy file="${basedir}/resources/tomcat/greenstone3.xml.in" tofile="${basedir}/resources/tomcat/greenstone3.xml" overwrite="true"/>
1031 <if><bool><available file="${basedir}/resources/tomcat/server_tomcat5.xml"/></bool>
1032 <copy file="${basedir}/resources/tomcat/server_tomcat5.xml" tofile="${basedir}/resources/tomcat/server_tomcat5.xml.backup" overwrite="true"/>
1033 </if>
1034 <copy file="${basedir}/resources/tomcat/server_tomcat5.xml.in" tofile="${basedir}/resources/tomcat/server_tomcat5.xml" overwrite="true"/>
1035 <if><bool><available file="${basedir}/resources/tomcat/server_tomcat7.xml"/></bool>
1036 <copy file="${basedir}/resources/tomcat/server_tomcat7.xml" tofile="${basedir}/resources/tomcat/server_tomcat7.xml.backup" overwrite="true"/>
1037 </if>
1038 <copy file="${basedir}/resources/tomcat/server_tomcat7.xml.in" tofile="${basedir}/resources/tomcat/server_tomcat7.xml" overwrite="true"/>
1039 <if><bool><available file="${basedir}/resources/tomcat/web.xml"/></bool>
1040 <copy file="${basedir}/resources/tomcat/web.xml" tofile="${basedir}/resources/tomcat/web.xml.backup" overwrite="true"/>
1041 </if>
1042 <copy file="${basedir}/resources/tomcat/web.xml.in" tofile="${basedir}/resources/tomcat/web.xml" overwrite="true"/>
1043 <if><bool><available file="${basedir}/resources/oai/OAIConfig.xml"/></bool>
1044 <copy file="${basedir}/resources/oai/OAIConfig.xml" tofile="${basedir}/resources/oai/OAIConfig.xml.backup" overwrite="true"/>
1045 </if>
1046 <copy file="${basedir}/resources/oai/OAIConfig.xml.in" tofile="${basedir}/resources/oai/OAIConfig.xml" overwrite="true"/>
[28907]1047 <if><bool><available file="${basedir}/resources/cgi/gsdl3site.cfg"/></bool>
1048 <copy file="${basedir}/resources/cgi/gsdl3site.cfg" tofile="${basedir}/resources/cgi/gsdl3site.cfg.backup" overwrite="true"/>
1049 </if>
1050 <copy file="${basedir}/resources/cgi/gsdl3site.cfg.in" tofile="${basedir}/resources/cgi/gsdl3site.cfg" overwrite="true"/>
[28937]1051 <if><bool><available file="${basedir}/resources/web/global.properties"/></bool>
1052 <copy file="${basedir}/resources/web/global.properties" tofile="${basedir}/resources/web/global.properties.backup" overwrite="true"/>
[28908]1053 </if>
[28937]1054 <copy file="${basedir}/resources/web/global.properties.in" tofile="${basedir}/resources/web/global.properties" overwrite="true"/>
1055 <if><bool><available file="${basedir}/resources/web/log4j.properties"/></bool>
1056 <copy file="${basedir}/resources/web/log4j.properties" tofile="${basedir}/resources/web/log4j.properties.backup" overwrite="true"/>
[28908]1057 </if>
[28937]1058 <copy file="${basedir}/resources/web/log4j.properties.in" tofile="${basedir}/resources/web/log4j.properties" overwrite="true"/>
[28904]1059 </target>
[15799]1060 <!-- ========== Web app Targets ================================ -->
1061
[20089]1062 <target name="prepare-web" depends="init">
[27829]1063 <mkdir dir="${web.writablehome}/applet"/>
1064 <mkdir dir="${web.writablehome}/logs"/>
1065 <mkdir dir="${web.writablehome}/logs/tmp"/>
[15124]1066 </target>
1067
[24607]1068 <!-- 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.
1069 The test for whether we need it assumes we won't be trying to compile GS3 against Java versions less than 1.4. -->
[15124]1070 <target name="configure-java-version" depends="init"
[15139]1071 description="Activates or deactivates some jar libraries as needed depending on your java version">
[15136]1072
[15799]1073 <available property="have.xalan.jar" file="${web.lib}/xalan.jar"/>
[15124]1074 <condition property="need.xalan.jar">
[15799]1075 <or>
[24607]1076 <not><equals arg1="1.4" arg2="${ant.java.version}"/></not>
[15799]1077 </or>
1078 </condition>
[15136]1079
[15799]1080 <!-- if they have xalan.jar but dont need it -->
1081 <if>
1082 <bool>
[16936]1083 <and>
1084 <isset property="have.xalan.jar"/>
1085 <not><isset property="need.xalan.jar"/></not>
1086 </and>
[15799]1087 </bool>
1088 <antcall target="deactivate-xalan-jar"/>
1089 </if>
[15136]1090
[15799]1091 <!-- if they need xalan.jar but dont have it -->
1092 <if>
1093 <bool>
[16936]1094 <and>
1095 <not><isset property="have.xalan.jar"/></not>
1096 <isset property="need.xalan.jar"/>
1097 </and>
[15799]1098 </bool>
1099 <antcall target="activate-xalan-jar"/>
1100 </if>
[15136]1101
[15124]1102 </target>
1103
[15139]1104 <target name="activate-xalan-jar">
[15799]1105 <echo>activating xalan.jar</echo>
[15124]1106 <copy file="${web.lib}/xalan.jar.tmp" tofile="${web.lib}/xalan.jar"/>
[20085]1107 <if>
1108 <bool>
1109 <and>
1110 <isset property="current.os.ismac"/>
1111 <available file="${catalina.home}/common/endorsed" type="dir"/>
1112 </and>
1113 </bool>
1114 <copy file="${web.lib}/xalan.jar.tmp" tofile="${catalina.home}/common/endorsed/xalan.jar"/>
[15799]1115 </if>
[15124]1116 </target>
[15035]1117
[15139]1118 <target name="deactivate-xalan-jar">
[15799]1119 <echo>deactivating xalan.jar</echo>
[15124]1120 <delete file="${web.lib}/xalan.jar"/>
[20089]1121 <!-- should we be deleting common/endorsed/xalan.jar on mac?? -->
[15124]1122 </target>
1123
[15837]1124
[25491]1125 <target name="prepare-collections" depends="init"
1126 description="Unpack all the collections from their svn zipped versions">
[16936]1127 <property name="collect.dir" value="${web.home}/sites/localsite/collect"/>
[17008]1128 <property name="index.zip" value="index.zip"/>
[15799]1129
[16936]1130 <echo message="installing collections..."/>
1131 <antcall target="gs2mgdemo-install"/>
1132 <antcall target="gs2mgppdemo-install"/>
1133 <antcall target="gberg-install"/>
[25214]1134 <antcall target="lucene-jdbm-demo-install"/>
[16936]1135 </target>
[15837]1136
[16936]1137 <target name="gs2mgdemo-prepare" if="collect.dir">
1138 <property name="gs2mgdemo.dir" value="${collect.dir}/gs2mgdemo"/>
[15799]1139
[16936]1140 <condition property="gs2mgdemo.present">
1141 <and>
[15837]1142 <available file="${gs2mgdemo.dir}/${index.zip}"/>
[16936]1143 </and>
1144 </condition>
1145 </target>
[15799]1146
[17008]1147 <target name="gs2mgdemo-install" if="gs2mgdemo.present" depends="gs2mgdemo-prepare">
1148 <unzip dest="${gs2mgdemo.dir}" src="${gs2mgdemo.dir}/${index.zip}" />
[16936]1149 <echo>collection gs2mgdemo installed</echo>
1150 </target>
[15799]1151
[16936]1152 <target name="gs2mgppdemo-prepare" if="collect.dir">
1153 <property name="gs2mgppdemo.dir" value="${collect.dir}/gs2mgppdemo"/>
[15837]1154
[16936]1155 <condition property="gs2mgppdemo.present">
1156 <and>
[15837]1157 <available file="${gs2mgppdemo.dir}/${index.zip}"/>
[16936]1158 </and>
1159 </condition>
1160 </target>
[15799]1161
[16936]1162 <target name="gs2mgppdemo-install" if="gs2mgppdemo.present" depends="gs2mgppdemo-prepare">
[17008]1163 <unzip dest="${gs2mgppdemo.dir}" src="${gs2mgppdemo.dir}/${index.zip}" />
[16936]1164 <echo>collection gs2mgppdemo installed</echo>
1165 </target>
[15799]1166
[16936]1167 <target name="gberg-prepare" if="collect.dir">
1168 <property name="gberg.dir" value="${collect.dir}/gberg"/>
[17008]1169 <available file="${gberg.dir}/index/${index.zip}" property="gberg.present"/>
[16936]1170 </target>
[15799]1171
[16936]1172 <target name="gberg-install" if="gberg.present" depends="gberg-prepare">
[19878]1173 <unzip dest="${gberg.dir}/index" src="${gberg.dir}/index/${index.zip}"/>
[16936]1174 <echo>collection gberg installed</echo>
1175 </target>
[15799]1176
[25214]1177 <target name="lucene-jdbm-demo-prepare" if="collect.dir">
1178 <property name="lucene-jdbm-demo.dir" value="${collect.dir}/lucene-jdbm-demo"/>
[25491]1179 <available file="${lucene-jdbm-demo.dir}/${index.zip}" property="lucene-jdbm-demo.present"/>
[25214]1180 </target>
1181
1182 <target name="lucene-jdbm-demo-install" if="lucene-jdbm-demo.present" depends="lucene-jdbm-demo-prepare">
[25491]1183 <unzip dest="${lucene-jdbm-demo.dir}" src="${lucene-jdbm-demo.dir}/${index.zip}"/>
[25214]1184 <echo>collection lucene-jdbm-demo installed</echo>
1185 </target>
1186
[27846]1187
[28115]1188 <target name="install-solr-ext" depends="init" >
[28044]1189 <exec executable="ant.bat" osfamily="windows" dir="${solr-ext.home}" spawn="false">
[27846]1190 <arg value="add-service"/>
1191 </exec>
[27849]1192 <exec executable="ant" os="${os.unix}" dir="${solr-ext.home}" spawn="false">
1193 <arg value="add-service"/>
1194 </exec>
[27846]1195 <antcall target="solr-jdbm-demo-install"/>
1196 </target>
1197
1198 <target name="solr-jdbm-demo-prepare" if="collect.dir">
1199 <property name="solr-jdbm-demo.dir" value="${collect.dir}/solr-jdbm-demo"/>
1200 <available file="${solr-jdbm-demo.dir}/${index.zip}" property="solr-jdbm-demo.present"/>
1201 </target>
1202
1203 <target name="solr-jdbm-demo-install" if="solr-jdbm-demo.present" depends="solr-jdbm-demo-prepare">
1204 <unzip dest="${solr-jdbm-demo.dir}" src="${solr-jdbm-demo.dir}/${index.zip}"/>
1205 <echo>collection solr-jdbm-demo installed</echo>
1206 </target>
1207
[28612]1208 <!-- Until 64 bit Linux and Mac (Lion) machines can generate a working IsisGdl,
1209 use the ones generated on a 32 bit Linux and Mac (Leopard), respectively -->
[28952]1210 <target name="get-isisgdl" if="${current.os.isunix}">
[28613]1211 <exec executable="uname" dir="${basedir}" failonerror="false"
[28612]1212 outputproperty="uname.val">
1213 <arg value="-m"/>
1214 </exec>
1215
1216 <if><bool><equals arg1="${uname.val}" arg2="x86_64"/></bool>
1217 <echo>Bitness: ${uname.val}</echo>
1218 <if><bool><contains string="${os.bin.dir}" substring="darwin" casesensitive="false"/></bool>
1219 <get src="http://www.greenstone.org/caveat-emptor/IsisGdl.macleopard"
1220 dest="${basedir}/gs2build/bin/${os.bin.dir}/IsisGdl"/>
1221 </if>
1222 <if><bool><contains string="${os.bin.dir}" substring="linux" casesensitive="false"/></bool>
1223 <get src="http://www.greenstone.org/caveat-emptor/IsisGdl.bin32"
1224 dest="${basedir}/gs2build/bin/${os.bin.dir}/IsisGdl"/>
1225 </if>
[28611]1226 <chmod file="${basedir}/gs2build/bin/${os.bin.dir}/IsisGdl" perm="755"/>
1227 </if>
1228 </target>
[27846]1229
[27484]1230 <target name="set-perl-shebangs" depends="perl-for-building">
1231 <if>
1232 <bool>
1233 <and><isset property="perl.path"/>
1234 <not><equals arg1="${perl.path}" arg2=""/></not>
1235 </and>
1236 </bool>
1237
1238 <if><bool><istrue value="${current.os.iswindows}"/></bool>
[27486]1239 <property name="perl.exec" value="${perl.path}perl.exe"/>
[27484]1240 <else>
[27486]1241 <property name="perl.exec" value="${perl.path}perl"/>
[27484]1242 </else>
1243 </if>
1244
1245 <!--<echo>**** PERLPATH: ${perl.path}</echo>-->
[28158]1246 <echo>Setting perl shebangs to Perl Exec: ${perl.exec}</echo>
[27484]1247
1248 <!-- set the shebangs in the cgi files to point to the correct perlpath -->
[27829]1249 <if>
1250 <bool><not><equals arg1="${web.home}" arg2="${web.writablehome}"></equals></not></bool>
1251 <mkdir dir="${web.writablehome}"/>
1252 <copy file="${web.home}/WEB-INF/cgi/gliserver.pl" tofile="${web.writablehome}/WEB-INF/cgi/gliserver.pl" overwrite="true"/>
1253 <copy file="${web.home}/WEB-INF/cgi/metadata-server.pl" tofile="${web.writablehome}/WEB-INF/cgi/metadata-server.pl" overwrite="true"/>
1254 <copy file="${web.home}/WEB-INF/cgi/checksum.pl" tofile="${web.writablehome}/WEB-INF/cgi/checksum.pl" overwrite="true"/>
1255 </if>
1256
[28136]1257 <rsr verbosity="1" file="${web.writablehome}/WEB-INF/cgi/gliserver.pl" pattern="^#!.*" replacement="#!${perl.exec} -w" lines="1"/>
1258 <rsr verbosity="1" file="${web.writablehome}/WEB-INF/cgi/metadata-server.pl" pattern="^#!.*" replacement="#!${perl.exec} -w" lines="1"/>
1259 <rsr verbosity="1" file="${web.writablehome}/WEB-INF/cgi/checksum.pl" pattern="^#!.*" replacement="#!${perl.exec} -w" lines="1"/>
[27484]1260 <else>
[27829]1261 <echo>WARNING: perl.path is empty. Unable to set the shebangs in the perl files in ${web.writablehome}/WEB-INF/cgi</echo>
[27484]1262 </else>
1263 </if>
1264 </target>
1265
[23854]1266 <target name="configure-web" depends="init,perl-for-building"
[15124]1267 description="Configure only the web app config files">
1268 <!-- we want a unix path in the global.properties file -->
1269 <pathconvert targetos="unix" property="src.gsdl3.home.unix">
1270 <path path="${web.home}"/>
1271 </pathconvert>
[27829]1272 <pathconvert targetos="unix" property="src.gsdl3.writablehome.unix">
1273 <path path="${web.writablehome}"/>
1274 </pathconvert>
[27484]1275
1276 <antcall target="set-perl-shebangs" inheritAll="true" />
[24868]1277
[25830]1278 <filter token="gsdlhome" value="${gs2build.home}"/>
1279 <filter token="gsdl3srchome" value="${basedir}"/>
[15124]1280 <filter token="gsdl3home" value="${src.gsdl3.home.unix}"/>
[27829]1281 <filter token="gsdl3writablehome" value="${src.gsdl3.writablehome.unix}"/>
[15124]1282 <filter token="gsdl3version" value="${app.version}"/>
1283 <filter token="tomcat.server" value="${tomcat.server}"/>
1284 <filter token="tomcat.port" value="${tomcat.port}"/>
[29977]1285 <filter token="derbyserver" value="${derby.server}"/>
[29903]1286 <filter token="derbyserver.port" value="${derby.server.port}"/>
[24868]1287 <filter token="perlpath" value="${escaped.perl.path}"/>
[27484]1288 <filter token="disable.collection.building" value="${disable.collection.building}"/>
[28907]1289 <copy file="${basedir}/resources/cgi/gsdl3site.cfg" tofile="${web.writablehome}/WEB-INF/cgi/gsdl3site.cfg" filtering="true" overwrite="true"/>
[28937]1290 <copy file="${basedir}/resources/web/global.properties" tofile="${web.writableclasses}/global.properties" filtering="true" overwrite="true"/>
1291 <copy file="${basedir}/resources/web/log4j.properties" tofile="${web.writableclasses}/log4j.properties" filtering="true" overwrite="true"/>
[27829]1292 <if><bool><istrue value="${gsdl3home.isreadonly}"/></bool>
1293 <!-- uncomment the writablehome properties -->
[28136]1294 <rsr verbosity="1" file="${web.writableclasses}/global.properties" pattern="^#gsdl3\.(writable{1})?home" replacement="gsdl3.$1home" />
[27829]1295 </if>
1296 <chmod file="${web.writableclasses}/global.properties" perm="644"/>
1297 <chmod file="${web.writableclasses}/log4j.properties" perm="644"/>
[15124]1298 </target>
1299
1300 <target name="compile-web" depends="init">
1301 <javac srcdir="${web.classes}"
1302 destdir="${web.classes}"
[28137]1303 includeantruntime="${compile.includeantruntime}"
[15124]1304 debug="${compile.debug}"
1305 deprecation="${compile.deprecation}"
[29515]1306 optimize="${compile.optimize}"
1307 encoding="${compile.encoding}">
[16936]1308 <classpath><path refid="compile.classpath"/></classpath>
[15124]1309 </javac>
1310 </target>
1311
[20209]1312 <target name="compile-classpath-jars" depends="init">
1313 <if><bool><available file="admin/cp.mf"/></bool>
1314 <jar destfile="admin/cp.jar" manifest="admin/cp.mf"/>
1315 </if>
1316 <if><bool><available file="${lib.java}/cp.mf"/></bool>
1317 <jar destfile="${lib.java}/cp.jar" manifest="${lib.java}/cp.mf"/>
1318 </if>
1319 <if><bool><available file="${lib.jni}/cp.mf"/></bool>
1320 <jar destfile="${lib.jni}/cp.jar" manifest="${lib.jni}/cp.mf"/>
1321 </if>
1322 <if><bool><available file="${web.lib}/cp.mf"/></bool>
1323 <jar destfile="${web.lib}/cp.jar" manifest="${web.lib}/cp.mf"/>
1324 </if>
1325 <jar destfile="cp.jar">
1326 <manifest>
[20211]1327 <attribute name="Class-Path" value="server.jar admin/cp.jar lib/java/cp.jar lib/jni/cp.jar web/WEB-INF/lib/cp.jar"/>
[20209]1328 </manifest>
1329 </jar>
1330 </target>
1331
1332 <target name="clean-classpath-jars" depends="init">
1333 <delete file="admin/cp.jar"/>
1334 <delete file="${lib.java}/cp.jar"/>
1335 <delete file="${lib.jni}/cp.jar"/>
1336 <delete file="${web.lib}/cp.jar"/>
1337 <delete file="cp.jar"/>
1338 </target>
1339
1340
[15799]1341 <target name="svnupdate-web" unless="nosvn.mode">
[20930]1342 <exec executable="svn">
1343 <arg value="update"/>
[27829]1344 <arg value="${web.writablehome}"/>
[20930]1345 <arg value="-r"/><arg value="${branch.revision}"/>
1346 </exec>
[15799]1347 </target>
[15124]1348
1349 <target name="update-web" depends="init,svnupdate-web,configure-web"
1350 description="update only the web stuff (config files)"/>
1351
[15799]1352 <!-- ======================= Tomcat Targets ========================== -->
[15124]1353
1354 <!-- this target downloads and installs Tomcat -->
[25131]1355 <!-- we download tomcat (version 7 for Java 1.5 and later, version 5 for Java 1.4 plus the 1.4 compatibility package). -->
[20089]1356 <target name="prepare-tomcat" depends="init,setup-proxy" if="tomcat.islocal"
[25131]1357 description="downloads the appropriate version of Tomcat (Tomcat 5 if using Java 1.4, Tomcat 7 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/7 then you need to run prepare-tomcat">
1358 <if>
[16951]1359 <bool>
1360 <not><available file="${packages.home}/tomcat/.flagfile"/></not>
1361 </bool>
1362
1363 <!-- check that packages dir is there -->
1364 <mkdir dir="${packages.home}"/>
1365 <get src="http://www.greenstone.org/gs3files/${tomcat.version}.zip"
1366 dest="${packages.home}/${tomcat.version}.zip"
1367 usetimestamp="true"/>
1368 <unzip src="${packages.home}/${tomcat.version}.zip"
1369 dest="${packages.home}"/>
[20085]1370
1371 <!-- If we are using Java 1.4, we'd be using tomcat 5.5 in which case
1372 we would need to have the tomcat compat package to work with Java 1.4-->
1373 <if>
1374 <bool><equals arg1="1.4" arg2="${ant.java.version}"/></bool>
1375 <get src="http://www.greenstone.org/gs3files/${tomcat.version}-compat.zip"
1376 dest="${packages.home}/${tomcat.version}-compat.zip"
1377 usetimestamp="true"/>
1378 <unzip src="${packages.home}/${tomcat.version}-compat.zip"
1379 dest="${packages.home}"/>
1380 </if>
1381
[16951]1382 <!-- delete any existing tomcat -->
1383 <delete dir="${packages.home}/tomcat"/>
1384 <move todir="${packages.home}/tomcat">
1385 <fileset dir="${packages.home}/${tomcat.version}"/>
1386 </move>
[25133]1387 <!--
[16951]1388 <copy file="${basedir}/resources/tomcat/setclasspath.bat"
1389 tofile="${packages.home}/tomcat/bin/setclasspath.bat"
1390 overwrite="true"/>
1391 <copy file="${basedir}/resources/tomcat/setclasspath.sh"
1392 tofile="${packages.home}/tomcat/bin/setclasspath.sh"
1393 overwrite="true"/>
[25133]1394 -->
[16951]1395 <!-- make sure we have execute permission for the .sh files -->
1396 <chmod dir="${packages.home}/tomcat/bin" perm="ugo+rx"
1397 includes="*.sh"/>
1398
1399 <echo file="${packages.home}/tomcat/.flagfile">
1400 the timestamp of this file is the time that tomcat was extracted from the zip files.
1401 it is used to figure out whether the files need to be refreshed or not in `ant prepare-tomcat`
1402 </echo>
1403
[20089]1404 <!-- this is not strictly a prepare tomcat thing, but if one changes
1405 Java, then they need to change tomcat as well, so might as well call
1406 it here -->
1407 <antcall target="configure-java-version"/>
[16951]1408 <else>
1409 <echo>Tomcat has been prepared, will not prepare</echo>
1410 <echo>Delete ${packages.home}/tomcat/.flagfile to force refresh</echo>
1411 </else>
1412
1413 </if>
1414
[15124]1415 </target>
1416
1417 <target name="configure-tomcat" depends="init,configure-tomcat-local,configure-tomcat-external"/>
1418
[25570]1419 <target name="configure-tomcat-local" depends="init,perl-for-building" if="tomcat.islocal">
[15124]1420 <!-- re-setup the server.xml file -->
[20079]1421 <copy file="${basedir}/resources/tomcat/server_tomcat${tomcat.version.major}.xml"
1422 tofile="${packages.home}/tomcat/conf/server.xml" overwrite="true">
[15124]1423 <filterset>
[16936]1424 <filter token="port" value="${tomcat.port}"/>
1425 <filter token="shutdown-port" value="${tomcat.shutdown.port}"/>
[15124]1426 </filterset>
1427 </copy>
[28297]1428 <!-- set up the greenstone3 context, it may have a custom name specified in build.properties -->
1429 <if><bool><not><equals arg1="greenstone3" arg2="${custom.context}"></equals></not></bool>
1430 <copy file="${basedir}/resources/tomcat/greenstone3.xml" tofile="${basedir}/resources/tomcat/${custom.context}.xml" overwrite="true"/>
1431 </if>
1432 <copy file="${basedir}/resources/tomcat/${custom.context}.xml" tofile="${packages.home}/tomcat/conf/Catalina/localhost/${custom.context}.xml" overwrite="true">
[15124]1433 <filterset>
[16936]1434 <filter token="gsdl3webhome" value="${web.home}"/>
[27829]1435 <filter token="gsdl3webwritablehome" value="${web.writablehome}"/>
[29845]1436 <filter token="privilegedattribute" value="${privileged.attribute}"/>
1437 <filter token="allowedIPs" value="${allowed.IPs}"/>
[29977]1438 <filter token="derbyserver" value="${derby.server}"/>
[29903]1439 <filter token="derbyserverport" value="${derby.server.port}"/>
[15124]1440 </filterset>
1441 </copy>
[28297]1442 <if>
1443 <bool>
1444 <and>
1445 <available file="${packages.home}/tomcat/conf/Catalina/localhost/greenstone3.xml"/>
1446 <not><equals arg1="greenstone3" arg2="${custom.context}"></equals></not>
1447 </and>
1448 </bool>
1449 <delete file="${packages.home}/tomcat/conf/Catalina/localhost/greenstone3.xml"/>
1450 </if>
[25570]1451
[27860]1452 <!-- set up the greenstone3 web.xml file -->
1453 <copy file="${basedir}/resources/tomcat/web.xml" tofile="${packages.home}/tomcat/conf/web.xml" overwrite="true">
1454 <filterset>
1455 <filter token="perlpath" value="${perl.path}"/>
1456 </filterset>
1457 </copy>
[15124]1458 </target>
[28297]1459
[15124]1460 <target name="configure-tomcat-external" depends="init" unless="tomcat.islocal">
1461 <!-- re-setup the server.xml file -->
1462 <!-- need to edit the config file, or do we get the user to do this???-->
1463 </target>
[26495]1464
[27860]1465 <target name="configure-solr-ext" depends="init" >
1466 <!-- re-setup the web/ext/solr/solr.xml file -->
[28178]1467 <copy file="${web.home}/ext/solr/solr.xml.in"
[27866]1468 tofile="${gsdl3.writablehome}/ext/solr/solr.xml" filtering="true" overwrite="true">
[27860]1469 <filterset>
1470 <filter token="gsdl3.home" value="${src.gsdl3.home.unix}"/>
1471 <filter token="gsdl3.writablehome" value="${src.gsdl3.writablehome.unix}"/>
1472 </filterset>
1473 </copy>
1474 </target>
[22551]1475
[26495]1476 <!-- This target runs tomcat's "bin/catalina.bat(.sh) jpda start"
1477 to allow debugging the running GS3 server in Eclipse. See the instructions at
1478 http://www.wikijava.org/wiki/Debugging_a_servlet_with_tomcat_and_Eclipse_tutorial
1479 on how to use this with eclipse
1480 -->
1481 <target name="debug-start-tomcat" description="Startup Tomcat for debugger" depends="init" if="tomcat.islocal">
1482 <property name="tomcat.classpath" refid="local.tomcat.classpath"/>
1483 <property name="tomcat.path" refid="local.tomcat.path"/>
1484
1485 <if><bool>
1486 <isset property="fedora.maxpermsize"/></bool>
1487 <property name="catalina.opts" value="-Djava.util.prefs.syncInterval=2000000 -DGSDL3HOME=$GSDL3HOME -DGSDLOS=$GSDLOS -DPATH=$PATH -Xmx400M ${fedora.maxpermsize}"/>
1488 <else>
1489 <property name="catalina.opts" value="-Djava.util.prefs.syncInterval=2000000 -DGSDL3HOME=$GSDL3HOME -DGSDLOS=$GSDLOS -DPATH=$PATH -Xmx400M"/>
1490 </else>
1491 </if>
1492
[27829]1493 <echo file="${catalina.home}/bin/setenv.bat">set CLASSPATH=${tomcat.classpath}</echo>
1494 <echo file="${catalina.home}/bin/setenv.sh">export CLASSPATH=${tomcat.classpath}</echo>
[26495]1495
1496 <exec executable="${catalina.home}/bin/catalina.sh" os="${os.unix}" dir="${catalina.home}/bin" spawn="false">
1497 <arg value="jpda" />
1498 <arg value="start" />
1499 <env key="JPDA_ADDRESS" value="8000"/> <!-- for debugging Tomcat in Eclipse -->
1500 <env key="JPDA_TRANSPORT" value="dt_socket"/> <!-- for debugging Tomcat in Eclipse -->
1501 <!--<env key="GSDLOS" value="linux"/> do we need this?? -->
1502 <env key="PATH" path="${tomcat.path}"/>
1503 <env key="CATALINA_OPTS" value="${catalina.opts}"/>
1504 <env key="CATALINA_HOME" value="${catalina.home}"/>
1505 <env key="CLASSPATH" path="${tomcat.classpath}"/>
1506 <env key="LD_LIBRARY_PATH" path="${env.LD_LIBRARY_PATH}:${lib.jni}"/>
1507 <env key="DYLD_LIBRARY_PATH" path="${env.DYLD_LIBRARY_PATH}:${lib.jni}:${gdbm.home}/lib"/> <!-- for mac os --> <!-- need gdbm here these days ??-->
1508 <env key="WNHOME" path="${wn.home}"/>
1509 <env key="FEDORA_HOME" path="${fedora.home}"/>
1510 </exec>
[28044]1511 <exec executable="${catalina.home}/bin/catalina.bat" osfamily="windows" dir="${catalina.home}/bin" spawn="true">
[26495]1512 <arg value="jpda" />
1513 <arg value="start" />
1514 <env key="JPDA_ADDRESS" value="8000"/> <!-- for debugging Tomcat in Eclipse -->
1515 <env key="JPDA_TRANSPORT" value="dt_socket"/> <!-- for debugging Tomcat in Eclipse -->
1516 <env key="GSDLOS" value="windows"/>
1517 <env key="GSDL3HOME" value="${basedir}"/>
1518 <env key="Path" path="${tomcat.path}"/>
1519 <env key="PATH" path="${tomcat.path}"/>
1520 <env key="CATALINA_OPTS" value="${catalina.opts}"/>
1521 <env key="CATALINA_HOME" value="${catalina.home}"/>
1522 <env key="CLASSPATH" path="${tomcat.classpath}"/>
1523 <env key="FEDORA_HOME" path="${fedora.home}"/>
1524 </exec>
1525 <!-- wait for the server to startup in case other targets need it running -->
1526 <waitfor maxwait="5" maxwaitunit="second">
1527 <and>
1528 <socket server="${tomcat.server}" port="${tomcat.port}"/>
1529 <http url="http://${tomcat.server}:${tomcat.port}${app.path}/index.html"/>
1530 </and>
1531 </waitfor>
1532 </target>
[23854]1533
[30013]1534 <target name="start-tomcat" description="Startup only Tomcat" depends="check-tomcat-started">
[23854]1535
[30013]1536 <if><bool><istrue value="${tomcat.isstarted}"/></bool>
[29988]1537 <echo>**************************************</echo>
[30012]1538 <echo>A WEB SERVER IS ALREADY RUNNING ON http://${tomcat.server}:${tomcat.port}. NOT STARTING.</echo>
[29988]1539 <echo>**************************************</echo>
1540 <else>
[30013]1541 <antcall target="force-start-tomcat"/>
1542 </else>
1543 </if>
1544 </target>
1545
1546 <!-- Another way: http://ptrthomas.wordpress.com/2006/03/25/how-to-start-and-stop-tomcat-from-ant/ -->
1547 <target name="force-start-tomcat" description="Startup only Tomcat" depends="init" if="tomcat.islocal">
1548
[15799]1549 <property name="tomcat.classpath" refid="local.tomcat.classpath"/>
[15124]1550 <property name="tomcat.path" refid="local.tomcat.path"/>
[25095]1551
[26359]1552 <if><bool>
1553 <isset property="fedora.maxpermsize"/></bool>
1554 <property name="catalina.opts" value="-Djava.util.prefs.syncInterval=2000000 -DGSDL3HOME=$GSDL3HOME -DGSDLOS=$GSDLOS -DPATH=$PATH -Xmx400M ${fedora.maxpermsize}"/>
1555 <else>
1556 <property name="catalina.opts" value="-Djava.util.prefs.syncInterval=2000000 -DGSDL3HOME=$GSDL3HOME -DGSDLOS=$GSDLOS -DPATH=$PATH -Xmx400M"/>
1557 </else>
1558 </if>
1559
[27829]1560 <echo file="${catalina.home}/bin/setenv.bat">set CLASSPATH=${tomcat.classpath}</echo>
1561 <echo file="${catalina.home}/bin/setenv.sh">export CLASSPATH=${tomcat.classpath}</echo>
[28043]1562
1563 <!-- using osfamily instead of testing os against os.windows list of recognised windows versions
[28044]1564 so that future windows versions are included. See http://simonharrer.wordpress.com/tag/osfamily/
1565 Can't use the osfamily test for linux-type machines as a group since osfamily=unix is separate from osfamily=mac,
1566 see http://ant-contrib.sourceforge.net/tasks/tasks/osfamily.html -->
[28043]1567
[21351]1568 <exec executable="${catalina.home}/bin/startup.sh" os="${os.unix}" dir="${catalina.home}/bin" spawn="false">
[15124]1569 <!--<env key="GSDLOS" value="linux"/> do we need this?? -->
1570 <env key="GSDL3HOME" value="${basedir}"/>
1571 <env key="PATH" path="${tomcat.path}"/>
1572 <env key="CATALINA_OPTS" value="${catalina.opts}"/>
1573 <env key="CATALINA_HOME" value="${catalina.home}"/>
1574 <env key="CLASSPATH" path="${tomcat.classpath}"/>
1575 <env key="LD_LIBRARY_PATH" path="${env.LD_LIBRARY_PATH}:${lib.jni}"/>
[22184]1576 <env key="DYLD_LIBRARY_PATH" path="${env.DYLD_LIBRARY_PATH}:${lib.jni}:${gdbm.home}/lib"/> <!-- for mac os --> <!-- need gdbm here these days ??-->
[15124]1577 <env key="WNHOME" path="${wn.home}"/>
[26433]1578 <env key="FEDORA_HOME" path="${fedora.home}"/>
[15124]1579 </exec>
[28043]1580 <exec executable="${catalina.home}/bin/startup.bat" osfamily="windows" dir="${catalina.home}/bin" spawn="true">
[15124]1581 <env key="GSDLOS" value="windows"/>
1582 <env key="GSDL3HOME" value="${basedir}"/>
1583 <env key="Path" path="${tomcat.path}"/>
1584 <env key="PATH" path="${tomcat.path}"/>
1585 <env key="CATALINA_OPTS" value="${catalina.opts}"/>
[16628]1586 <env key="CATALINA_HOME" value="${catalina.home}"/>
[15124]1587 <env key="CLASSPATH" path="${tomcat.classpath}"/>
[26433]1588 <env key="FEDORA_HOME" path="${fedora.home}"/>
[15124]1589 </exec>
1590 <!-- wait for the server to startup in case other targets need it running -->
1591 <waitfor maxwait="5" maxwaitunit="second">
1592 <and>
[16936]1593 <socket server="${tomcat.server}" port="${tomcat.port}"/>
1594 <http url="http://${tomcat.server}:${tomcat.port}${app.path}/index.html"/>
[15124]1595 </and>
1596 </waitfor>
[29988]1597
[15124]1598 </target>
1599
[22551]1600 <!--ant task http: http://www.jajakarta.org/ant/ant-1.6.1/docs/ja/manual/api/org/apache/tools/ant/taskdefs/condition/Http.html-->
1601 <target name="reconfigure" description="Reconfigure the message router">
1602 <waitfor maxwait="5" maxwaitunit="second">
1603 <http url="http://${tomcat.server}:${tomcat.port}${app.path}${server.default.servlet}?a=s&amp;sa=c"/>
1604 </waitfor>
1605 </target>
1606
1607 <!--Command-line args to Ant: http://www.jguru.com/faq/view.jsp?EID=471794-->
1608 <target name="reconfigure-collection" description="Reconfigure the collection">
1609 <waitfor maxwait="5" maxwaitunit="second">
1610 <http url="http://${tomcat.server}:${tomcat.port}${app.path}${server.default.servlet}?a=s&amp;sa=c&amp;sc=${collection}"/>
1611 </waitfor>
1612 </target>
1613
[15124]1614 <!-- windows: do we want to launch a webrowser?? -->
[25418]1615 <!-- shouldn't this test whether anything is running first?
1616 It's safer to always attempt to stop tomcat: that way we won't be dependent on the right time
1617 to check whether the server is stopped or still running before attempting to start again.
1618 This target, which was recently called force-stop-tomcat for a while but is back to being
1619 called stop-tomcat, now hides the Java exception output that appears whenever tomcat is already
1620 stopped as happens when stop-tomcat is called consecutively. -->
[25420]1621 <target name="force-stop-tomcat" description="Shutdown only Tomcat" depends="init" if="tomcat.islocal">
[21351]1622 <exec executable="${catalina.home}/bin/shutdown.sh" os="${os.unix}" dir="${catalina.home}/bin" spawn="false">
[26433]1623 <env key="FEDORA_HOME" path="${fedora.home}"/>
[15124]1624 <env key="CATALINA_HOME" value="${catalina.home}"/>
[25418]1625 <arg line=">/dev/null 2>&amp;1"/>
[15124]1626 </exec>
[28043]1627 <exec executable="${catalina.home}/bin/shutdown.bat" osfamily="windows" dir="${catalina.home}/bin" spawn="false">
[26433]1628 <env key="FEDORA_HOME" path="${fedora.home}"/>
[16628]1629 <env key="CATALINA_HOME" value="${catalina.home}"/>
[25418]1630 <arg line=">nul 2>&amp;1"/>
[25443]1631 </exec>
[15124]1632 </target>
1633
[25418]1634 <!-- Can also try the "socket" condition in place of the "http" condition
1635 And also use a <waitfor> in place of <condition>, such as:
1636 <waitfor maxwait="5" maxwaitunit="second" timeoutproperty="tomcat.isstopped"><http url="..."/></waitfor>
[25420]1637 The http URL resolves to host:port/greenstone3
1638 Condition uses <http/> rather than <socket/> for testing, since if the server was stopped, the socket
1639 might still be in use for some moments. We test the URL with the http condition since it's likelier to
1640 fail sooner if the server has indeed been stopped. -->
[25418]1641 <target name="check-tomcat-running">
1642 <condition property="tomcat.isrunning">
[27238]1643 <!--<http url="http://${tomcat.server}:${tomcat.port}${app.path}"/>-->
1644 <http url="http://${tomcat.server}:${tomcat.port}"/>
[25418]1645 </condition>
[25321]1646 </target>
[30013]1647
1648 <!-- Need a copy of the check-tomcat-running target with a distinct property, because ant restart runs
1649 both stop and start, both of which need to do tomcat checks. Each property can be set only once during
1650 an invocation with ant. So ant restart will need two properties to store each of the tomcat checks -->
1651 <target name="check-tomcat-started">
1652 <condition property="tomcat.isstarted">
1653 <http url="http://${tomcat.server}:${tomcat.port}"/>
1654 </condition>
1655 </target>
[25321]1656
[30013]1657
1658
[25443]1659 <!-- stop-tomcat checks if the tomcat server is already running. If it appears to be running
1660 (regardless of whether tomcat was just starting to shut down), this target calls force-stop-tomcat
1661 to issue the shutdown command to tomcat. Then it waits for at most 15 seconds for the server to
1662 actually stop by checking the socket at which tomcat listens every second, printing a warning
1663 at the end of the max wait time of 15 seconds if tomcat was still running. -->
1664 <target name="stop-tomcat" description="Shutdown only Tomcat if running" depends="check-tomcat-running" if="tomcat.isrunning">
[25321]1665 <antcall target="force-stop-tomcat"/>
[25443]1666
1667 <property name="wait.numchecks" value="15"/>
1668 <echo>Waiting for the server to shutdown... (${wait.numchecks} seconds max)</echo>
1669 <waitfor maxwait="${wait.numchecks}" maxwaitunit="second" checkevery="1" checkeveryunit="second" timeoutproperty="tomcat.timedout">
[25444]1670 <not><socket server="${tomcat.server}" port="${tomcat.port}"/></not>
[25443]1671 </waitfor>
1672
1673 <if>
1674 <bool>
1675 <isset property="${tomcat.timedout}"/>
1676 </bool>
1677 <property name="tomcat.isrunning" value="true"/>
1678 <echo>WARNING: Checked the socket ${wait.numchecks} times, but port ${tomcat.port} is still busy.</echo>
1679 <else>
1680 <echo>Tomcat is stopped.</echo>
1681 <property name="tomcat.isrunning" value="false"/>
1682 </else>
1683 </if>
[25420]1684 </target>
[25321]1685
[30013]1686 <target name="restart-tomcat" description="Shutdown and restart only Tomcat" depends="init,stop-tomcat,force-start-tomcat"/>
[15124]1687
1688 <target name="setup-catalina-ant-tasks">
1689 <!-- Configure the custom Ant tasks for the Tomcat Manager application -->
1690 <taskdef name="deploy" classname="org.apache.catalina.ant.DeployTask"
1691 classpath="${catalina.home}/server/lib/catalina-ant.jar"/>
1692 <taskdef name="list" classname="org.apache.catalina.ant.ListTask"
1693 classpath="${catalina.home}/server/lib/catalina-ant.jar"/>
1694 <taskdef name="reload" classname="org.apache.catalina.ant.ReloadTask"
1695 classpath="${catalina.home}/server/lib/catalina-ant.jar"/>
1696 <taskdef name="resources" classname="org.apache.catalina.ant.ResourcesTask"
1697 classpath="${catalina.home}/server/lib/catalina-ant.jar"/>
1698 <taskdef name="roles" classname="org.apache.catalina.ant.RolesTask"
1699 classpath="${catalina.home}/server/lib/catalina-ant.jar"/>
1700 <taskdef name="start" classname="org.apache.catalina.ant.StartTask"
1701 classpath="${catalina.home}/server/lib/catalina-ant.jar"/>
1702 <taskdef name="stop" classname="org.apache.catalina.ant.StopTask"
1703 classpath="${catalina.home}/server/lib/catalina-ant.jar"/>
1704 <taskdef name="undeploy" classname="org.apache.catalina.ant.UndeployTask"
1705 classpath="${catalina.home}/server/lib/catalina-ant.jar"/>
1706 </target>
1707
[25449]1708 <!-- http://blog.andrewbeacock.com/2007/11/how-to-truncate-log-file-using-ubuntu.html
1709 Doing "cat </dev/null > packages/tomcat/logs/catalina.out" doesn't work as an ant target.
1710 It seems to have a problem with cat or </dev/null, with or without the < sign. -->
[26776]1711 <target name="reset-logs" description="Empties catalina.out, greenstone.log and contents of web/logs/tmp">
[29156]1712 <echo>Truncating catalina.out, solr.log, greenstone.log and server.log, and emptying ${web.writablehome}/logs/tmp</echo>
[26185]1713 <exec executable="rm" os="${os.unix}" dir="${catalina.home}/logs" spawn="false">
1714 <arg value="-f"/>
[25449]1715 <arg value="catalina.out"/>
1716 </exec>
[27829]1717 <exec executable="rm" os="${os.unix}" dir="${web.writablehome}/logs" spawn="false">
[26185]1718 <arg value="-f"/>
[25449]1719 <arg value="greenstone.log"/>
1720 </exec>
[27829]1721 <exec executable="rm" os="${os.unix}" dir="${web.writablehome}/logs" spawn="false">
[26185]1722 <arg value="-f"/>
[26002]1723 <arg value="server.log"/>
1724 </exec>
[15124]1725
[26185]1726 <exec executable="touch" os="${os.unix}" dir="${catalina.home}/logs"
1727 spawn="false">
1728 <arg value="catalina.out"/>
1729 </exec>
[27829]1730 <exec executable="touch" os="${os.unix}" dir="${web.writablehome}/logs"
[26185]1731 spawn="false">
1732 <arg value="greenstone.log"/>
1733 </exec>
[27829]1734 <exec executable="touch" os="${os.unix}" dir="${web.writablehome}/logs"
[26185]1735 spawn="false">
1736 <arg value="server.log"/>
1737 </exec>
1738
[28044]1739 <exec executable="cmd" osfamily="windows" dir="${catalina.home}/logs" spawn="false">
[25449]1740 <arg line="/c echo. > catalina.out"/>
1741 </exec>
[28044]1742 <exec executable="cmd" osfamily="windows" dir="${web.writablehome}/logs" spawn="false">
[25449]1743 <arg line="/c echo. > greenstone.log"/>
1744 </exec>
[28044]1745 <exec executable="cmd" osfamily="windows" dir="${web.writablehome}/logs" spawn="false">
[26002]1746 <arg line="/c echo. > server.log"/>
1747 </exec>
[25449]1748
[29156]1749 <!-- if ext/solr/logs/solr.log exists, truncate it -->
1750 <if><bool><available file="${solr-ext.home}/logs/solr.log" type="file"/></bool>
1751 <exec executable="rm" os="${os.unix}" dir="${solr-ext.home}/logs" spawn="false">
1752 <arg value="-f"/>
1753 <arg value="solr.log"/>
1754 </exec>
1755 <exec executable="touch" os="${os.unix}" dir="${solr-ext.home}/logs" spawn="false">
1756 <arg value="solr.log"/>
1757 </exec>
1758 <exec executable="cmd" osfamily="windows" dir="${solr-ext.home}/logs" spawn="false">
1759 <arg line="/c echo. > solr.log"/>
1760 </exec>
1761 </if>
1762
[25501]1763 <if>
[27829]1764 <bool><available file="${web.writablehome}/logs/tmp" type="dir"/></bool>
[25501]1765 <delete>
[27829]1766 <fileset dir="${web.writablehome}/logs/tmp" includes="**/*"/>
[25501]1767 </delete>
1768 </if>
[25449]1769 </target>
1770
[29438]1771 <target name="clear-tomcat-sessions" description="Clear the Tomcat Session info." depends="init">
1772 <exec executable="cmd" osfamily="windows" dir="${catalina.home}/work/Catalina/localhost/greenstone3" spawn="false">
1773 <arg line="/c echo. > SESSIONS.ser"/>
1774 </exec>
1775 <exec executable="rm" os="${os.unix}" dir="${catalina.home}/work/Catalina/localhost/greenstone3" spawn="false">
1776 <arg value="-f"/>
1777 <arg value="SESSIONS.ser"/>
1778 </exec>
1779
1780 </target>
[15799]1781 <!-- ======================= ant Targets ============================ -->
[15124]1782 <target name="prepare-ant" depends="init">
[16951]1783 <if>
1784 <bool>
1785 <not><available file="${packages.home}/ant/.flagfile"/></not>
1786 </bool>
1787
1788 <get src="http://www.greenstone.org/gs3files/apache-ant-1.7.0-bin.zip"
1789 dest="${packages.home}/apache-ant-1.7.0-bin.zip"
1790 usetimestamp="true"/>
1791 <unzip src="${packages.home}/apache-ant-1.7.0-bin.zip"
1792 dest="${packages.home}"/>
1793 <move todir="${packages.home}/ant">
1794 <fileset dir="${packages.home}/apache-ant-1.7.0"/>
1795 </move>
1796 <echo file="${packages.home}/ant/.flagfile">
1797 the timestamp of this file is the time that ant was extracted from the zip files.
1798 it is used to figure out whether the files need to be refreshed or not in `ant prepare-ant`
1799 </echo>
1800
1801 <else>
1802 <echo>Ant has been prepared, will not prepare</echo>
1803 <echo>Delete ${packages.home}/ant/.flagfile to force refresh</echo>
1804 </else>
1805
1806 </if>
[15124]1807 </target>
1808
[25338]1809 <!-- ======================= Admin Targets ============================ -->
1810
1811 <!-- This target won't work with Eclipse because the SecureInputHandler used below conflicts with it.
1812 See http://www.dcepler.net/post.cfm/hiding-password-input-in-ant
1813 But you can do: echo mypassword | ant config-admin -->
1814 <target name="config-admin" description="Reset admin password">
1815 <input addproperty="admin.password" defaultvalue="admin" message="New admin password (3-8 characters):&gt;">
1816 <handler classname="org.apache.tools.ant.input.SecureInputHandler" /> <!-- password won't be visible on screen -->
1817 </input>
[25343]1818 <!--<echo>PWD: ${admin.password}</echo>-->
[25338]1819 <antcall target="update-userdb">
1820 <param name="user.username" value="admin"/>
1821 <param name="user.password" value="${admin.password}"/>
1822 <param name="user.groups" value=""/>
1823 <param name="user.status" value=""/>
1824 <param name="user.comment" value="Password updated."/>
1825 <param name="user.email" value=""/>
1826 </antcall>
1827 </target>
1828
1829 <target name="config-user" description="Add or modify users" depends="get-user-data,update-userdb"/>
1830
1831 <target name="get-user-data" description="Get user details">
1832 <input addproperty="user.username" message="Username:&gt;"/>
1833 <input addproperty="user.password" defaultvalue="" message="Password (3-8 characters):&gt;">
1834 <handler classname="org.apache.tools.ant.input.SecureInputHandler" /> <!-- password won't be visible on screen -->
1835 </input>
1836 <input addproperty="user.groups" defaultvalue="" message="Groups (comma-separated list):&gt;"/>
1837 <input addproperty="user.status" defaultvalue="true" message="Enabled (true/false):&gt;"/>
1838 <input addproperty="user.comment" defaultvalue="" message="Comment:&gt;"/>
1839 <input addproperty="user.email" defaultvalue="" message="Email:&gt;"/>
1840 </target>
1841
1842<!-- This target won't work with Eclipse because the SecureInputHandler used below conflicts with it.
1843 See http://www.dcepler.net/post.cfm/hiding-password-input-in-ant
1844 But you can do: echo mypassword | ant config-admin -->
[25418]1845 <target name="update-userdb" description="Add or modify users" depends="check-tomcat-running">
1846
[29903]1847 <!--
1848 We're now using derby networked server, so stopping and starting tomcat is not necessary.
1849 For embedded derby: stop tomcat if running, since derby db is embedded
1850 and only allows connections from one jvm instance at a time
[25418]1851 See http://db.apache.org/derby/papers/DerbyTut/embedded_intro.html
1852 The ${tomcat.isrunning} property is set by the depends-target "check-tomcat-running" -->
[29903]1853 <!--
[25338]1854 <if>
1855 <bool>
1856 <istrue value="${tomcat.isrunning}"/>
1857 </bool>
[25418]1858 <antcall target="stop-tomcat"/>
[25338]1859 </if>
[29903]1860 -->
[25338]1861
1862 <!--<echo>${admin.password}</echo>--> <!-- for testing -->
1863 <java classname="org.greenstone.gsdl3.util.ModifyUsersDB">
1864 <classpath refid="compile.classpath"/> <!--for ${web.lib}/gsdl3.jar and supporting files-->
[27921]1865 <arg file="${web.home}/etc/usersDB"/>
[25338]1866 <arg value="${user.username}"/>
1867 <arg value="password=${user.password}"/>
1868 <arg value="groups=${user.groups}"/>
1869 <arg value="status=${user.status}"/>
1870 <arg value="comment=${user.comment}"/>
1871 <arg value="email=${user.email}"/>
1872 </java>
1873
1874 <!-- run tomcat again if it used to be running -->
[29903]1875 <!--
[25338]1876 <if>
1877 <bool>
1878 <istrue value="${tomcat.isrunning}"/>
1879 </bool>
[30013]1880 <antcall target="force-start-tomcat"/>
[25338]1881 </if>
[29903]1882 -->
[25338]1883 </target>
1884
1885
[20079]1886 <!-- ======================= Axis Targets ============================ -->
1887
[15124]1888 <target name="prepare-axis" depends="init">
[16951]1889
1890 <if>
1891 <bool>
1892 <not><available file="${packages.home}/axis/.flagfile"/></not>
1893 </bool>
1894
1895 <get src="http://www.greenstone.org/gs3files/${axis.zip.version}"
1896 dest="${packages.home}/${axis.zip.version}"
1897 usetimestamp="true"/>
1898 <unzip src="${packages.home}/${axis.zip.version}"
1899 dest="${packages.home}"/>
1900 <move todir="${packages.home}/axis">
1901 <fileset dir="${packages.home}/${axis.dir.version}"/>
1902 </move>
1903 <!-- install axis into greenstone web app -->
1904 <copy todir="${web.lib}">
1905 <fileset dir="${packages.home}/axis/webapps/axis/WEB-INF/lib">
1906 <include name="*.jar"/>
1907 </fileset>
1908 </copy>
1909 <copy todir="${web.home}">
1910 <fileset dir="${packages.home}/axis/webapps/axis/">
1911 <include name="*.jsp"/>
1912 <include name="*.jws"/>
1913 </fileset>
1914 </copy>
1915 <copy tofile="${web.home}/axis.html" file="${packages.home}/axis/webapps/axis/index.html"/>
1916 <copy todir="${web.classes}">
1917 <fileset dir="${packages.home}/axis/webapps/axis/WEB-INF/classes">
1918 <include name="*.properties"/>
1919 </fileset>
1920 </copy>
1921 <echo file="${packages.home}/axis/.flagfile">
1922 the timestamp of this file is the time that axis was extracted from the zip files.
1923 it is used to figure out whether the files need to be refreshed or not in `ant prepare-axis`
1924 </echo>
1925
1926 <else>
1927 <echo>Axis has been prepared, will not prepare</echo>
1928 <echo>Delete ${packages.home}/axis/.flagfile to force refresh</echo>
1929 </else>
1930
1931 </if>
[15124]1932 </target>
1933
[15229]1934 <target name="soap-deploy-site" depends="init,get-sitename,get-siteuri,get-webservices,create-deployment-files,deploy-site"
[15124]1935 description="Deploy a SOAP web service for a local Greenstone site. Tomcat must be running for this to work."/>
[15799]1936
1937 <target name="deploy-site">
[15124]1938 <java classname="org.apache.axis.client.AdminClient">
1939 <classpath refid="compile.classpath"/>
1940 <arg value="-l"/>
1941 <arg value="http://${tomcat.server}:${tomcat.port}${app.path}/servlet/AxisServlet"/>
[15229]1942 <arg file="${basedir}/resources/soap/deploy.wsdd"/>
1943 </java>
1944 <delete file="${basedir}/resources/soap/deploy.wsdd"/> <!--clean up, no longer used-->
[15124]1945 </target>
1946
[15229]1947 <target name="soap-undeploy-site" depends="get-undeploy-service-name"
[15124]1948 description="Undeploy a SOAP web service for a local Greenstone site. Tomcat must be running for this to work.">
[15229]1949 <filter token="servicesname" value="${axis.undeploy.servicename}"/>
1950 <copy file="${basedir}/resources/soap/undeploy-site.wsdd.template"
1951 tofile="${basedir}/resources/soap/undeploy.wsdd"
1952 filtering="true"
1953 overwrite="true"/>
[15124]1954 <java classname="org.apache.axis.client.AdminClient">
1955 <classpath refid="compile.classpath"/>
1956 <arg value="-l"/>
1957 <arg value="http://${tomcat.server}:${tomcat.port}${app.path}/servlet/AxisServlet"/>
[15229]1958 <arg file="${basedir}/resources/soap/undeploy.wsdd"/>
[15124]1959 </java>
[15229]1960 <delete file="${basedir}/resources/soap/undeploy.wsdd"/> <!--clean up, no longer used-->
[15799]1961 </target>
[15124]1962
[16936]1963 <!-- this target used to deploy the default web service SOAPServer (base.webservice.name) on the localsite server
1964 with the default servicename of localsite-->
[15124]1965 <target name="deploy-localsite" depends="init"
1966 description="Deploy the SOAP server for localsite. Will start and stop Tomcat.">
[30013]1967 <antcall target="force-start-tomcat"/>
[15235]1968 <echo>Deploying ${base.webservice.name} web services for localsite under service name: localsite</echo>
[15229]1969 <antcall target="create-deployment-files">
1970 <param name="axis.sitename" value="localsite"/>
[15235]1971 <param name="axis.servicesname" value="${base.webservice.name}"/>
[15229]1972 <param name="axis.siteuri" value="localsite"/>
1973 </antcall>
[15124]1974 <antcall target="deploy-site">
1975 <param name="axis.sitename" value="localsite"/>
[15235]1976 <param name="axis.servicesname" value="${base.webservice.name}"/>
[15229]1977 <param name="axis.siteuri" value="localsite"/>
[15124]1978 </antcall>
[15369]1979 <echo>The Greenstone server has been started up. If you do not want it running, please type: ant stop.</echo>
[15124]1980 </target>
[15799]1981
[16936]1982 <target name="get-sitename" unless="axis.sitename">
[15229]1983 <input addproperty="axis.sitename" defaultvalue="localsite">What site do you want to deploy services for?
[15235]1984Press Enter for default:localsite</input>
[15124]1985 </target>
1986
[15229]1987 <target name="get-undeploy-service-name" unless="axis.undeploy.servicename">
1988 <input addproperty="axis.undeploy.servicename" defaultvalue="localsite">Please enter the full name of the service you wish to undeploy.
1989To find out which web services you've got deployed, point your browser to http://HOST:PORT/greenstone3/services
[20209]1990Or press Enter for undeploying the default:localsite /&gt;</input>
[15229]1991 <echo>Name of service to undeploy: ${axis.undeploy.servicename}</echo>
[15124]1992 </target>
1993
[15229]1994 <target name="get-webservices" unless="axis.servicesname">
[15235]1995 <input addproperty="axis.servicesname" defaultvalue="${base.webservice.name}">Which set of web services do you want to deploy?
[15229]1996Choose from: ${web.services.list}
[20209]1997Or press Enter for default:${base.webservice.name} /&gt;</input>
[15229]1998 <echo>${axis.servicesname}</echo>
1999 </target>
2000
2001 <target name="get-siteuri" depends="get-sitename,get-webservices" unless="axis.siteuri">
[15235]2002 <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>
[15229]2003 <echo>Site: ${axis.sitename}, services: ${axis.servicesname}, servicesname: ${axis.siteuri}</echo>
2004 </target>
2005
2006 <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">
2007 <condition property="soap.method" value="provider='java:MSG' style='message' use='literal'">
[15235]2008 <equals arg1="${axis.servicesname}" arg2="${base.webservice.name}"/>
[15124]2009 </condition>
[15229]2010
2011 <!--everything else defaults to java:RPC at present-->
2012 <condition property="soap.method" value="provider='java:RPC'">
2013 <not>
[15235]2014 <equals arg1="${axis.servicesname}" arg2="${base.webservice.name}"/>
[15229]2015 </not>
2016 </condition>
[16936]2017 </target>
[15799]2018
[16936]2019 <target name="create-deployment-files" depends="set-soapmethod" if="axis.sitename">
[15124]2020 <filter token="sitename" value="${axis.sitename}"/>
2021 <filter token="siteuri" value="${axis.siteuri}"/>
[15229]2022 <filter token="servicesname" value="${axis.servicesname}"/>
2023 <filter token="soapmethod" value="${soap.method}"/>
[15124]2024 <copy file="${basedir}/resources/soap/site.wsdd.template"
[15229]2025 tofile="${basedir}/resources/soap/deploy.wsdd"
2026 filtering="true"
2027 overwrite="true"/>
[15124]2028 <!-- create the java files and compile them -->
[15229]2029 <copy file="${basedir}/resources/java/${axis.servicesname}.java.in"
2030 tofile="${src.gsdl3.home}/${axis.servicesname}${axis.sitename}.java"
2031 filtering="true"
2032 overwrite="true"/>
[15124]2033 <mkdir dir="${build.home}"/>
2034 <javac srcdir="${src.home}"
2035 destdir="${build.home}"
[28137]2036 includeantruntime="${compile.includeantruntime}"
[15124]2037 debug="${compile.debug}"
2038 deprecation="${compile.deprecation}"
[29515]2039 optimize="${compile.optimize}"
2040 encoding="${compile.encoding}">
[15124]2041 <classpath refid="compile.classpath"/>
[15229]2042 <include name="org/greenstone/gsdl3/${axis.servicesname}${axis.sitename}.java" />
[15124]2043 </javac>
2044 <mkdir dir="${web.classes}/org/greenstone/gsdl3"/>
[15799]2045 <copy file="${build.home}/org/greenstone/gsdl3/${axis.servicesname}${axis.sitename}.class"
2046 tofile="${web.classes}/org/greenstone/gsdl3/${axis.servicesname}${axis.sitename}.class"
2047 overwrite="true" />
[15124]2048 </target>
[15799]2049
[15124]2050
[15799]2051 <!-- ====================== Core targets ============================== -->
2052 <!-- core targets refer to the core gsdl3 java src -->
[15124]2053
[19878]2054 <target name="prepare-core"/>
[15124]2055
2056 <target name="configure-core"/>
2057
2058 <target name="update-core" depends="init,svnupdate-core,clean-core,compile-core"
2059 description="Update only the Greenstone core" />
2060
[15799]2061 <target name="svnupdate-core" unless="nosvn.mode">
[20930]2062 <exec executable="svn">
2063 <arg value="update"/>
2064 <arg value="${basedir}"/>
2065 <arg value="-r"/><arg value="${branch.revision}"/>
2066 </exec>
[15124]2067 </target>
2068
2069 <target name="clean-core"
2070 description="Clean only the Greenstone core">
[19878]2071 <!-- should this delete the gsdl3.jar from web/WEB-INF?? -->
[15124]2072 <delete dir="${build.home}"/>
2073 </target>
2074
[15799]2075 <target name="compile-core" depends="init"
[15124]2076 description="Compile only the Greenstone core">
2077 <mkdir dir="${build.home}"/>
[25131]2078
[23803]2079 <if><bool><isset property="with.jni"/></bool>
2080 <javac srcdir="${src.home}"
2081 destdir="${build.home}"
[28137]2082 includeantruntime="${compile.includeantruntime}"
[23803]2083 debug="${compile.debug}"
2084 deprecation="${compile.deprecation}"
[29515]2085 optimize="${compile.optimize}"
2086 encoding="${compile.encoding}">
[23803]2087 <classpath>
2088 <path refid="compile.classpath"/>
2089 </classpath>
2090 </javac>
2091 <else>
2092 <property name="gsprefix" value=""/>
2093 <javac srcdir="${src.home}"
[28137]2094 destdir="${build.home}"
2095 includeantruntime="${compile.includeantruntime}"
2096 debug="${compile.debug}"
2097 deprecation="${compile.deprecation}"
[29515]2098 optimize="${compile.optimize}"
2099 encoding="${compile.encoding}">
[23803]2100 <classpath>
2101 <path refid="compile.classpath"/>
2102 </classpath>
2103 <exclude name="org/greenstone/gsdl3/service/GS2MGPPRetrieve.java"/>
2104 <exclude name="org/greenstone/gsdl3/service/GS2MGPPSearch.java"/>
2105 <exclude name="org/greenstone/gsdl3/service/GS2MGSearch.java"/>
2106 <exclude name="org/greenstone/gsdl3/service/GS2MGRetrieve.java"/>
2107 <exclude name="org/greenstone/gsdl3/service/GoogleNgramMGPPSearch.java"/>
2108 <exclude name="org/greenstone/gsdl3/service/PhindPhraseBrowse.java"/>
2109 <exclude name="org/greenstone/gsdl3/util/GDBMWrapper.java"/>
2110 </javac>
2111 </else>
2112 </if>
[15124]2113 <jar destfile="${build.home}/gsdl3.jar">
2114 <fileset dir="${build.home}">
[16936]2115 <include name="org/greenstone/gsdl3/**"/>
[15124]2116 <include name="org/flax/**"/>
[16936]2117 <exclude name="**/Test.class"/>
[15124]2118 </fileset>
2119 <manifest>
[16936]2120 <attribute name="Built-By" value="${user.name}" />
[15124]2121 </manifest>
2122 </jar>
2123 <copy file="${build.home}/gsdl3.jar" todir="${web.lib}"/>
[22101]2124
2125 <jar destfile="${build.home}/gutil.jar">
2126 <fileset dir="${build.home}">
2127 <include name="org/greenstone/util/**"/>
2128 </fileset>
2129 <manifest>
2130 <attribute name="Built-By" value="${user.name}" />
2131 </manifest>
2132 </jar>
2133 <copy file="${build.home}/gutil.jar" todir="${web.lib}"/>
2134
[15124]2135 <!-- copy the localsite server in case we need it -->
[15235]2136 <copy file="${build.home}/org/greenstone/gsdl3/${base.webservice.name}localsite.class" tofile="${web.classes}/org/greenstone/gsdl3/${base.webservice.name}localsite.class" />
[15124]2137
[17918]2138 <!-- Greenstone Administrator Interface -->
[15124]2139 <jar destfile="${build.home}/GAI.jar">
2140 <fileset dir="${build.home}">
[16936]2141 <include name="org/greenstone/admin/**"/>
[15124]2142 </fileset>
2143 <manifest>
[16936]2144 <attribute name="Built-By" value="${user.name}" />
[15124]2145 </manifest>
2146 </jar>
[17917]2147 <copy file="${build.home}/GAI.jar" todir="${web.lib}"/>
[18124]2148 <copy file="${build.home}/GAI.jar" todir="${admin.dir}"/>
[15124]2149 <jar destfile="${build.home}/phind.jar">
2150 <fileset dir="${build.home}">
[16936]2151 <include name="org/greenstone/applet/phind/**"/>
[15124]2152 </fileset>
2153 <manifest>
[16936]2154 <attribute name="Built-By" value="${user.name}" />
[15124]2155 </manifest>
2156 </jar>
2157 <mkdir dir="${web.applet}"/>
2158 <copy file="${build.home}/phind.jar" todir="${web.applet}"/>
2159 <!-- phind also needs xercesImpl.jar and xml-apis.jar to be in web/applet -->
[18515]2160 <if>
2161 <bool><istrue value="${tomcat.islocal}"/></bool>
[29711]2162 <if><bool><available file="${catalina.home}/lib/xercesImpl.jar"/></bool><!-- moved for solr -->
2163 <copy file="${catalina.home}/lib/xercesImpl.jar" todir="${web.applet}"/>
2164 <copy file="${catalina.home}/lib/xml-apis.jar" todir="${web.applet}"/>
2165
2166 <else><!-- get from default GS3 web lib location-->
2167 <copy file="${web.lib}/xercesImpl.jar" todir="${web.applet}"/>
2168 <copy file="${web.lib}/xml-apis.jar" todir="${web.applet}"/>
2169 </else>
2170 </if>
[18515]2171 </if>
2172
2173
[17116]2174 <!-- skip anttasks for now
[15124]2175 <jar destfile="${build.home}/anttasks.jar">
2176 <fileset dir="${build.home}">
[16936]2177 <include name="org/greenstone/anttasks/**"/>
[15124]2178 </fileset>
2179 <manifest>
[16936]2180 <attribute name="Built-By" value="${user.name}" />
[15124]2181 </manifest>
2182 </jar>
[17116]2183 <copy file="${build.home}/anttasks.jar" todir="${basedir}/lib/java"/>-->
[15124]2184 <jar destfile="${build.home}/gsdl3test.jar">
2185 <fileset dir="${build.home}">
[16936]2186 <include name="org/greenstone/gsdl3/**/*Test.class"/>
2187 <include name="org/greenstone/testing/**"/>
[15124]2188 </fileset>
2189 <manifest>
[16936]2190 <attribute name="Built-By" value="${user.name}" />
[15124]2191 </manifest>
2192 </jar>
2193 <jar destfile="${build.home}/server.jar">
2194 <fileset dir="${build.home}">
[16936]2195 <include name="org/greenstone/server/**"/>
[22634]2196 <include name="org/greenstone/util/**"/>
[15124]2197 </fileset>
2198 <fileset file="${basedir}/resources/java/server.properties"/>
2199 <manifest>
[16936]2200 <attribute name="Built-By" value="${user.name}"/>
[15124]2201 </manifest>
2202 </jar>
2203 <copy file="${build.home}/server.jar" todir="${basedir}"/>
2204 </target>
[27149]2205
2206 <!-- === Eclipse targets == -->
2207 <target name="setup-for-eclipse">
2208
2209 <filter token="gsdlhome" value="${gs2build.home}"/>
2210 <filter token="gsdl3srchome" value="${basedir}"/>
2211 <filter token="gsdl3home" value="${basedir}/web"/>
2212
2213 <if>
2214 <bool><not><available file="${basedir}/TransformingLibrary.launch"/></not></bool>
2215 <copy file="${basedir}/TransformingLibrary.launch.in" tofile="${basedir}/TransformingLibrary.launch" filtering="true" overwrite="true"/>
2216 </if>
2217<!--
2218 <if>
2219 <bool><not><available file="${basedir}/LibraryCommandline.launch"/></not></bool>
2220 <copy file="${basedir}/LibraryCommandline.launch.in" tofile="${basedir}/LibraryCommandline.launch" filtering="true" overwrite="true"/>
2221 </if>
2222-->
2223 </target>
[15799]2224
2225 <!-- ================== Packages targets ================================ -->
[15124]2226 <!-- these targets refer to the greenstone source packages - these need
2227 updating less often, so are in separate targets to the core -->
[19871]2228 <target name="prepare-packages" depends="init"/>
[15124]2229
2230 <target name="update-packages" depends="init,svnupdate-packages,configure-packages,clean-packages,compile-packages"
2231 description="Update only the source packages"/>
2232
[15799]2233 <target name="svnupdate-packages" unless="nosvn.mode">
[20930]2234 <exec executable="svn">
2235 <arg value="update"/>
2236 <arg value="${src.packages.home}"/>
2237 <arg value="-r"/><arg value="${branch.revision}"/>
2238 </exec>
[15124]2239 </target>
[19931]2240
[15124]2241
[19871]2242 <target name="configure-packages" depends="init,configure-javagdbm"
[15124]2243 description="Configure only the packages."/>
2244
[22184]2245 <target name="configure-javagdbm" if="with.jni">
[15124]2246 <echo>
2247 Configuring JavaGDBM
2248 </echo>
[18417]2249
[19904]2250 <exec executable="${javagdbm.home}/configure" os="${os.unix}" dir="${javagdbm.home}" failonerror="true">
[15124]2251 <arg value="--prefix=${basedir}"/>
2252 <arg value="--libdir=${lib.jni}"/>
[19873]2253 <arg value="--with-gdbm=${gdbm.home}"/>
[26765]2254 <arg line="${cross.configure.args}"/>
[15124]2255 </exec>
2256 </target>
2257
[19871]2258 <target name="clean-packages" depends="init,clean-javagdbm" description="Clean only the packages"/>
[15124]2259
2260 <target name="clean-javagdbm" depends="init">
[26082]2261 <if><bool><available file="${javagdbm.home}/Makefile"/></bool>
[15124]2262 <exec executable="make" os="${os.unix}"
[19904]2263 dir="${javagdbm.home}" failonerror="true">
[15124]2264 <arg value="clean"/>
2265 </exec>
[26082]2266 </if>
[15124]2267 </target>
2268
[19871]2269 <target name="distclean-packages" depends="init,distclean-javagdbm" description="Distclean only the packages"/>
[15185]2270
[15799]2271 <target name="distclean-javagdbm" depends="init">
[26079]2272 <if><bool><available file="${javagdbm.home}/Makefile"/></bool>
[15799]2273 <exec executable="make" os="${os.unix}"
[19904]2274 dir="${javagdbm.home}" failonerror="true">
[15799]2275 <arg value="distclean"/>
2276 </exec>
[26079]2277 </if>
[15799]2278 </target>
2279
2280 <target name="compile-packages" description="Compile only the source packages">
[22184]2281 <!-- javagdbm -->
2282 <antcall target="compile-javagdbm"/>
2283 <!-- Search4j -->
2284 <antcall target="compile-search4j"/>
2285 </target>
2286
2287 <target name="compile-javagdbm" description="Compile JavaGDBM" if="with.jni">
[15799]2288
[19878]2289 <!-- unix: -->
[15799]2290 <echo>compile javagdbm</echo>
[19904]2291 <exec executable="make" os="${os.unix}" dir="${javagdbm.home}" failonerror="true">
[29518]2292 <arg value="JAVACOPTIONS=-encoding UTF8"/>
2293 </exec>
2294 <exec executable="make" os="${os.unix}" dir="${javagdbm.home}" failonerror="true">
[15799]2295 <arg value="install"/>
2296 </exec>
[15098]2297
[23852]2298 <!-- windows: Calling without the "compile" argument first will run winMake.bat with
2299 "all" which will then perform both the compile AND link targets in jni/win32.mak
2300 (thereby also generating gdbmjava.dll). Then we run the same command with
2301 the "install" argument to copy the gdbmjava.dll into the correct location. -->
[23849]2302 <echo>Windows: compile javagdbm</echo>
[28044]2303 <exec executable="${javagdbm.home}/winMake.bat" osfamily="windows" dir="${javagdbm.home}" failonerror="true">
[24076]2304 <env key="GSDL3SRCHOME" path="${basedir}"/>
[23852]2305 </exec>
[28044]2306 <exec executable="${javagdbm.home}/winMake.bat" osfamily="windows" dir="${javagdbm.home}" failonerror="true">
[24076]2307 <env key="GSDL3SRCHOME" path="${basedir}"/>
[23847]2308 <arg value="install"/>
[15799]2309 </exec>
[15124]2310
[15799]2311 <!-- install the jar file -->
[23847]2312 <echo>Install the javagdbm jar file ${javagdbm.home}/javagdbm.jar ${lib.jni}</echo>
[15799]2313 <copy file="${javagdbm.home}/javagdbm.jar" todir="${lib.jni}"/>
2314 </target>
2315
[17491]2316 <target name="compile-search4j">
[17509]2317
[19996]2318 <!-- windows -->
[19997]2319 <if><bool><istrue value="${current.os.iswindows}"/></bool>
[19996]2320 <exec executable="nmake" dir="${src.packages.home}/search4j" failonerror="true">
2321 <arg value="/f"/>
2322 <arg value="win32.mak"/>
2323 <arg value='BINDIR="${basedir}\bin"'/>
2324 </exec>
2325 <exec executable="nmake" dir="${src.packages.home}/search4j" failonerror="true">
2326 <arg value="/f"/>
2327 <arg value="win32.mak"/>
2328 <arg value="install"/>
2329 <arg value='BINDIR="${basedir}\bin"'/>
2330 </exec>
[17509]2331
[19996]2332 <!-- unix -->
[19997]2333 <else><if><bool><istrue value="${current.os.isunix}"/></bool>
[19996]2334 <exec executable="${src.packages.home}/search4j/configure" dir="${src.packages.home}/search4j" failonerror="true">
2335 <arg value="--bindir=${basedir}/bin"/>
2336 <arg value="${static.arg}"/>
[26765]2337 <arg line="${cross.configure.args}"/>
[19996]2338 </exec>
2339 <exec executable="make" dir="${src.packages.home}/search4j" failonerror="true"/>
2340 <exec executable="make" dir="${src.packages.home}/search4j" failonerror="true">
2341 <arg value="install"/>
2342 </exec>
[17509]2343
[19996]2344 <!-- else warn -->
2345 <else>
2346 <fail>this target does not support the current os</fail>
[17509]2347
[19996]2348 </else></if></else></if>
2349
[17491]2350 </target>
2351
[19871]2352 <target name="install-auxiliary-jar-files" depends="init">
[22184]2353
2354 <if>
2355 <bool><available file="${mg.home}/mg.jar"/></bool>
2356 <copy file="${mg.home}/mg.jar" todir="${lib.jni}"/>
2357 </if>
2358
2359 <if>
[22199]2360 <bool><available file="${mgpp.home}/mgpp.jar"/></bool>
[22184]2361 <copy file="${mgpp.home}/mgpp.jar" todir="${lib.jni}"/>
2362 </if>
2363
[29143]2364 <copy file="${lucene.home}/LuceneWrapper4.jar" todir="${web.lib}"/>
[19871]2365 </target>
2366
[22976]2367 <target name="install-jni-files" depends="init" if="with.jni">
2368 <antcall target="install-jni-files-linux"/>
2369 <antcall target="install-jni-files-windows"/>
2370 <antcall target="install-jni-files-macos"/>
2371 </target>
[15124]2372
[15799]2373 <target name="install-jni-files-linux" depends="init" if="current.os.isunixnotmac">
[26765]2374
2375 <if>
2376
2377 <bool><equals arg1="${os.bin.dir}" arg2="windows"/></bool>
2378 <!-- cross compiling to windows -->
2379 <copy file="${mg.home}/jni/mgretrievejni.dll" todir="${lib.jni}"/>
2380 <copy file="${mg.home}/jni/mgsearchjni.dll" todir="${lib.jni}"/>
2381 <copy file="${mg.home}/jni/mgpassjni.dll" todir="${lib.jni}"/>
2382 <copy file="${mgpp.home}/jni/mgppretrievejni.dll" todir="${lib.jni}"/>
2383 <copy file="${mgpp.home}/jni/mgppsearchjni.dll" todir="${lib.jni}"/>
2384 <copy file="${mgpp.home}/jni/mgpppassjni.dll" todir="${lib.jni}"/>
2385
2386 <else>
2387 <!-- otherwise do the usual Unix copies -->
2388 <copy file="${mg.home}/jni/libmgretrievejni.so" todir="${lib.jni}"/>
2389 <copy file="${mg.home}/jni/libmgsearchjni.so" todir="${lib.jni}"/>
2390 <copy file="${mg.home}/jni/libmgpassjni.so" todir="${lib.jni}"/>
2391 <copy file="${mgpp.home}/jni/libmgppretrievejni.so" todir="${lib.jni}"/>
2392 <copy file="${mgpp.home}/jni/libmgppsearchjni.so" todir="${lib.jni}"/>
2393 <copy file="${mgpp.home}/jni/libmgpppassjni.so" todir="${lib.jni}"/>
2394 </else>
2395 </if>
2396
2397
[15799]2398 </target>
2399 <target name="install-jni-files-windows" depends="init" if="current.os.iswindows">
[15124]2400 <copy file="${mg.home}/jni/mgretrievejni.dll" todir="${lib.jni}"/>
2401 <copy file="${mg.home}/jni/mgsearchjni.dll" todir="${lib.jni}"/>
[15799]2402 <copy file="${mg.home}/jni/mgpassjni.dll" todir="${lib.jni}"/>
[15124]2403 <copy file="${mgpp.home}/jni/mgppretrievejni.dll" todir="${lib.jni}"/>
2404 <copy file="${mgpp.home}/jni/mgppsearchjni.dll" todir="${lib.jni}"/>
[15799]2405 <copy file="${mgpp.home}/jni/mgpppassjni.dll" todir="${lib.jni}"/>
2406 </target>
2407 <target name="install-jni-files-macos" depends="init" if="current.os.ismac">
[15124]2408 <copy file="${mg.home}/jni/libmgretrievejni.jnilib" todir="${lib.jni}"/>
2409 <copy file="${mg.home}/jni/libmgsearchjni.jnilib" todir="${lib.jni}"/>
[15799]2410 <copy file="${mg.home}/jni/libmgpassjni.jnilib" todir="${lib.jni}"/>
[15124]2411 <copy file="${mgpp.home}/jni/libmgppretrievejni.jnilib" todir="${lib.jni}"/>
2412 <copy file="${mgpp.home}/jni/libmgppsearchjni.jnilib" todir="${lib.jni}"/>
[15799]2413 <copy file="${mgpp.home}/jni/libmgpppassjni.jnilib" todir="${lib.jni}"/>
2414 </target>
2415
[19871]2416 <!-- ========common-src targets =================================-->
2417 <!-- these are used to get common-src (for indexers, gdbm, sqlite etc) when
2418 collection building is not enabled -->
2419
2420 <target name="update-common-src" depends="init" if="collection.building.disabled">
2421 </target>
[19931]2422
[19871]2423 <target name="svnupdate-common-src" depends="init" if="collection.building.disabled" unless="nosvn.mode">
[20930]2424 <exec executable="svn">
2425 <arg value="update"/>
2426 <arg value="${common.src.home}"/>
2427 <arg value="-r"/><arg value="${branch.revision}"/>
2428 </exec>
[19871]2429 </target>
2430
[19878]2431 <target name="prepare-common-src" depends="init" if="collection.building.disabled" unless="common.src.present">
[19871]2432 <antcall target="checkout-common-src"/>
2433 <antcall target="unzip-windows-packages"/>
2434 </target>
2435
2436 <target name="checkout-common-src" depends="init" if="collection.building.disabled" unless="nosvn.mode">
2437 <echo>checking out common-src</echo>
[20930]2438 <exec executable="svn">
2439 <arg value="checkout"/>
[21196]2440 <arg value="${svn.root}/main/${branch.path}/greenstone2/common-src"/>
[20930]2441 <arg value="common-src"/>
2442 <arg value="-r"/><arg value="${branch.revision}"/>
2443 </exec>
[19871]2444 </target>
2445
[19931]2446 <target name="configure-common-src" depends="init">
[26765]2447<!--
2448 <echo>cross configure args: ${cross.configure.args}</echo>
2449-->
[19871]2450 <exec executable="${common.src.home}/configure" os="${os.unix}"
[19904]2451 dir="${common.src.home}" failonerror="true">
[19931]2452 <arg value="--prefix=${gs2build.home}"/> <!-- what value to use?? -->
[19933]2453 <arg value="--bindir=${gs2build.home}/bin/${os.bin.dir}"/> <!-- what value to use?? -->
[22184]2454 <arg line="${gs2.opt.args}"/>
[22854]2455 <arg line="${static.arg}"/>
[26765]2456 <arg line="${cross.configure.args}"/>
[23611]2457 <arg line="${allargs}"/>
[19871]2458 </exec>
2459 </target>
2460
[19931]2461 <target name="clean-common-src" depends="init">
[19871]2462 <!-- unix: -->
[26082]2463 <if><bool><available file="${common.src.home}/Makefile"/></bool>
[19904]2464 <exec executable="make" os="${os.unix}" dir="${common.src.home}" failonerror="true">
[19871]2465 <arg value="clean"/>
2466 </exec>
[26082]2467 </if>
[19871]2468 <!-- windows: -->
[28044]2469 <exec executable="nmake" dir="${common.src.home}" osfamily="windows" failonerror="true">
[19871]2470 <arg value="/f"/>
2471 <arg value="win32.mak"/>
2472 <arg value="clean"/>
[19960]2473 <arg value="GSDLHOME=${gs2build.home}"/>
[19871]2474 </exec>
2475 </target>
[19931]2476 <target name="distclean-common-src" depends="init">
[19960]2477 <!-- unix: -->
[26079]2478 <if><bool><available file="${common.src.home}/Makefile"/></bool>
[19904]2479 <exec executable="make" os="${os.unix}" dir="${common.src.home}" failonerror="true">
[19871]2480 <arg value="distclean"/>
2481 </exec>
[26079]2482 </if>
[19960]2483 <!-- windows: distclean = clean + remove configure products (remove makefiles). But on Windows there is no removing makefiles, so we just call clean -->
[28044]2484 <exec executable="nmake" dir="${common.src.home}" osfamily="windows" failonerror="true">
[19960]2485 <arg value="/f"/>
2486 <arg value="win32.mak"/>
2487 <arg value="clean"/>
2488 <arg value="GSDLHOME=${gs2build.home}"/>
2489 </exec>
[19871]2490 </target>
[19931]2491 <target name="compile-common-src" depends="init">
[19871]2492 <!-- unix: -->
[19904]2493 <exec executable="make" os="${os.unix}" dir="${common.src.home}" failonerror="true">
[22184]2494 <arg value="${gs2.compile.target}"/>
[19871]2495 </exec>
2496 <!-- windows: -->
[28044]2497 <exec executable="nmake" dir="${common.src.home}" osfamily="windows" failonerror="true">
[19871]2498 <arg value="/f"/>
2499 <arg value="win32.mak"/>
[19934]2500 <arg value="GSDLHOME=${gs2build.home}"/>
[22184]2501 <arg value="ENABLE_JNI=${gs2.windows.enablejni}"/>
[22976]2502 <arg value="ENABLE_MG=${gs2.windows.enablemg}"/>
2503 <arg value="ENABLE_MGPP=${gs2.windows.enablemgpp}"/>
2504 <arg value="USE_GDBM=${gs2.windows.usegdbm}"/>
2505 <arg value="USE_SQLITE=${gs2.windows.usesqlite}"/>
[19871]2506 </exec>
2507 </target>
2508
[19843]2509 <!-- ======= collection-building targets ===========================-->
[15124]2510
[19843]2511 <target name="update-collection-building" if="collection.building.enabled"
[19931]2512 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"
[19843]2513 description="Update (SVN update, configure, compile etc) only the collection building components"/>
[15124]2514
[27135]2515 <target name="svnupdate-collection-building" if="collection.building.enabled" depends="init,svnupdate-gs2build,svnupdate-cgi,svnupdate-gli" unless="nosvn.mode"
[19843]2516 description="SVN update the collection building components">
2517 </target>
[15124]2518
[27135]2519 <target name="prepare-collection-building" depends="init,prepare-gs2build,svnupdate-cgi,prepare-gli" if="collection.building.enabled">
[15124]2520 </target>
2521
[19931]2522 <target name="configure-collection-building" depends="init,configure-build-src" if="collection.building.enabled"
2523 description="Configure the collection building components">
[19843]2524 </target>
[15098]2525
[19948]2526 <target name="clean-collection-building" depends="init,clean-gli,clean-build-src"
[19843]2527 description="Clean only the collection building components"
2528 if="collection.building.enabled"/>
[18495]2529
[19948]2530 <target name="distclean-collection-building" depends="init,clean-build-src,distclean-build-src"
[19843]2531 description="Distclean only the collection building components"
2532 if="collection.building.enabled"/>
2533
[19931]2534 <target name="compile-collection-building" depends="init,compile-build-src,compile-gli" if="collection.building.enabled"
[19843]2535 description="Compile only the collection building components">
[19931]2536 <!-- make install for common-src -->
2537 <!-- unix: -->
2538 <exec executable="make" os="${os.unix}" dir="${common.src.home}" failonerror="true">
[22184]2539 <arg value="${gs2.install.target}"/>
[19931]2540 </exec>
2541
2542 <!-- windows: -->
[28044]2543 <exec executable="nmake" dir="${common.src.home}" osfamily="windows" failonerror="true">
[19931]2544 <arg value="/f"/>
2545 <arg value="win32.mak"/>
[21370]2546 <arg value="install"/>
[23837]2547 <arg value="GSDLHOME=${gs2build.home}"/>
[22184]2548 <arg value="ENABLE_JNI=${gs2.windows.enablejni}"/>
[23837]2549 <arg value="ENABLE_MG=${gs2.windows.enablemg}"/>
2550 <arg value="ENABLE_MGPP=${gs2.windows.enablemgpp}"/>
2551 <arg value="USE_GDBM=${gs2.windows.usegdbm}"/>
2552 <arg value="USE_SQLITE=${gs2.windows.usesqlite}"/>
2553 <!--
2554 <arg value="ENABLE_JNI=${gs2.windows.enablejni}"/>
2555 <arg value="USE_SQLITE=0"/>--> <!-- why is this not on by default? -->
[19931]2556 </exec>
2557
2558 <!-- install gs2build indexers for windows -->
2559 <if>
2560 <bool><istrue value="${current.os.iswindows}"/></bool>
2561 <copy todir="${gs2build.home}/bin/windows">
2562 <fileset dir="${gs2build.home}/common-src/indexers/bin">
2563 <include name="*.*"/>
2564 </fileset>
2565 </copy>
2566 </if>
2567
2568 <!-- LuceneWrapper jar file not installed by default -->
2569 <mkdir dir="${gs2build.home}/bin/java"/>
[29143]2570 <copy file="${lucene.home}/LuceneWrapper4.jar" todir="${gs2build.home}/bin/java"/>
[19931]2571
[15124]2572 </target>
[19843]2573
2574 <!-- ============== gli targets ================================= -->
[27135]2575
[27484]2576 <!-- gliserver.pl, gsdlCGI.pm, metadata-server.pl and checksum.pl are updated alongside
[27135]2577 this in target svnupdate-collection-building -->
[15799]2578 <target name="svnupdate-gli" if="collection.building.enabled" depends="init" unless="nosvn.mode">
[19929]2579
[20930]2580 <exec executable="svn">
2581 <arg value="update"/>
2582 <arg value="${gli.home}"/>
2583 <arg value="-r"/><arg value="${branch.revision}"/>
2584 </exec>
2585
[15124]2586 </target>
2587
[27484]2588 <!-- gliserver.pl, gsdlCGI.pm, metadata-server.pl and checksum.pl are updated
[27135]2589 alongside this prepare-gli target in target prepare-collection-building -->
[19843]2590 <target name="prepare-gli" depends="init" if="collection.building.enabled" unless="gli.present">
[19911]2591 <!-- checkout -->
[23808]2592 <if><bool><and><not><istrue value="${nosvn.mode}"/></not><isset property="with.gli.and.gems"/></and></bool>
[19929]2593
[20930]2594 <exec executable="svn">
2595 <arg value="checkout"/>
[21196]2596 <arg value="${svn.root}/main/${branch.path}/gli"/>
[20930]2597 <arg value="-r"/><arg value="${branch.revision}"/>
2598 </exec>
2599
[27135]2600 </if>
2601 </target>
2602
[27484]2603 <!-- svn checkout gliserver.pl, gsdlCGI.pm for gli applet, as well as gsdlCGI.pm-dependent metadata-server.pl
2604 (checksum.pl is used by GS2 for depositdspace.dm and may eventually be used by GS3 too) -->
[27135]2605 <target name="svnupdate-cgi">
2606
2607 <exec executable="svn" dir="web/WEB-INF/cgi">
[20930]2608 <arg value="export"/>
2609 <arg value="-r"/><arg value="${branch.revision}"/>
[25570]2610 <arg value="${svn.root}/main/${branch.path}/greenstone2/common-src/cgi-bin/gliserver.pl"/>
[20930]2611 </exec>
[21196]2612 <exec executable="svn" dir="web/WEB-INF/cgi">
2613 <arg value="export"/>
2614 <arg value="-r"/><arg value="${branch.revision}"/>
[25570]2615 <arg value="${svn.root}/main/${branch.path}/greenstone2/common-src/cgi-bin/gsdlCGI.pm"/>
[21196]2616 </exec>
[27135]2617 <exec executable="svn" dir="web/WEB-INF/cgi">
2618 <arg value="export"/>
2619 <arg value="-r"/><arg value="${branch.revision}"/>
2620 <arg value="${svn.root}/main/${branch.path}/greenstone2/common-src/cgi-bin/metadata-server.pl"/>
2621 </exec>
[27484]2622 <exec executable="svn" dir="web/WEB-INF/cgi">
2623 <arg value="export"/>
2624 <arg value="-r"/><arg value="${branch.revision}"/>
2625 <arg value="${svn.root}/main/${branch.path}/greenstone2/common-src/cgi-bin/checksum.pl"/>
2626 </exec>
[27135]2627 </target>
[20930]2628
[19843]2629
2630 <target name="clean-gli" depends="init" if="collection.building.enabled">
2631 <!-- gli -->
2632 <property name="gli.home" value="${basedir}/gli"/>
2633 <!-- linux -->
2634 <exec executable="clean.sh" os="${os.unix}" dir="${gli.home}"
[20826]2635 resolveExecutable="true" failonerror="true"/>
[19843]2636 <!-- windows -->
[28044]2637 <exec executable="clean.bat" osfamily="windows" dir="${gli.home}"
[20826]2638 resolveExecutable="true" failonerror="true"/>
[19843]2639 </target>
2640
2641 <target name="compile-gli" depends="init" if="collection.building.enabled">
[23808]2642 <if><bool><isset property="with.gli.and.gems"/></bool>
[23807]2643 <!-- gli -->
2644 <property name="gli.home" value="${basedir}/gli"/>
[15098]2645
[23807]2646 <!-- linux -->
2647 <exec executable="makegli.sh" os="${os.unix}" dir="${gli.home}" resolveExecutable="true" failonerror="true"/>
2648 <!--remote gli-->
2649 <exec executable="makejar.sh" os="${os.unix}" dir="${gli.home}"
2650 resolveExecutable="true" failonerror="true"/>
2651 <!-- windows -->
[28044]2652 <exec executable="makegli.bat" osfamily="windows" dir="${gli.home}" resolveExecutable="true" failonerror="true"/>
[23807]2653 <!--remote gli-->
[28044]2654 <exec executable="makejar.bat" osfamily="windows" dir="${gli.home}"
[23807]2655 resolveExecutable="true" failonerror="true"/>
2656 <copy file="${gli.home}/GLIServer.jar" todir="${gs2build.home}/bin/java" />
2657 </if>
[19843]2658 </target>
[15124]2659
[19843]2660 <target name="gli" description="Run the Greenstone Librarian Interface" depends="init" if="collection.building.enabled">
[21351]2661 <exec executable="${basedir}/gli/gli.sh" os="${os.linux},${os.solaris}" dir="${basedir}/gli" spawn="true">
[19843]2662 <env key="gsdl3path" path="${basedir}"/>
[19871]2663 <env key="gsdlpath" path="${gs2build.home}"/>
[19843]2664 </exec>
[21351]2665 <exec executable="${basedir}/gli/gli.sh" os="${os.mac}" dir="${basedir}/gli" spawn="true">
[19843]2666 <env key="gsdl3path" path="${basedir}"/>
[19871]2667 <env key="gsdlpath" path="${gs2build.home}"/>
[19873]2668 <env key="DYLD_LIBRARY_PATH" path="${env.DYLD_LIBRARY_PATH}:${gdbm.home}/lib"/>
[19843]2669 </exec>
[28044]2670 <exec executable="${basedir}/gli/gli.bat" osfamily="windows" dir="${basedir}/gli" spawn="true">
[19843]2671 <env key="GSDL3PATH" path="${basedir}"/>
[19871]2672 <env key="GSDLPATH" path="${gs2build.home}"/>
[19843]2673 </exec>
2674 <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.
2675 </echo>
2676 </target>
2677
2678 <!-- ================ gs2build targets =========================== -->
2679
2680 <target name="svnupdate-gs2build" if="collection.building.enabled" depends="init" unless="nosvn.mode">
2681 <echo>svn updating gs2build</echo>
[20930]2682 <exec executable="svn">
2683 <arg value="update"/>
2684 <arg value="${gs2build.home}"/>
2685 <arg value="-r"/><arg value="${branch.revision}"/>
2686 </exec>
[15799]2687 </target>
[19843]2688
[15124]2689 <target name="prepare-gs2build" depends="init" if="collection.building.enabled" unless="gs2build.present">
2690 <antcall target="checkout-gs2build"/>
[28259]2691 <antcall target="prepare-pdfbox"/>
[27199]2692 <antcall target="prepare-imagemagick"/> <!-- has to be done before calling prepare-gnome-lib -->
[26791]2693 <antcall target="prepare-gnome-lib"/>
[15124]2694 <antcall target="unzip-windows-packages"/>
2695 <antcall target="checkout-winbin"/>
2696 <antcall target="get-windows-binaries"/>
2697 <antcall target="delete-winbin"/>
2698 </target>
2699
[19843]2700 <target name="checkout-gs2build" depends="init" if="collection.building.enabled" unless="nosvn.mode">
2701 <echo>checking out gs2build</echo>
[20930]2702 <exec executable="svn">
2703 <arg value="checkout"/>
[21196]2704 <arg value="${svn.root}/main/${branch.path}/gs2build"/>
[20930]2705 <arg value="-r"/><arg value="${branch.revision}"/>
2706 </exec>
[26791]2707 </target>
[20930]2708
[28259]2709 <!-- Gets the PDFBox extension into gs2build/ext if checkout.pdfbox.ext is set to true in build.properties
2710 (which it is by default) -->
2711 <target name="prepare-pdfbox" depends="init" if="collection.building.enabled">
2712 <if>
2713 <bool>
2714 <istrue value="${checkout.pdfbox.ext}"/>
2715 </bool>
2716
2717 <property name="pdfbox.ext.dir" value="${gs2build.home}/ext/pdf-box"/>
2718 <condition property="pdfbox.ext.present">
2719 <available file="${pdfbox.ext.dir}" type="dir" />
2720 </condition>
2721
2722 <!-- get the pdfbox tar.gz file if we don't already have it and extract it if there's no pdf-box directory in gs2build/ext-->
2723 <if>
2724 <bool>
2725 <not><istrue value="${pdfbox.ext.present}"/></not>
2726 </bool>
[27034]2727
[28259]2728 <if>
2729 <bool>
2730 <not><istrue value="${gs2build.home}/ext/pdf-box-java.tar.gz"/></not>
2731 </bool>
2732
2733 <echo>Checking out the PDFBox extension into the GSDLHOME extension area</echo>
2734 <exec executable="svn">
2735 <arg value="export"/>
2736 <arg value="${svn.root}/gs2-extensions/pdf-box/trunk/pdf-box-java.tar.gz"/>
2737 <arg value="${gs2build.home}/ext/pdf-box-java.tar.gz"/>
2738 </exec>
2739 </if>
2740
2741 <echo>Extacting the PDFBox extension into the GSDLHOME extension area</echo>
2742 <untar compression="gzip"
2743 src="${gs2build.home}/ext/pdf-box-java.tar.gz"
[28610]2744 dest="${gs2build.home}/ext"/>
[28259]2745
2746 <delete file="${gs2build.home}/ext/pdf-box-java.tar.gz"/>
2747
2748 <else>
2749 <echo>The PDFBox extension already exists at ${pdfbox.ext.dir}</echo>
2750 </else>
2751 </if>
2752
2753 <else>
2754 <echo>**** Not preparing the PDFBox extension:</echo>
2755 <echo>The property checkout.pdfbox.ext in build.properties was not set or was set to false</echo>
2756 </else>
2757 </if>
2758 </target>
2759
[27199]2760 <target name="prepare-imagemagick" depends="init" if="collection.building.enabled">
2761 <if>
2762 <bool>
2763 <istrue value="${checkout.imagemagick.ext}"/>
2764 </bool>
2765
2766 <antcall target="checkout-imagemagick"/>
[28320]2767 <!--Compilation of imagemagick now happens during ant install, still before configuring the src code, as before -->
[27199]2768
2769 <else>
2770 <echo>**** Not preparing imagemagick:</echo>
2771 <echo>property checkout.imagemagick.ext in build.properties was not set or was set to false</echo>
2772 </else>
2773 </if>
2774 </target>
2775
2776 <target name="checkout-imagemagick" depends="init" if="collection.building.enabled" unless="nosvn.mode">
2777
2778 <property name="imagemagick.src.dir" value="${gs2build.home}/ext/imagemagick"/>
2779 <condition property="imagemagick.src.present">
2780 <available file="${imagemagick.src.dir}" type="dir" />
2781 </condition>
2782
2783 <if>
2784 <bool>
2785 <not><istrue value="${imagemagick.src.present}"/></not>
2786 </bool>
2787
2788 <echo>checking out imagemagick source into the extension area</echo>
2789
2790 <exec executable="svn">
2791 <arg value="checkout"/>
2792 <arg value="${svn.root}/gs2-extensions/imagemagick/trunk/src"/>
2793 <arg value="${imagemagick.src.dir}"/>
2794 </exec>
2795
2796 <else>
2797 <echo>imagemagick source code already exists at ${imagemagick.src.dir}</echo>
2798 </else>
2799 </if>
2800 </target>
2801
2802 <!-- Compile up imagemagick src folder if: the checkout.imagemagick.ext flag is turned on, if the imagick source code exists and if hasn't already been compiled up, then compile it up. Later can check if a gs-specific binary version has been installed already, in which case compilation won't be necessary. -->
2803 <target name="compile-imagemagick" if="checkout.imagemagick.ext">
2804
2805 <property name="imagemagick.src.dir" value="${gs2build.home}/ext/imagemagick"/>
2806 <property name="imagemagick.compiled.dir" value="${gs2build.home}/ext/imagemagick/${os.bin.dir}"/>
2807
[28320]2808 <condition property="imagemagick.src.present.firstcheck">
[27199]2809 <available file="${imagemagick.src.dir}" type="dir" />
2810 </condition>
2811 <condition property="imagemagick.compiled.present">
2812 <available file="${imagemagick.compiled.dir}" type="dir"/>
2813 </condition>
2814 <!--<condition property="imagemagick.bin.present">
2815 <available file="${basedir}/wherever/the/imgmagick/binary/is/to/be/found" type="dir" />
2816 </condition>-->
2817
[28320]2818 <!-- imagemagick will only be checked out if the user set the checkout.imagemagick.ext in build.properties -->
[27199]2819 <if>
2820 <bool>
[28320]2821 <isfalse value="${imagemagick.src.present.firstcheck}"/>
2822 </bool>
2823 <antcall target="checkout-imagemagick"/>
2824 </if>
2825
2826 <!-- keep track of whether the imagemagick src is now indeed present. Need to know this for a subsequent test -->
2827 <condition property="imagemagick.src.present">
2828 <available file="${imagemagick.src.dir}" type="dir" />
2829 </condition>
2830
2831 <if>
2832 <bool>
[27199]2833 <and>
2834 <istrue value="${imagemagick.src.present}"/> <!-- imagemagick src code is present -->
[28320]2835 <isfalse value="${imagemagick.compiled.present}"/> <!-- imagemagick src not compiled yet, so no imagemagick/os subfolder yet -->
2836 </and>
[27199]2837 </bool>
2838 <!-- then compile it. Only necessary for mac/linux, since windows has a stable working binary of imagemagick -->
2839 <exec executable="/bin/bash" dir="${imagemagick.src.dir}" failonerror="true">
2840 <arg value="CASCADE-MAKE.sh"/>
2841 </exec>
2842 </if>
2843 </target>
2844
2845
[27185]2846 <!-- Compile up gnome-lib src folder if: checkout.gnomelib.ext is turned on, and if not using the binary
[27034]2847 version (gnome-lib-minimal), and if the gnome-lib src folder is not already compiled up. -->
[27185]2848 <target name="compile-gnome-lib" if="checkout.gnomelib.ext">
[27034]2849
2850 <!-- http://stackoverflow.com/questions/3290307/sourcing-a-shell-profile-in-an-ant-build-file
2851 TODO: CASCADE-MAKE already sources devel.bash, but we still want to source it more globally,
2852 so that the rest of the GS3 compilation process also has access to those env variables -->
2853
2854 <property name="gnome.lib.src.dir" value="${basedir}/gs2build/ext/gnome-lib"/>
2855 <property name="gnome.lib.compiled.dir" value="${basedir}/gs2build/ext/gnome-lib/${os.bin.dir}"/>
2856
[28320]2857 <condition property="gnome.src.lib.present.firstcheck" value="true" else="false">
2858 <available file="${gnome.lib.src.dir}" type="dir" />
2859 </condition>
[28311]2860 <condition property="gnome.compiled.lib.present" value="true" else="false">
[27034]2861 <available file="${gnome.lib.compiled.dir}" type="dir"/>
2862 </condition>
[28311]2863 <condition property="gnome.lib.min.present" value="true" else="false">
[27034]2864 <available file="${basedir}/gs2build/ext/gnome-lib-minimal" type="dir" />
2865 </condition>
2866
[28311]2867 <!-- Make sure to checkout gnome-lib if it was not checked out at this stage
2868 since we're instructed to do so in th pre-condition to this target -->
[27034]2869 <if>
2870 <bool>
2871 <and>
[28320]2872 <isfalse value="${gnome.lib.min.present}"/>
2873 <isfalse value="${gnome.src.lib.present.firstcheck}"/>
[28311]2874 </and>
2875 </bool>
2876 <antcall target="checkout-gnome-lib"/>
2877 </if>
2878
[28320]2879 <!-- Keep track of whether we have the gnome-lib src folder now. Need to know this for a subsequent test -->
[28311]2880 <condition property="gnome.src.lib.present" value="true" else="false">
2881 <available file="${gnome.lib.src.dir}" type="dir" />
2882 </condition>
2883
2884 <!--<echo>MIN: ${gnome.lib.min.present}
2885 SRC LIB: ${gnome.src.lib.present}
2886 COMPILED: ${gnome.compiled.lib.present}</echo>-->
2887
2888 <if>
2889 <bool>
2890 <and>
2891 <isfalse value="${gnome.lib.min.present}"/> <!-- no gnome-lib-minimal binary present -->
[27034]2892 <istrue value="${gnome.src.lib.present}"/> <!-- gnome-lib folder for compilation is present-->
[28311]2893 <isfalse value="${gnome.compiled.lib.present}"/> <!-- gnome-lib not yet compiled, so no gnome-lib/os subfolder yet -->
[27034]2894 </and>
2895 </bool>
2896
2897 <!-- then compile it. Only necessary for mac/linux, since windows doesn't need gnome lib -->
2898 <exec executable="/bin/bash" dir="${gnome.lib.src.dir}" failonerror="true">
2899 <arg value="CASCADE-MAKE.sh"/>
2900 </exec>
2901 </if>
2902 </target>
2903
2904
[26791]2905 <target name="prepare-gnome-lib" depends="init" if="collection.building.enabled" unless="gnome-lib.present">
[27139]2906 <if>
2907 <bool>
[28643]2908 <istrue value="${checkout.gnomelib.ext}"/>
[27139]2909 </bool>
2910
[28643]2911 <antcall target="checkout-gnome-lib"/>
2912 <!--Compilation of gnome-lib happens during ant install, just before configuring (common-src and) build-src-->
2913
[28636]2914 <else>
[28643]2915 <echo>**** Not preparing gnome-lib:</echo>
2916 <echo>property checkout.gnomelib.ext in build.properties was not set or was set to false</echo>
[28636]2917 </else>
2918 </if>
2919 </target>
2920
2921
[26791]2922 <target name="checkout-gnome-lib" depends="init" if="collection.building.enabled" unless="nosvn.mode">
[27199]2923
2924 <property name="gnomelib.src.dir" value="${basedir}/gs2build/ext/gnome-lib"/>
2925 <condition property="gnome.src.present">
2926 <available file="${gnomelib.src.dir}" type="dir" />
2927 </condition>
2928
2929 <if>
2930 <bool>
2931 <not><istrue value="${gnome.src.present}"/></not>
2932 </bool>
2933
2934 <echo>checking out gnome-lib extension</echo>
2935 <exec executable="svn">
2936 <arg value="checkout"/>
2937 <arg value="${svn.root}/gs2-extensions/gnome-lib/trunk/src"/>
2938 <arg value="${gs2build.home}/ext/gnome-lib"/>
2939 </exec>
2940
2941 <else>
2942 <echo>gnomelib source code already exists at ${gnomelib.src.dir}</echo>
2943 </else>
2944 </if>
2945
[19843]2946 </target>
2947
[15124]2948 <target name="checkout-winbin" depends="init" if="current.os.iswindows"
[15799]2949 unless="nosvn.mode">
[20930]2950
2951 <exec executable="svn">
2952 <arg value="checkout"/>
[21196]2953 <arg value="${svn.root}/main/${branch.path}/binaries/windows"/>
[20930]2954 <arg value="-r"/><arg value="${branch.revision}"/>
[21196]2955 <arg value="winbin"/>
[20930]2956 </exec>
2957
[15124]2958 </target>
2959
[15799]2960 <target name="update-winbin" depends="init" if="current.os.iswindows" unless="nosvn.mode">
[20930]2961 <exec executable="svn">
2962 <arg value="update"/>
2963 <arg value="winbin"/>
2964 <arg value="-r"/><arg value="${branch.revision}"/>
2965 </exec>
2966
[15799]2967 </target>
[15124]2968
2969 <target name="get-windows-binaries" depends="init" if="collection.building.enabled.windows">
2970 <move todir="${gs2build.home}/bin/windows" failonerror="false">
2971 <fileset dir="${basedir}/winbin/bin"/>
2972 </move>
2973 </target>
[19843]2974
[15124]2975 <target name="delete-winbin" depends="init" if="collection.building.enabled.windows">
2976 <delete dir="${basedir}/winbin"/>
2977 </target>
2978
[19871]2979 <target name="unzip-windows-packages" depends="init" if="current.os.iswindows">
2980 <unzip src="${common.src.home}/packages/windows/crypt/crypt.zip"
2981 dest="${common.src.home}/packages/windows/crypt"/>
[18179]2982 <untar compression="gzip"
[19871]2983 src="${common.src.home}/packages/sqlite/${sqlite.targz.version}"
2984 dest="${common.src.home}/packages/sqlite"/>
2985 <unzip src="${common.src.home}/indexers/packages/windows/iconv/iconv.zip"
2986 dest="${common.src.home}/indexers/packages/windows/iconv"/>
[15799]2987 </target>
[19878]2988
[15124]2989 <target name="gs2build-edit-setup-bat" if="collection.building.enabled.windows">
2990 <!-- we want a windows path in the setup.bat file -->
2991 <pathconvert targetos="windows" property="gs2build.home.windows">
2992 <path path="${gs2build.home}"/>
2993 </pathconvert>
2994 <move file="${gs2build.home}/setup.bat" tofile="${gs2build.home}/setup-tmp.bat">
2995 <filterset>
[16620]2996 <filter token="gsdlhome" value="${gs2build.home.windows}"/>
[15799]2997 </filterset>
[15124]2998 </move>
2999 <move file="${gs2build.home}/setup-tmp.bat" tofile="${gs2build.home}/setup.bat" />
3000 </target>
3001
[19843]3002
[19948]3003 <target name="clean-build-src" depends="init" if="collection.building.enabled">
[19871]3004 <!-- unix: -->
[26079]3005 <if><bool><available file="${build.src.home}/Makefile"/></bool>
[19948]3006 <exec executable="make" os="${os.unix}" dir="${build.src.home}" failonerror="true">
[15124]3007 <arg value="clean"/>
3008 </exec>
[26079]3009 </if>
[15124]3010 <!-- windows: -->
[28044]3011 <exec executable="nmake" dir="${build.src.home}" osfamily="windows" failonerror="true">
[15799]3012 <arg value="/f"/>
3013 <arg value="win32.mak"/>
3014 <arg value="clean"/>
[19960]3015 <arg value="GSDLHOME=${gs2build.home}"/>
[15124]3016 </exec>
3017 </target>
3018
[19948]3019
3020 <target name="distclean-build-src" depends="init,clean-build-src" if="collection.building.enabled">
[19960]3021 <!-- unix: -->
[26079]3022 <if><bool><available file="${build.src.home}/Makefile"/></bool>
[19948]3023 <exec executable="make" os="${os.unix}" dir="${build.src.home}" failonerror="true">
[15124]3024 <arg value="distclean"/>
3025 </exec>
[26079]3026 </if>
[19960]3027 <!-- windows: distclean = clean + remove configure products (remove makefiles). But on Windows there is no removing makefiles, so we just call clean -->
[28044]3028 <exec executable="nmake" dir="${build.src.home}" osfamily="windows" failonerror="true">
[19960]3029 <arg value="/f"/>
3030 <arg value="win32.mak"/>
3031 <arg value="clean"/>
3032 <arg value="GSDLHOME=${gs2build.home}"/>
3033 </exec>
[15124]3034 </target>
[19843]3035
[28643]3036 <target name="configure-build-src" depends="init" if="collection.building.enabled"
[19931]3037 description="Configure the build-src component">
3038 <exec executable="${build.src.home}/configure" os="${os.unix}"
3039 dir="${build.src.home}" failonerror="true">
3040 <arg value="--prefix=${gs2build.home}"/>
[26765]3041 <arg line="${gs2.opt.args} ${static.arg} ${cross.configure.args} ${allargs}"/>
[19931]3042 </exec>
3043 </target>
[19910]3044
[19931]3045 <!-- common-src is done separately and needs to be compiled first -->
3046 <target name="compile-build-src" depends="init" if="collection.building.enabled">
3047
3048 <exec executable="make" dir="${build.src.home}" os="${os.unix}" failonerror="true">
[23611]3049 <arg line="${ldlpath.arg}"/>
[22845]3050 </exec>
3051
3052 <exec executable="make" dir="${build.src.home}" os="${os.unix}" failonerror="true">
[19931]3053 <arg value="install"/>
3054 </exec>
[19910]3055
[19931]3056 <!-- run the setup script -->
[28044]3057 <!-- <exec executable="${compile.windows.c++.setup}" osfamily="windows" failonerror="true"/>-->
[19910]3058 <!--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-->
[28044]3059 <exec executable="nmake" dir="${build.src.home}" osfamily="windows" failonerror="true">
[19910]3060 <arg value="/f"/>
3061 <arg value="win32.mak"/>
[19934]3062 <arg value="GSDLHOME=${gs2build.home}"/>
[19910]3063 </exec>
[28044]3064 <exec executable="nmake" dir="${build.src.home}" osfamily="windows" failonerror="true">
[19910]3065 <arg value="/f"/>
3066 <arg value="win32.mak"/>
3067 <arg value="install"/>
[19934]3068 <arg value="GSDLHOME=${gs2build.home}"/>
[19910]3069 </exec>
[15124]3070 </target>
3071
3072
[15799]3073 <!-- ======================== TESTING Targets ========================= -->
[15124]3074
3075 <target name="test" description="Run the (incomplete) JUnit test suite "
3076 depends="init">
3077 <mkdir dir="${basedir}/test"/>
3078 <junit printsummary="withOutAndErr"
3079 errorproperty="test.failed"
3080 failureproperty="test.failed"
3081 fork="${junit.fork}">
3082 <formatter type="plain"/>
3083 <classpath>
[16936]3084 <pathelement location="${build.home}/gsdl3test.jar"/>
3085 <path refid="compile.classpath"/>
[15124]3086 </classpath>
3087 <test name="${testcase}" if="testcase"/>
3088 <batchtest todir="${basedir}/test" unless="testcase">
[18505]3089 <fileset dir="${build.home}" includes="**/*Test.class" />
[15124]3090 </batchtest>
3091 </junit>
3092 <echo>
3093 *********************************************
[15799]3094 Test output can be found in directory 'test'
[15124]3095 *********************************************
3096 </echo>
3097 </target>
[15799]3098
[20950]3099 <!-- ======================== FLAX Targets ========================= -->
3100 <target name="prepare-flax" description="check out flax source code from another repository" if="install.flax">
3101 <echo>checking out flax ...</echo>
3102 <mkdir dir="${basedir}/src/java/org/flax"/>
3103 <mkdir dir="${basedir}/src/java/org/greenstone/gsdl3/flax"/>
[22198]3104 <mkdir dir="${basedir}/src/java/org/greenstone/gsdl3/action/flax"/>
[20950]3105 <mkdir dir="${web.home}/WEB-INF/classes/flax"/>
3106 <mkdir dir="${web.home}/interfaces/flax"/>
3107 <mkdir dir="${web.home}/sites/flax"/>
3108 <mkdir dir="${basedir}/flax-resources"/>
3109 <mkdir dir="${basedir}/flax-lib"/>
[21272]3110 <exec executable="svn"><arg value="checkout"/><arg value="${flax.checkout.path}/src/java/org/flax"/>
3111 <arg value="src/java/org/flax"/></exec>
3112 <exec executable="svn"><arg value="checkout"/><arg value="${flax.checkout.path}/src/java/org/greenstone/gsdl3/flax"/>
3113 <arg value="src/java/org/greenstone/gsdl3/flax"/></exec>
[22198]3114 <exec executable="svn"><arg value="checkout"/><arg value="${flax.checkout.path}/src/java/org/greenstone/gsdl3/action/flax"/>
3115 <arg value="src/java/org/greenstone/gsdl3/action/flax"/></exec>
3116 <exec executable="svn"><arg value="checkout"/><arg value="${flax.checkout.path}/web/WEB-INF/classes/flax"/>
[21272]3117 <arg value="${web.home}/WEB-INF/classes/flax"/></exec>
3118 <exec executable="svn"><arg value="checkout"/><arg value="${flax.checkout.path}/web/interfaces/flax"/>
3119 <arg value="${web.home}/interfaces/flax"/></exec>
3120 <exec executable="svn"><arg value="checkout"/><arg value="${flax.checkout.path}/web/sites/flax"/>
3121 <arg value="${web.home}/sites/flax"/></exec>
3122 <exec executable="svn"><arg value="checkout"/><arg value="${flax.checkout.path}/flax-resources"/>
3123 <arg value="flax-resources"/></exec>
3124 <exec executable="svn"><arg value="checkout"/><arg value="${flax.checkout.path}/lib"/>
3125 <arg value="flax-lib"/></exec>
[25901]3126 <antcall target="flax-copy-del-files" />
[20950]3127 </target>
[23442]3128
[25901]3129 <target name="flax-copy-del-files" description="copy some flax files into the appropriate greenstone3 directories and delete some unwanted greenstone stuff">
[23442]3130 <copy file="${web.home}/WEB-INF/classes/flax/web.xml" todir="${web.home}/WEB-INF" overwrite="true" />
3131 <copy todir="${web.home}/WEB-INF/lib">
[25901]3132 <fileset dir="${basedir}/flax-lib">
3133 <include name="*.jar"/>
3134 </fileset>
[23442]3135 </copy>
[25904]3136 <!--<delete dir="${web.home}/sites/gateway"/>
3137 <delete dir="${web.home}/sites/localsite"/>-->
[23442]3138 </target>
[20950]3139
3140 <target name="update-flax" description="update flax from repository">
3141 <echo>updating flax ...</echo>
[21272]3142 <exec executable="svn"><arg value="update"/>
3143 <arg value="src/java/org/flax"/></exec>
3144 <exec executable="svn"><arg value="update"/>
[22198]3145 <arg value="src/java/org/greenstone/gsdl3/action/flax"/></exec>
3146 <exec executable="svn"><arg value="update"/>
[21272]3147 <arg value="src/java/org/greenstone/gsdl3/flax"/></exec>
3148 <exec executable="svn"><arg value="update"/>
3149 <arg value="${web.home}/WEB-INF/classes/flax"/></exec>
3150 <exec executable="svn"><arg value="update"/>
3151 <arg value="${web.home}/interfaces/flax"/></exec>
3152 <exec executable="svn"><arg value="update"/>
[24366]3153 <arg value="${web.home}/web/sites/flax"/></exec>
3154 <exec executable="svn"><arg value="update"/>
[21272]3155 <arg value="flax-resources"/></exec>
3156 <exec executable="svn"><arg value="update"/>
3157 <arg value="flax-lib"/></exec>
[24098]3158 <antcall target="compile-core" />
[20950]3159 </target>
3160
[25901]3161 <!-- ========================End of FLAX Targets ========================= -->
[20963]3162
[19354]3163 <target name="compile-javadocs">
3164 <javadoc packagenames="org.greenstone.*"
3165 sourcepath="src/java"
3166 defaultexcludes="yes"
3167 destdir="docs/javadoc"
3168 author="true"
3169 version="true"
3170 use="true"
3171 windowtitle="Greenstone3 API">
3172 <doctitle><![CDATA[<h1>Greenstone3 API</h1>]]></doctitle>
3173 </javadoc>
3174 </target>
3175
[20089]3176<!-- ========== Some distribution targets ======================== -->
[19972]3177 <target name="remove-source">
[23809]3178 <if><bool><isset property="with.gli.and.gems"/></bool>
[19975]3179 <delete includeEmptyDirs="true">
3180 <fileset dir="." defaultexcludes="false">
3181 <patternset refid="greenstone3.source.component"/>
3182 </fileset>
3183 </delete>
[23809]3184
3185 <else>
3186 <delete includeEmptyDirs="true">
3187 <fileset dir="." defaultexcludes="false">
3188 <patternset refid="greenstone3.source.no.gli.component"/>
3189 </fileset>
3190 </delete>
3191 </else>
3192 </if>
[19972]3193 </target>
3194
[19903]3195 <target name="dist-tidy"
[29387]3196 description="'tidies-up' a greenstone3 installation for distribution."
3197 unless="${properties.keep.src}">
[19903]3198
3199 <!-- delete unneeded things -->
3200 <delete dir="${packages.home}/axis"/>
3201 <delete><fileset dir="${packages.home}" includes="*.zip"/></delete>
3202 <delete file="README-SVN.txt"/>
[20215]3203 <delete file="build.properties.in"/>
[19903]3204
[19961]3205 <!-- delete source files -->
[19972]3206 <antcall target="remove-source"/>
[19903]3207
3208 <!-- create empty directories -->
[27829]3209 <mkdir dir="${web.writablehome}/applet"/>
3210 <mkdir dir="${web.writablehome}/logs"/>
3211 <mkdir dir="${web.writablehome}/logs/tmp"/>
[19903]3212
[27902]3213 <!-- Lines with ***** are commented out because these files are useful if we want hybrid installations -->
3214
[19903]3215 <!-- os specific tidy-ups -->
[20051]3216 <!-- linux, mac -->
3217 <if><bool><istrue value="${current.os.isunix}"/></bool>
[27902]3218 <!--*****<delete><fileset dir="." includes="*.bat"/></delete>-->
[23809]3219 <if><bool><isset property="with.gli.and.gems"/></bool>
[27902]3220 <!--*****<delete><fileset dir="gli" includes="*.bat"/></delete>-->
[23809]3221 </if>
[27902]3222 <!--*****<delete><fileset dir="gs2build" includes="*.bat"/></delete>-->
3223 <!--*****<delete><fileset dir="bin/script" includes="*.bat"/></delete>-->
[19946]3224 <delete file="${basedir}/gs2build/win32cfg.h"/>
[19939]3225 <delete file="${basedir}/gs2build/win32.mak"/>
[20051]3226 <delete dir="${basedir}/winutil"/>
[19903]3227 <delete failonerror="false"><fileset dir="${lib.jni}" includes="*.dll"/></delete>
3228
[20051]3229 <!-- windows -->
3230 <else><if><bool><istrue value="${current.os.iswindows}"/></bool>
[27902]3231 <!--*****<delete><fileset dir="." includes="*.sh,*.bash,*.csh"/></delete>-->
[23809]3232 <if><bool><isset property="with.gli.and.gems"/></bool>
[27902]3233 <!--*****<delete><fileset dir="gli" includes="*.sh,*.bash,*.csh"/></delete>-->
[23809]3234 </if>
[27902]3235 <!--*****<delete><fileset dir="gs2build" includes="*.sh,*.bash,*.csh"/></delete>-->
3236 <!--*****<delete><fileset dir="bin/script" includes="*.sh,*.bash,*.csh"/></delete>-->
[20051]3237 </if></else></if>
3238
[19903]3239 </target>
3240
[20089]3241 <!-- fix up executable permissions for binary release -->
3242 <target name="fix-execute-permissions">
3243 <echo>Setting binaries to executable</echo>
[20127]3244 <chmod perm="775">
3245 <fileset dir="."><patternset refid="greenstone3.executables"/></fileset>
3246 </chmod>
[20089]3247 </target>
3248
3249 <!-- fix up executable permissions for source code release -->
3250 <target name="fix-execute-permissions-source">
[20127]3251 <chmod perm="775">
3252 <fileset dir="."><patternset refid="greenstone3.source.executables"/></fileset>
3253 </chmod>
[20089]3254 </target>
3255
[27380]3256 <!-- for macs, set up the .app shortcuts to gsi, gli, client-gli and gems -->
3257 <target name="gen-mac-shortcuts">
3258 <if><bool><istrue value="${current.os.ismac}"/></bool>
3259 <filter token="gsdl3srchome" value="${basedir}"/>
3260 <copy file="${basedir}/gs3-server.app/Contents/document.wflow.in" tofile="${basedir}/gs3-server.app/Contents/document.wflow" filtering="true" overwrite="true"/>
3261 <copy file="${basedir}/gli.app/Contents/document.wflow.in" tofile="${basedir}/gli.app/Contents/document.wflow" filtering="true" overwrite="true"/>
3262 <copy file="${basedir}/client-gli.app/Contents/document.wflow.in" tofile="${basedir}/client-gli.app/Contents/document.wflow" filtering="true" overwrite="true"/>
3263 <copy file="${basedir}/gems.app/Contents/document.wflow.in" tofile="${basedir}/gems.app/Contents/document.wflow" filtering="true" overwrite="true"/>
3264 </if>
3265 </target>
[20089]3266
[19931]3267 <!-- ============= tweaks for making compilation static ========== -->
3268 <target name="tweak-makefiles" depends="init" if="compile.static">
3269 <antcall target="rtftohtml-add-static" />
3270 </target>
3271
3272 <target name="rtftohtml-add-static" depends="init" if="collection.building.enabled">
[28136]3273 <rsr verbosity="1" file="${gs2build.home}/build-src/packages/rtftohtml/rtftohtml_src/Makefile" pattern="-o rtftohtml(.{2})EXEEXT(.{1})" replacement="-o rtftohtml$1EXEEXT$2 -static" />
[19931]3274 </target>
3275
[26115]3276 <target name="run-collection-tests">
3277 <if><bool><not><available file="${basedir}/ext/testing" type="dir"/></not></bool>
3278 <fail>The testing extension is not available. This is required to perform the tests. It can be acquired from SVN by running the command "svn co http://svn.greenstone.org/gs3-extensions/testing/trunk/src testing" in the ext directory of your Greenstone 3 installation. </fail>
3279 </if>
3280 <for param="testjar">
3281 <path>
3282 <fileset dir="${basedir}" includes="web/sites/*/collect/*/tests/tests.jar"/>
3283 </path>
3284 <sequential>
3285 <echo>Testing @{testjar}</echo>
3286 <java classname="org.junit.runner.JUnitCore" fork="true">
3287 <arg value="gstests.TestClass"/>
3288 <jvmarg value="-DSERVERURL=http://${tomcat.server}:${tomcat.port}${app.path}${server.default.servlet} "/>
3289 <classpath>
3290 <fileset dir="${basedir}/ext/testing/lib/java">
3291 <include name="*.jar"/>
3292 </fileset>
3293 <files includes="@{testjar}"/>
3294 </classpath>
3295 </java>
3296 </sequential>
3297 </for>
3298 </target>
3299
3300 <target name="build-collection-tests">
3301 <if><bool><not><available file="${basedir}/ext/testing" type="dir"/></not></bool>
3302 <fail>The testing extension is not available. This is required to perform the tests. It can be acquired from SVN by running the command "svn co http://svn.greenstone.org/gs3-extensions/testing/trunk/src testing" in the ext directory of your Greenstone 3 installation. </fail>
3303 </if>
3304 <for param="compiledir">
3305 <path>
3306 <dirset dir="${basedir}" includes="web/sites/*/collect/*/tests/src"/>
3307 </path>
3308 <sequential>
3309 <echo>Compiling @{compiledir}</echo>
3310 <if><bool><not><available file="@{compiledir}/../build" type="dir"/></not></bool>
3311 <mkdir dir="@{compiledir}/../build"/>
3312 </if>
3313 <javac
3314 srcdir="@{compiledir}"
3315 destdir="@{compiledir}/../build"
[28137]3316 includeantruntime="${compile.includeantruntime}"
[26115]3317 debug="${compile.debug}"
3318 deprecation="${compile.deprecation}"
[29515]3319 optimize="${compile.optimize}"
3320 encoding="${compile.encoding}">
[26115]3321 <classpath>
3322 <fileset dir="${basedir}/ext/testing/lib/java">
3323 <include name="*.jar"/>
3324 </fileset>
3325 </classpath>
3326 <include name="gstests/*.java"/>
3327 </javac>
3328 <jar destfile="@{compiledir}/../tests.jar">
3329 <fileset dir="@{compiledir}/../build">
3330 <include name="gstests/**"/>
3331 </fileset>
3332 <manifest>
3333 <attribute name="Built-By" value="${user.name}" />
3334 </manifest>
3335 </jar>
3336 </sequential>
3337 </for>
3338 </target>
[26002]3339</project>
Note: See TracBrowser for help on using the repository browser.