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

Last change on this file since 32478 was 32478, checked in by ak19, 6 years ago

On Windows, we're now also using openSSL to convert the certificate to .pfx instead of letting the windows ZeroSSL binary do that for us (for added security again, as we don't want to trust a 3rd party with the private key included in the certificate). I forgot but we were already using openSSL on Linux to convert the certificate to p12, because the certbot-auto did not do that step for us like zeroSSl did.

File size: 179.8 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 -->
[32356]54
55 <!-- Developer property. Set value=true if you want test https certificates issued
56 (as there's a limit on how many real certificates you can be issued per week).
57 If not testing can either uncomment this property or set value=false.
[32383]58 BEWARE: iff test.mode is true (so https.testing gets set to minus-minus-staging)
[32429]59 AND the default protocol is https (server.protocols contains https first), the
60 check-tomcat-running target and any other targets running an ant http condition
61 to test the default GS DL URL (which will be over https) won't work.
62 This is because the testing certificate is not trusted by clients, in this case
63 the ant http condition. (Clients that are browsers can be set to temporarily
64 trust the testing certificate, but don't know how to make ant do that, maybe it
65 needs to be done at Java level.)
[32383]66 Ant socket conditions to the URL will work because socket tests don't use
67 the protocol, just the host and port.
[32356]68 -->
[32350]69 <property name="https.test.mode" value="false"/>
[18227]70
[27834]71 <property name="os.linux" value="Linux"/>
72 <property name="os.mac" value="Mac OS X"/>
73 <property name="os.solaris" value="SunOS"/>
74 <property name="os.unix" value="${os.linux},${os.mac},${os.solaris}"/>
[28042]75 <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]76
77 <!-- this is true for linux and macs -->
78 <condition property="current.os.isunix">
79 <os family="unix"/>
80 </condition>
81
82 <condition property="current.os.isunixnotmac">
83 <and>
84 <os family="unix"/>
85 <not>
86 <os family="mac"/>
87 </not>
88 </and>
89 </condition>
90
91 <condition property="current.os.ismac">
92 <os family="mac"/>
93 </condition>
94
95 <condition property="current.os.iswindows">
96 <os family="windows"/>
97 </condition>
98
[18227]99 <!-- create build.properties if it has not been created yet -->
100 <if>
101 <bool><not><available file="build.properties"/></not></bool>
[32310]102 <copy file="build.properties.svn" tofile="build.properties"/>
[32370]103 <property name="first.run" value="true"/>
[18227]104 </if>
105
[18515]106 <!-- create the packages dir if it has not been created yet -->
107 <mkdir dir="packages"/>
[15799]108
[15859]109 <!--the first three properties have to be put on the top to be used by build.properties-->
[19960]110 <property name="gs2build.home" value="${basedir}${file.separator}gs2build"/>
[15124]111 <property name="src.packages.home" value="${basedir}/src/packages"/>
[15859]112 <property name="flax.svn.root" value="http://svn.greenstone.org/flax"/>
[19878]113
[27860]114 <property name="solr-ext.home" value="${basedir}/ext/solr"/>
115
[15124]116 <property file="build.properties"/>
[16962]117 <if><bool><available file="${user.home}/build.properties"/></bool>
118 <property file="${user.home}/build.properties"/>
119 </if>
[15124]120
[32429]121 <if>
122 <bool><not><matches string="${server.protocols}" pattern="^\s*(https?|http\s*,\s*https|https\s*,\s*http)\s*$"/></not></bool>
123 <fail>@@@@
124 In file build.properties: invalid value for server.protocols.
125 It must contain http or https, or both (in order of preference) separated by commas.
126 </fail>
127 </if>
[32334]128
[32429]129 <!--
[32355]130 * "valid ports range from 1024–49151" is probably about user assignable ports.
131 But 80 is a valid port for running web servers including GS
132 and in future the range may become greater, so don't restrict the port range to 1024-49151.
[32334]133 https://stackoverflow.com/questions/113224/what-is-the-largest-tcp-ip-network-port-number-allowable-for-ipv4
134 -->
135 <if>
136 <bool>
[32429]137 <not><matches string="${localhost.port.http}" pattern="^\d{2,}\s*$"/></not>
[32334]138 </bool>
[32339]139 <fail>...
[32429]140 ********* ERROR: localhost.port.http in file build.properties is set to an invalid port number.
[32355]141 If port 80 is not possible, user assignable ports range from 1024–49151.
142 But don't choose any port already in use by another application.
[32429]143 Try setting to localhost.port.http=8383
[32339]144 </fail>
[32334]145 </if>
146
[32429]147 <!-- if server.protocols contains https, ensure its port number is valid -->
[32339]148 <if>
149 <bool>
150 <and>
[32429]151 <matches string="${server.protocols}" pattern="https"/>
[32355]152 <not><matches string="${tomcat.port.https}" pattern="^\d{2,}\s*$"/></not>
[32339]153 </and>
154 </bool>
155 <fail>...
[32429]156 ********* ERROR: in file build.properties, server.protocols includes https but
157 tomcat.port.https is set to an invalid port number.
[32427]158 If port 443 is not possible, user assignable ports range from 1024–49151.
[32355]159 But don't choose any port already in use by another application.
[32339]160 Try setting tomcat.port.https=8443
161 </fail>
162 </if>
163
[32340]164 <!--
[32346]165 Bail if https is enabled but the keystore password (keystore.pass property) is not set.
[32429]166 However, keystore.pass has no default value and is therefore not set as a rule.
167 So don't bail when 'ant' is run for the first time to create build.props from build.props.svn.
168 But do bail if running ant.prepare and https enabled and password not set.
169 (Maybe put this entire section before the first target: so we only bail after all non-targets
170 are executed so that any other first ever initialisation is completed?)
[32346]171 -->
172 <if>
173 <bool>
174 <and>
[32429]175 <matches string="${server.protocols}" pattern="https"/>
[32346]176 <or>
177 <not><isset property="keystore.pass"/></not>
178 <matches string="${keystore.pass}" pattern="^\s*$"/>
179 </or>
180 </and>
181 </bool>
182 <if>
183 <bool><isset property="first.run"/></bool>
[32429]184 <echo>IMPORTANT: In file build.properties, when property server.protocols includes https,
185 as now, the keystore.pass property must be set to a non-empty value.
186 Either set server.protocols to http by itself, if you don't want support for https,
187 or set keystore.pass if you do want https support.</echo>
[32346]188 <else>
189 <fail>...
[32429]190 ********* ERROR: server.protocols contains https in file build.properties, but the keystore.pass
191 property required for obtaining/renewing the https certificate is not set or is set to the empty
192 string. Choose a password for keystore.pass and set it in build.properties before proceeding.
[32346]193 </fail>
194 </else>
195 </if>
196 </if>
197
[32429]198 <!-- Set the keystore file name for linux versus windows. Ultimately unused/inactive if HTTPS
199 isn't enabled and no certificate obtained. We don't yet have https certification on mac -->
200 <condition property="keystore.file" value="fullchain_and_prvtkey.pfx" else="fullchain_and_prvtkey.p12">
201 <istrue value="${current.os.iswindows}"/>
202 </condition>
203
204 <!-- Originally, https redirectPort when using regular http port 8383
205 was always fixed at 8443. Now we use redirectPort=tomcat.port.https.
[32340]206 -->
[32429]207 <property name="https.redirect.port" value="${tomcat.port.https}"/>
208
209 <!-- The default protocol to be used is the FIRST in the comma separated list for server.protocols
210 The default public tomcat port depends on the default server protocol
[32339]211 -->
212 <if>
[32429]213 <bool><matches string="${server.protocols}" pattern="^https"/></bool>
214 <property name="default.server.protocol" value="https"/>
215 <property name="default.tomcat.port" value="${tomcat.port.https}"/>
216 <else>
217 <property name="default.server.protocol" value="http"/>
218 <property name="default.tomcat.port" value="${localhost.port.http}"/>
219 </else>
[32339]220 </if>
[32429]221
[32339]222
[32429]223 <!-- For setting filter tokens.
224 Used to set up server.xml when configuring tomcat -->
225 <property name="comment.start" value="&lt;!--" />
226 <property name="comment.end" value="--&gt;" />
[32359]227
[32429]228 <!--
229 If https is enabled, regardless of whether it is the default protocol,
230 there's some more work to do:
231 -
232 - if https is not enabled, comment out its Connecter element in server.xml
233 -->
234 <if>
235 <bool><matches string="${server.protocols}" pattern="https"/></bool>
236 <property name="https.comment.out.start" value=""/>
237 <property name="https.comment.out.end" value=""/>
[32334]238
[32429]239 <else>
240 <property name="https.comment.out.start" value="${comment.start}"/>
241 <property name="https.comment.out.end" value="${comment.end}"/>
242 </else>
243 </if>
[32339]244
[32429]245 <!-- if server.protocols doesn't contain http, then http is only to be locally available,
246 e.g. for solr servlet on 127.0.0.1
247 In that case, see https://serverfault.com/questions/218666/how-to-configure-tomcat-to-only-listen-to-127-0-0-1
248 -->
249 <condition property="restrict.http.to.local" value="false" else="true">
250 <matches string="${server.protocols}" pattern="http($|\s+|,)"/>
251 </condition>
252
253 <condition property="http.address.restriction" value="address=&quot;127.0.0.1&quot;" else="">
254 <istrue value="${restrict.http.to.local}"/>
255 </condition>
[32346]256
[32429]257 <!-- No certificates for localhost: https://letsencrypt.org/docs/certificates-for-localhost/
258 But 'localhost' (or actually, 127.0.0.1) needed for solr: solr servlet not accessible to outside world
259 -->
[32432]260 <condition property="local.http.url" value="http://${localhost.server.http}" else="http://${localhost.server.http}:${localhost.port.http}">
261 <equals arg1="${localhost.port.http}" arg2="80" trim="true"/>
262 </condition>
[32429]263
[32416]264 <!-- On linux, if testing https certification, pass in minus-minus-staging. If not testing on linux, nothing extra to pass in.
265 On windows, if testing https certification, nothing extra to pass in. If not testing on windows, pass in minus-minus-live.
266 No https certification automation (yet) for macs.
267 -->
268 <if><bool><istrue value="${current.os.isunixnotmac}"/></bool>
269 <condition property="https.testing" value="" else="--staging">
270 <isfalse value="${https.test.mode}"/>
271 </condition>
272 </if>
273 <if><bool><istrue value="${current.os.iswindows}"/></bool>
274 <condition property="https.testing" value="--live" else="">
275 <isfalse value="${https.test.mode}"/>
276 </condition>
[32421]277 <!-- Set bitness of windows OS, so we can use it for the zeroSSL executable.
278 The Java system property os.arch will return x86 for 32 bit and AMD64 (or x64) for 64 bit OS.
279 See https://stackoverflow.com/questions/20856694/how-to-find-the-os-bit-type -->
280 <condition property="os.bitness" value="64" else="32">
281 <matches string="${os.arch}" pattern="64"/>
282 </condition>
[32416]283 </if>
[32350]284
[20464]285 <!-- now we've read in properties, apply defaults -->
286 <property name="disable.collection.building" value="false"/>
287
[15124]288 <!-- get properties from the environment -->
289 <property environment="env"/>
[15799]290
[20127]291 <!-- get the filesets defining components and executables -->
[19975]292 <import file="resources/xml/components.xml"/>
[20127]293 <import file="resources/xml/executables.xml"/>
[15799]294
295 <!-- version properties for external packages -->
[20079]296 <!-- for Java versions < 1.4, we print out the message that Java is too old.
[25131]297 For Java 1.4, we use Tomcat 5.5, for Java5 and higher, we use Tomcat 7.0-->
[29578]298 <condition property="tomcat.version" value="apache-tomcat-5.5.25" else="apache-tomcat-7.0.57">
[20079]299 <equals arg1="1.4" arg2="${ant.java.version}"/>
300 </condition>
[25131]301 <condition property="tomcat.version.major" value="5" else="7">
[20079]302 <equals arg1="1.4" arg2="${ant.java.version}"/>
303 </condition>
[22320]304 <condition property="privileged.attribute" value="privileged='true'" else="">
[25384]305 <equals arg1="7" arg2="${tomcat.version.major}"/>
[22320]306 </condition>
[20233]307
[29845]308 <!-- external access to the GS3 pages or not
309 https://tomcat.apache.org/tomcat-7.0-doc/config/valve.html -->
310 <condition property="allowed.IPs"
311 value=".*"
312 else="(127\.0\.0\.1|::1|0:0:0:0:0:0:0:1)">
313 <matches pattern="^(1|true|yes)$" string="${server.external.access}"/>
314 </condition>
315
[22405]316 <property name="axis.zip.version" value="axis-bin-1_4.zip"/>
317 <property name="axis.dir.version" value="axis-1_4"/>
[24077]318 <property name="sqlite.targz.version" value="sqlite-autoconf-3070602.tar.gz"/>
[15799]319
[15124]320 <property name="build.home" value="${basedir}/build"/>
321 <property name="src.home" value="${basedir}/src/java"/>
[27829]322
323 <if><bool><istrue value="${gsdl3home.isreadonly}"/></bool>
324 <property name="readonly-packages.home" value="${basedir}/packages"/>
325 <property name="packages.home" value="${gsdl3.writablehome}/packages"/>
[30303]326 <!--
[30304]327 To run solr from a read-only location (like a DVD-ROM), its locktype needs to be "single",
[30303]328 else solr tries to write out a lock file to the collection's index folder which is read-only.
329
330 https://cwiki.apache.org/confluence/display/solr/IndexConfig+in+SolrConfig
331 says that the "single" locktype is "for special situations of a read-only index directory, or ...."
332
333 See also http://wiki.apache.org/lucene-java/AvailableLockFactories
[30304]334 And look for the documentation on "locktype" in solr collection's etc/conf/solrconfig.xml
335 for further information on the different locktypes.
[30303]336
337 To set the locktype property from the commandline (it's a property to the server web), pass in
338 "-Dsolr.lock.type=..." to the web server, as explained in
339 http://lucene.472066.n3.nabble.com/Where-can-we-set-the-parameters-in-Solr-Config-td4183706.html
340 -->
341 <property name="readonly.catalina.opts" value="-Dsolr.lock.type=single"/>
[27829]342 <else>
343 <property name="packages.home" value="${basedir}/packages"/>
[30303]344 <property name="readonly.catalina.opts" value=""/>
[27829]345 </else>
346 </if>
347
348 <!-- this may be set in build.properties, e.g. if you move the web dir to
349 tomcats webapps directory -->
[15124]350 <property name="web.home" value="${basedir}/web"/>
[27829]351 <property name="web.writablehome" value="${gsdl3.writablehome}"/>
[30573]352 <!-- If using a dispersed GS3 web folder, then the user web would not contain everything in the
353 default GS3 web (it won't contain a CGI or lib folder inside WEB-INF, for instance) -->
[30568]354 <if>
355 <bool><available file="${web.home}/WEB-INF/cgi" type="dir"/></bool>
356 <property name="full.web.dir" value="${web.home}"/>
357 <else>
358 <property name="full.web.dir" value="${basedir}/web"/>
359 </else>
360 </if>
361
[15124]362 <!-- jar files needed by applets go here -->
363 <property name="web.applet" value="${web.home}/applet"/>
[30568]364
[15124]365 <!-- jar files needed by the servlet (and extra ones) go here -->
366 <property name="web.lib" value="${web.home}/WEB-INF/lib"/>
[27829]367 <property name="web.writablelib" value="${web.writablehome}/WEB-INF/lib"/>
[15124]368 <!-- other files needed by the servlet go here -->
369 <property name="web.classes" value="${web.home}/WEB-INF/classes"/>
[27829]370 <property name="web.writableclasses" value="${web.writablehome}/WEB-INF/classes"/>
371
372 <if>
373 <bool><istrue value="${gsdl3home.isreadonly}"/></bool>
374 <echo>Greenstone3 home directory is read-only</echo>
375 <echo> => Writable area is: ${gsdl3.writablehome}</echo>
376
377 <condition property="gsdl3.writablehome.already-exists">
378 <available file="${gsdl3.writablehome}" type="dir"/>
379 </condition>
380
381 <if>
382 <bool><not><istrue value="${gsdl3.writablehome.already-exists}"/></not></bool>
383
384 <!-- set up writable area -->
385 <echo>No previous Greenstone home writable area detected</echo>
386 <echo> => Setting up area</echo>
387 <mkdir dir="${gsdl3.writablehome}"/>
388 <mkdir dir="${gsdl3.writablehome}/packages"/>
389 <mkdir dir="${gsdl3.writablehome}/logs"/>
[27860]390 <mkdir dir="${gsdl3.writablehome}/ext/solr"/>
[27829]391
392 <chmod perm="a+rwx" dir="${gsdl3.writablehome}"/>
393 <chmod perm="a+rwx" dir="${gsdl3.writablehome}/packages"/>
394 <chmod perm="a+rwx" dir="${gsdl3.writablehome}/logs"/>
[27860]395 <chmod perm="a+rwx" dir="${gsdl3.writablehome}/ext/solr"/>
[27829]396
397 <!-- copy over packages tomcat folder -->
398
399 <if>
[27834]400 <bool><istrue value="${current.os.iswindows}"/></bool>
[27829]401 <copy todir="${gsdl3.writablehome}/packages/tomcat"
402 preservelastmodified="true"
403 failonerror="true" >
404 <fileset dir="${readonly-packages.home}/tomcat" includes="**"/>
405 </copy>
406
407 <else>
408 <!-- else assume Unix -->
[30279]409 <!-- Can't go through the OS-independent <copy> task as it fails to preserve exec permissions -->
[27829]410 <echo>Copying to ${gsdl3.writablehome}/packages/tomcat</echo>
411 <exec executable="cp" output="/dev/null" spawn="false">
412 <arg value="-r"/>
413 <arg value="${readonly-packages.home}/tomcat"/>
414 <arg value="${gsdl3.writablehome}/packages/."/>
415 </exec>
[30279]416
417 <!-- the packages folder in tmp only has read permissions at this stage, it needs more permissions to work when running GS3 off a disc -->
418 <chmod perm="a+rwx" file="${gsdl3.writablehome}/packages/**" />
419
[27829]420 </else>
421 </if>
422
423 <echo> => Copying Greenstone's web/WEB-INF to writable area</echo>
424 <copy todir="${gsdl3.writablehome}/WEB-INF"
425 preservelastmodified="true"
426 failonerror="true" >
[30568]427 <fileset dir="${full.web.dir}/WEB-INF" includes="**"/>
[27829]428 </copy>
429
430 <copy todir="${gsdl3.writablehome}"
431 preservelastmodified="true"
432 failonerror="true" >
433 <fileset dir="${web.home}" includes="index.html"/>
434 </copy>
435
436 </if>
437 </if>
438
439
[15124]440 <!--- flax: the WordNet home -->
441 <property name="wn.home" value="${web.home}/WEB-INF/classes/flax/WordNet"/>
442
443 <!-- jni libraries and java wrappers go here -->
444 <property name="lib.jni" value="${basedir}/lib/jni"/>
[19878]445
446 <!-- other jar files needed for installation (but not runtime) go here -->
[18110]447 <property name="lib.java" value="${basedir}/lib/java"/>
[15799]448
[15124]449 <property name="javadocs" value="${basedir}/docs/javadoc"/>
450
451 <property name="app.name" value="greenstone3"/>
[31508]452 <property name="app.path" value="/${greenstone.context}"/>
[15124]453
[18124]454 <property name="admin.dir" value="${basedir}/admin"/>
[15124]455
[27829]456 <!-- defaults - set these on the command line or in build.properties or
457 they will take these default values-->
[15124]458 <property name="app.version" value="trunk"/>
459 <property name="branch.path" value="trunk"/>
460 <property name="branch.revision" value="HEAD"/>
461
462 <!--constants -->
463 <property name="svn.root" value="http://svn.greenstone.org"/>
464
[19878]465 <!-- catalina home is set to tomcat basedir if already installed, otherwise
[27829]466 use greenstone's tomcat -->
[20085]467 <condition property="catalina.home" value="${tomcat.installed.path}" else="${packages.home}/tomcat">
[15124]468 <and>
469 <isset property="tomcat.installed.path"/>
470 <not>
[27829]471 <equals arg1="" arg2="${tomcat.installed.path}"/>
[15124]472 </not>
473 </and>
474 </condition>
[25131]475
[15124]476
[19933]477 <!-- is there a better way to do this?? what about solaris?? -->
[26765]478 <condition property="os.bin.dir" value="${cross.os}">
479 <istrue value="${compile.cross}"/>
480 </condition>
[19933]481 <condition property="os.bin.dir" value="windows">
482 <os family="windows"/>
483 </condition>
484 <condition property="os.bin.dir" value="darwin">
485 <os family="mac"/>
486 </condition>
487 <condition property="os.bin.dir" value="linux">
488 <and>
489 <os family="unix"/>
490 <not>
491 <os family="mac"/>
492 </not>
493 </and>
494 </condition>
[26765]495
[19933]496
[19878]497 <condition property="collection.building.disabled">
[20464]498 <and>
499 <isset property="disable.collection.building"/>
500 <istrue value="${disable.collection.building}"/>
501 </and>
[19878]502 </condition>
503
[15124]504 <condition property="collection.building.enabled">
505 <not>
[20464]506 <istrue value="${disable.collection.building}"/>
[15124]507 </not>
508 </condition>
[19878]509
[15124]510 <condition property="collection.building.enabled.windows">
511 <and>
[20464]512 <istrue value="${collection.building.enabled}"/>
[15124]513 <isset property="current.os.iswindows"/>
514 </and>
515 </condition>
516
517 <condition property="collection.building.enabled.unix">
518 <and>
[20464]519 <istrue value="${collection.building.enabled}"/>
[15124]520 <isset property="current.os.isunix"/>
521 </and>
522 </condition>
[22847]523
[20085]524 <condition property="static.arg" value="LDFLAGS=-static" else=" ">
[19931]525 <isset property="compile.static"/>
526 </condition>
[22184]527
[27199]528 <!-- If building a release then we want to adjust environment variables so that the support library can be seen during compilation -->
[27185]529 <if><bool><isset property="use.gnomelib.ext"/></bool>
[23599]530 <property name="gnome-lib-dir" value="${basedir}/ext/gnome-lib-minimal/${os.bin.dir}"/>
[22845]531
[23599]532 <if><bool><isset property="env.CFLAGS"/></bool>
533 <property name="cflags.arg" value="CFLAGS=&quot;-I${gnome-lib-dir}/include ${env.CFLAGS}&quot;"/>
534 <else>
535 <property name="cflags.arg" value="CFLAGS=&quot;-I${gnome-lib-dir}/include&quot;"/>
536 </else>
537 </if>
[22845]538
[23599]539 <if><bool><isset property="env.CPPFLAGS"/></bool>
540 <property name="cppflags.arg" value="CPPFLAGS=&quot;-I${gnome-lib-dir}/include ${env.CPPFLAGS}&quot;"/>
541 <else>
542 <property name="cppflags.arg" value="CPPFLAGS=&quot;-I${gnome-lib-dir}/include&quot;"/>
543 </else>
544 </if>
[22847]545
[23599]546 <if><bool><isset property="env.CXXFLAGS"/></bool>
547 <property name="cxxflags.arg" value="CXXFLAGS=&quot;-I${gnome-lib-dir}/include ${env.CXXFLAGS}&quot;"/>
548 <else>
549 <property name="cxxflags.arg" value="CXXFLAGS=&quot;-I${gnome-lib-dir}/include&quot;"/>
550 </else>
551 </if>
552
[30883]553 <!--https://groups.google.com/forum/#!topic/openkinect/m-hfXeYwKtU
554 compiling up libwv on ElCapitan needs -framework CoreFoundation -->
[23599]555 <if><bool><isset property="env.LDFLAGS"/></bool>
[30884]556 <property name="ldflags.arg" value="LDFLAGS=&quot;-L${gnome-lib-dir}/lib ${env.LDFLAGS}&quot;"/>
[23599]557 <else>
[30884]558 <property name="ldflags.arg" value="LDFLAGS=&quot;-L${gnome-lib-dir}/lib&quot;"/>
[23599]559 </else>
560 </if>
561
562 <if><bool><isset property="env.PATH"/></bool>
563 <property name="path.arg" value="PATH=&quot;${gnome-lib-dir}/bin:${env.PATH}&quot;"/>
564 <else>
565 <property name="path.arg" value="PATH=&quot;${gnome-lib-dir}/bin&quot;"/>
566 </else>
567 </if>
568
569 <if><bool><isset property="env.PKG_CONFIG_PATH"/></bool>
570 <property name="pcpath.arg" value="PKG_CONFIG_PATH=&quot;${gnome-lib-dir}/lib/pkgconfig:${env.PKG_CONFIG_PATH}&quot;"/>
571 <else>
572 <property name="pcpath.arg" value="PKG_CONFIG_PATH=&quot;${gnome-lib-dir}/lib/pkgconfig&quot;"/>
573 </else>
574 </if>
[30758]575
[23611]576 <if><bool><equals arg1="${os.bin.dir}" arg2="darwin"/></bool>
[30864]577 <!--<if><bool><isset property="env.DYLD_LIBRARY_PATH"/></bool>
[30786]578 <property name="ldlpath.arg" value="DYLD_LIBRARY_PATH=&quot;${gnome-lib-dir}/lib:${env.DYLD_LIBRARY_PATH}&quot;"/>
579 <else>
580 <property name="ldlpath.arg" value="DYLD_LIBRARY_PATH=&quot;${gnome-lib-dir}/lib&quot;"/>
[30864]581 </else>
582 </if>
583 -->
[30865]584 <property name="ldlpath.arg" value="DYLD_LIBRARY_PATH=&quot;${env.DYLD_LIBRARY_PATH}&quot;"/>
[23599]585 <else>
[30759]586 <if><bool><isset property="env.LD_LIBRARY_PATH"/></bool>
[23611]587 <property name="ldlpath.arg" value="LD_LIBRARY_PATH=&quot;${gnome-lib-dir}/lib:${env.LD_LIBRARY_PATH}&quot;"/>
588 <else>
589 <property name="ldlpath.arg" value="LD_LIBRARY_PATH=&quot;${gnome-lib-dir}/lib&quot;"/>
590 </else>
591 </if>
[23599]592 </else>
593 </if>
594
[30758]595
[23599]596 <else>
597 <if><bool><isset property="env.CFLAGS"/></bool>
598 <property name="cflags.arg" value="CFLAGS=&quot;${env.CFLAGS}&quot;"/>
599 <else>
600 <property name="cflags.arg" value=" "/>
601 </else>
602 </if>
603
604 <if><bool><isset property="env.CPPFLAGS"/></bool>
605 <property name="cppflags.arg" value="CPPFLAGS=&quot;${env.CPPFLAGS}&quot;"/>
606 <else>
607 <property name="cppflags.arg" value=" "/>
608 </else>
609 </if>
610
611 <if><bool><isset property="env.CXXFLAGS"/></bool>
612 <property name="cxxflags.arg" value="CXXFLAGS=&quot;${env.CXXFLAGS}&quot;"/>
613 <else>
614 <property name="cxxflags.arg" value=" "/>
615 </else>
616 </if>
617
618 <if><bool><isset property="env.LDFLAGS"/></bool>
[30884]619 <property name="ldflags.arg" value="LDFLAGS=&quot;${env.LDFLAGS}&quot;"/>
[23599]620 <else>
[30884]621 <property name="ldflags.arg" value=" "/>
[23599]622 </else>
623 </if>
624
625 <if><bool><isset property="env.PATH"/></bool>
626 <property name="path.arg" value="PATH=&quot;${env.PATH}&quot;"/>
627 <else>
628 <property name="path.arg" value=" "/>
629 </else>
630 </if>
631
632 <if><bool><isset property="env.PKG_CONFIG_PATH"/></bool>
633 <property name="pcpath.arg" value="PKG_CONFIG_PATH=&quot;${env.PKG_CONFIG_PATH}&quot;"/>
634 <else>
635 <property name="pcpath.arg" value=" "/>
636 </else>
637 </if>
638
[23611]639 <if><bool><equals arg1="${os.bin.dir}" arg2="darwin"/></bool>
640 <if><bool><isset property="env.DYLD_LIBRARY_PATH"/></bool>
641 <property name="ldlpath.arg" value="DYLD_LIBRARY_PATH=&quot;${env.DYLD_LIBRARY_PATH}&quot;"/>
642 <else>
643 <property name="ldlpath.arg" value=" "/>
644 </else>
645 </if>
[23599]646 <else>
[23611]647 <if><bool><isset property="env.LD_LIBRARY_PATH"/></bool>
648 <property name="ldlpath.arg" value="LD_LIBRARY_PATH=&quot;${env.LD_LIBRARY_PATH}&quot;"/>
649 <else>
650 <property name="ldlpath.arg" value=" "/>
651 </else>
652 </if>
653 </else>
[23599]654 </if>
655 </else>
[22868]656 </if>
[23611]657 <property name="allargs" value="${cflags.arg} ${cxxflags.arg} ${cppflags.arg} ${ldflags.arg} ${path.arg} ${ldlpath.arg} ${pcpath.arg}"/>
[22868]658
[26765]659 <condition property="opt.cross.build"
660 value="--build=${cross.build}" else=" ">
661 <isset property="cross.build"/>
662 </condition>
663
664
665 <condition property="cross.configure.args"
[26806]666 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]667 <istrue value="${compile.cross}"/>
668 </condition>
669
[28311]670 <!-- if we're told to work with gnome-lib, or if there's a gnome-lib-minimal that the user
671 has placed in gs2build/ext, then compile gs2build after sourcing gnome-lib environment -->
672 <condition property="opt.gnomelibext.arg"
673 value="--enable-gnome-lib-ext" else=" ">
674 <or>
675 <available file="${gs2build.home}/ext/gnome-lib-minimal" type="dir"/>
676 <istrue value="${use.gnomelib.ext}"/>
677 <istrue value="${checkout.gnomelib.ext}"/>
678 </or>
679 </condition>
680
[27028]681<!-- if you want to disable wvware, do so here: set the value (not else) field to contain minus-minus-disable-wvware -->
[28311]682 <condition property="gs2.opt.args" value="${opt.gnomelibext.arg} " else="--disable-mg --disable-mgpp --disable-accentfold --disable-gdbm --disable-sqlite">
[22184]683 <istrue value="${with.jni}"/>
684 </condition>
685 <condition property="gs2.compile.target" value="with-jni" else="without-jni">
686 <istrue value="${with.jni}"/>
687 </condition>
688 <condition property="gs2.install.target" value="install-with-jni" else="install-without-jni">
689 <istrue value="${with.jni}"/>
690 </condition>
691 <condition property="gs2.windows.enablejni" value="1" else="0">
692 <istrue value="${with.jni}"/>
693 </condition>
[22976]694 <condition property="gs2.windows.enablemg" value="1" else="0">
695 <istrue value="${with.jni}"/>
696 </condition>
697 <condition property="gs2.windows.enablemgpp" value="1" else="0">
698 <istrue value="${with.jni}"/>
699 </condition>
700 <!-- Should accent folding not also be set here ?? -->
701 <condition property="gs2.windows.usegdbm" value="1" else="0">
702 <istrue value="${with.jni}"/>
703 </condition>
704 <condition property="gs2.windows.usesqlite" value="1" else="0">
705 <istrue value="${with.jni}"/>
706 </condition>
[19931]707
[15799]708 <!-- where is search4j tool -->
[20085]709 <condition property="search4j.exec" value="bin/search4j.exe" else="bin/search4j">
[15799]710 <isset property="current.os.iswindows"/>
[15136]711 </condition>
712
[15799]713
[15124]714 <!-- ============= Base dirs for each package and component ============ -->
715 <property name="src.gsdl3.home" value="${src.home}/org/greenstone/gsdl3"/>
716 <property name="anttasks.home" value="${src.home}/org/greenstone/anttasks"/>
717 <property name="gli.home" value="${basedir}/gli"/>
718 <property name="javagdbm.home" value="${src.packages.home}/javagdbm"/>
719
[21347]720 <condition property="common.src.home" value="${basedir}/common-src" else="${gs2build.home}${file.separator}common-src">
[20464]721 <istrue value="${disable.collection.building}"/>
[19871]722 </condition>
[19931]723
724 <property name="build.src.home" value="${gs2build.home}/build-src"/>
[19871]725 <property name="gdbm.home" value="${common.src.home}/packages/gdbm"/>
726 <property name="mg.home" value="${common.src.home}/indexers/mg"/>
727 <property name="mgpp.home" value="${common.src.home}/indexers/mgpp"/>
728 <property name="lucene.home" value="${common.src.home}/indexers/lucene-gs"/>
729
[15799]730 <!-- ==================== Compilation Control Options ==================== -->
[15124]731
[15799]732 <!--
[15124]733
734 These properties control option settings on the Javac compiler when it
735 is invoked using the <javac> task.
736
737 compile.debug Should compilation include the debug option?
738
739 compile.deprecation Should compilation include the deprecation option?
740
741 compile.optimize Should compilation include the optimize option?
742
[15799]743 -->
[15124]744
745 <property name="compile.debug" value="true"/>
746 <property name="compile.deprecation" value="true"/>
747 <property name="compile.optimize" value="true"/>
[29515]748 <property name="compile.encoding" value="UTF8"/>
[28137]749 <property name="compile.includeantruntime" value="false"/> <!-- to get rid of annoying 'ant' warning -->
[15124]750
[15799]751 <!--
[15124]752
753 Rather than relying on the CLASSPATH environment variable, Ant includes
754 features that makes it easy to dynamically construct the classpath you
755 need for each compilation. The example below constructs the compile
756 classpath to include the servlet.jar file, as well as the other components
757 that Tomcat makes available to web applications automatically, plus anything
758 that you explicitly added.
759
[15799]760 -->
[20079]761
762 <!-- All elements that Tomcat 5 exposes to applications -->
763 <path id="tomcat5">
[20085]764 <pathelement location="${catalina.home}/common/classes"/>
765 <fileset dir="${catalina.home}/common/endorsed">
766 <include name="*.jar"/>
767 </fileset>
768 <fileset dir="${catalina.home}/common/lib">
769 <include name="*.jar"/>
770 </fileset>
771 <!-- seems to be empty, but will leave in just in case some people make use of this to customise their install: -->
772 <pathelement location="${catalina.home}/shared/classes"/>
773 <fileset dir="${catalina.home}/shared/lib">
774 <include name="*.jar"/>
775 </fileset>
[20079]776 </path>
777
[25131]778 <!-- All elements that Tomcat 7 exposes to applications -->
779 <path id="tomcat7">
[20085]780 <fileset dir="${catalina.home}/lib">
781 <include name="*.jar"/>
782 </fileset>
[20079]783 </path>
784
[15124]785 <path id="compile.classpath">
786 <!-- Include all jar files and libraries in our jni lib directory -->
787 <pathelement location="${lib.jni}"/>
788 <fileset dir="${lib.jni}">
789 <include name="*.jar"/>
790 </fileset>
791 <!-- Include all jar files in our web lib directory -->
792 <pathelement location="${web.lib}"/>
793 <fileset dir="${web.lib}">
794 <include name="*.jar"/>
795 </fileset>
796
[18110]797 <pathelement location="${lib.java}"/>
798 <fileset dir="${lib.java}">
799 <include name="*.jar"/>
800 </fileset>
[15124]801
802 <!-- include the jar files from the source packages -->
803 <!-- mg and mgpp get installed into lib/jni but they may not be there yet
804 so we add them in by name -->
[22184]805 <!-- *** is there any way to make this optional, based on ${with.jni}? -->
[15124]806 <pathelement location="${lib.jni}/mg.jar"/>
807 <pathelement location="${lib.jni}/mgpp.jar"/>
808
[20085]809 <!-- Include all elements that Tomcat exposes to applications -->
810 <path refid="tomcat${tomcat.version.major}"/>
811
[15124]812 </path>
813
814 <path id="local.tomcat.classpath">
815 <!-- explicitly include the jni java wrappers in the classpath -->
816 <pathelement location="${lib.jni}"/>
817 <fileset dir="${lib.jni}">
818 <include name="*.jar"/>
819 </fileset>
[25095]820
[27829]821 <pathelement location="${web.writablelib}"/>
822 <fileset dir="${web.writablelib}">
[29903]823 <include name="derbyclient.jar"/> <!--<include name="derby.jar"/>-->
[25095]824 </fileset>
[15124]825 </path>
826
[29903]827 <path id="derby.server.classpath">
[30568]828 <pathelement location="${web.writablelib}/derbynet.jar"/>
829 <pathelement location="${web.writablelib}/derby.jar"/>
[29903]830 </path>
831
[32153]832
833 <if><bool><isset property="env.PATH"/></bool>
834 <path id="local.tomcat.path">
835 <pathelement location="${basedir}/bin/script"/>
836 <pathelement location="${basedir}/bin"/>
837 <pathelement location="${lib.jni}"/>
838 <pathelement path="${env.PATH}"/>
839 <pathelement path="${wn.home}/bin"/>
840 </path>
841 <!-- Windows can be case sensitive about env.PATH, preferring env.Path. See https://ant.apache.org/manual/Tasks/property.html -->
842 <else><if><bool><isset property="env.Path"/></bool>
843 <path id="local.tomcat.path">
844 <pathelement location="${basedir}/bin/script"/>
845 <pathelement location="${basedir}/bin"/>
846 <pathelement location="${lib.jni}"/>
847 <pathelement path="${env.Path}"/>
848 <pathelement path="${wn.home}/bin"/>
849 </path>
850 <!-- else print error about no path set -->
851 <else>
852 <echo>No env.PATH (or env.Path) set. Unable to set local.tomcat.path property</echo>
853 </else></if></else>
854 </if>
[29903]855
[15124]856 <target name="test-setup">
857 <echo>ant java version=${ant.java.version}</echo>
858 <echo>is unix : ${current.os.isunix}</echo>
859 <echo>is mac : ${current.os.ismac}</echo>
860 <echo>is unixnotmac : ${current.os.isunixnotmac}</echo>
861 <echo>is windows : ${current.os.iswindows}</echo>
862 <echo>os.unix: ${os.unix}</echo>
[32153]863 <echo>env.PATH: ${env.PATH}</echo>
864 <echo>env.Path: ${env.Path}</echo>
[15124]865 </target>
[27369]866
[31121]867 <target name="needs-gs3-setup">
868 <!-- has the gs3-setup script been run?? -->
869 <condition property="gs3-setup-not-done">
870 <not>
871 <isset property="env.GSDL3HOME"/>
872 </not>
873 </condition>
874
875 <fail if="gs3-setup-not-done" message="Please run 'gs3-setup' (Windows) or 'source gs3-setup.sh' (Linux/Mac) before starting the Greenstone server."/>
876 </target>
877
[27369]878 <!-- Appends the current env to the file environment.txt. For debugging env vars used by the release-kit. -->
[29341]879 <target name="write-env" description="Writes out the environment that this build.xml is executed in to file environment.txt. For debugging.">
[27369]880 <echo message="*****************ENVIRONMENT OUTPUT:****************${line.separator}" file="environment.txt" append="true" />
881
882 <if><bool><istrue value="${current.os.iswindows}"/></bool>
[32152]883 <exec executable="cmd" dir="${basedir}" failonerror="false" output="environment.txt" append="true">
[29343]884 <arg value="/c" />
885 <arg value="set" />
886 </exec>
[27369]887 <else>
888 <exec executable="env" dir="${basedir}" failonerror="false" output="environment.txt" append="true" />
889 </else>
890 </if>
891
892 <echo message="${line.separator}" file="environment.txt" append="true" />
893 </target>
894
[20085]895
[15799]896 <!-- ==================== Primary and Global Targets ============================= -->
[15124]897
[32310]898 <target name="prepare" depends="accept-properties,init,copy-dot-svn-files,prepare-core,prepare-packages,prepare-common-src,prepare-collection-building,prepare-tomcat,prepare-axis,prepare-web,prepare-collections, prepare-flax"
[15124]899 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.">
900
901 <!-- make sure .sh files are executable -->
902 <chmod dir="${basedir}" perm="ugo+rx"
903 includes="*.sh"/>
904 <chmod dir="${basedir}/bin/script" perm="ugo+rx"
905 includes="*.sh,*.pl"/>
906 </target>
[16936]907
[19871]908 <!-- 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]909 <!--before configuring build-src, make sure that gnome-lib is compiled up-->
[28611]910 <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"
[32425]911 description="Install Greenstone 3. Use this when you first checkout the code: 'ant prepare new-install'.">
912 <echo>
913 After successful compilation, you can turn on https support on Windows and Linux (requires sudo/admin permissions)
914 by editing build.properties and running 'ant setup-https-cert'.
915 </echo>
916 </target>
[19843]917
[19931]918 <target name="install-common-src" depends="init"
919 description="Install (configure, compile, install) only the common-src package (shared code from Greenstone 2). " >
[30788]920 <antcall target="configure-common-src">
921 <param name="set.ld.path" value="true"/>
922 </antcall>
923 <antcall target="compile-common-src">
924 <param name="set.ld.path" value="true"/>
925 </antcall>
[19894]926 <antcall target="install-auxiliary-jar-files"/>
927 <antcall target="install-jni-files"/>
928 </target>
[19878]929
[19894]930 <target name="install-collection-building" depends="init" if="collection.building.enabled"
931 description="Install (configure, compile, install) the Greenstone 2 collection building package." >
932 <antcall target="configure-collection-building"/>
[19931]933 <antcall target="tweak-makefiles" />
[19894]934 <antcall target="compile-collection-building"/>
935 </target>
936
[19878]937
[20209]938 <target name="install-runtime" depends="init,configure,configure-packages,configure-core,compile-web,compile-packages,compile-core,compile-classpath-jars"
[19878]939 description="Install (configure, compile, install) the runtime system. Needs either common-src or collection-building to have been installed first." />
940
941 <target name="svnupdate" depends="init,svnupdate-packages,svnupdate-core,svnupdate-common-src,svnupdate-collection-building,svnupdate-web"
[15124]942 description="Do a `svn update` for all sources. Doesn't recompile the code. You need to be online to run this."/>
943
944 <target name="configure" depends="init,configure-tomcat,configure-web"
[23855]945 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]946
[20209]947 <target name="clean" depends="init,clean-packages,clean-core,clean-common-src,clean-collection-building,clean-classpath-jars"
[19878]948 description="Remove all old compiled code. Includes runtime and collection-building if necessary"/>
[15124]949
[20209]950 <target name="distclean" depends="init,distclean-packages,clean-core,distclean-common-src,distclean-collection-building,clean-classpath-jars"
[19878]951 description="Remove all compiled code and also any Makefiles etc generated during configure-c++. Includes runtime and collection-building as necessary"/>
[15799]952
[19878]953 <target name="update" depends="init,svnupdate,clean,install"
954 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]955
[23854]956
957 <target name="perl-for-building" depends="init">
958 <!-- uses perl.path if set in build.properties, otherwise try for
959 environment variable PERLPATH, and failing that assumes 'perl'
960 is on environment PATH -->
[23856]961 <!-- 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]962 <if><bool><available file="${gs2build.home}"/></bool>
[23854]963
964 <if><bool><not><isset property="perl.path"/></not></bool>
965
966 <if>
967 <bool>
968 <and>
969 <isset property="env.PERLPATH"/>
970 <not><equals arg1="${env.PERLPATH}" arg2=""/></not>
971 </and>
972 </bool>
[27859]973 <!-- set perlpath to env.PERLPATH.
974 This is the path to perl\bin that's found by findperl.bat when the server is launched
975 through GLI instead of the console.
976 For windows, this env.PERLPATH is the bin folder and needs a backslash at end, since it
977 will appear suffixed with "perl.exe" in the perl setting in packages\tomcat\config\web.xml.
978 This web.xml's path to perl is then used to find perl when running the perl scripts in the
979 cgi folder, so without a slash appended at this point it becomes "binperl" in web.xml, and
980 things will break when GLI launches the server on Windows and the online GS3 metadata editor
981 is used to save user-edited metadata. -->
982 <if><bool><istrue value="${current.os.iswindows}"/></bool>
983 <property name="perl.path" value="${env.PERLPATH}\"/>
984 <else>
985 <property name="perl.path" value="${env.PERLPATH}"/>
986 </else>
987 </if>
988
[23854]989 <else>
990 <echo>
[23896]991 Using PATH environment variable to locate Perl.
[23854]992 </echo>
993 <exec executable="which" os="${os.unix}" spawn="false" outputproperty="full.perl.path">
994 <arg value="perl" />
995 </exec>
996
[28044]997 <exec executable="${gs2build.home}/bin/windows/which" osfamily="windows" spawn="false" outputproperty="full.perl.path">
[23941]998 <arg value="perl" />
999 </exec>
[23896]1000
[25640]1001 <stringutil string="${full.perl.path}" property="partial.perl.path">
1002 <replace regex="\/[^\/]*$" replacement="/" />
[23854]1003 </stringutil>
[27484]1004 <stringutil string="${partial.perl.path}" property="perl.path">
[25640]1005 <replace regex="\\[^\\]*$" replacement="\\" />
1006 </stringutil>
[23896]1007 <if><bool><istrue value="${current.os.isunix}"/></bool>
1008 <if><bool><not><equals arg1="${full.perl.path}" arg2="/usr/bin/perl"/></not></bool>
1009 <echo>
[23854]1010 Non-standard location of Perl found: ${full.perl.path}
1011 Set the environment variable PERLPATH or the perl.path property in
[27484]1012 build.properties to explicitly control the version of Perl used.
[23896]1013 </echo>
1014 </if>
[23854]1015 </if>
1016 </else>
1017 </if>
1018 </if>
1019
1020 <!-- full.perl.path is for pretty-printing only, e.g. used in target "start" -->
1021 <if><bool><isset property="perl.path"/></bool>
1022 <property name="full.perl.path" value="${perl.path}${file.separator}perl"/>
1023 <else>
1024 <property name="full.perl.path" value="perl (will use the enviroment variable PATH to find this executable)"/>
1025 </else>
1026 </if>
[23857]1027
1028 <!-- gs2build not available, perl.path -->
1029 <else>
1030 <property name="perl.path" value=""/>
1031 </else>
1032 </if>
[27484]1033 <stringutil string="${perl.path}" property="escaped.perl.path">
1034 <replace regex="\\" replacement="\\\\" />
1035 </stringutil>
[23854]1036 </target>
1037
[25549]1038 <target name="get-default-servlet-url">
[32429]1039 <echo>${default.server.protocol}://${tomcat.server}:${default.tomcat.port}${app.path}${server.default.servlet}</echo>
[31489]1040 </target>
[29988]1041
[32432]1042 <!-- returns the base local URL, something like HTTP://127.0.0.1:<HTTPport>
1043 or some sane equivalent for 127.0.0.1 -->
1044 <target name="get-local-base-http-url">
1045 <echo>${local.http.url}</echo>
1046 </target>
1047 <!-- Returns something like HTTP://127.0.0.1:<HTTPport>/greenstone3/library -->
1048 <target name="get-local-http-servlet-url">
1049 <echo>${local.http.url}${app.path}${server.default.servlet}</echo>
1050 </target>
1051
[32429]1052 <!-- solr should only be accessible locally, which therefore also means only over http.
[32432]1053 Note that for http, 127.0.0.1 is safer than localhost (as localhost can be mapped to something
1054 other than 127.0.0.1). See also https://letsencrypt.org/docs/certificates-for-localhost/ -->
[31489]1055 <target name="get-solr-servlet-url">
[32429]1056 <!--<echo>${default.server.protocol}://${tomcat.server}:${default.tomcat.port}/${solr.context}</echo>-->
[32432]1057 <echo>${local.http.url}/${solr.context}</echo>
[31489]1058 </target>
1059
[29988]1060 <target name="check-derbyserver-running">
1061 <condition property="derby.isrunning" value="true" else="false">
1062 <!--<socket server="jdbc:derby://${derby.server}" port="${derby.server.port}"/>-->
1063 <socket server="${derby.server}" port="${derby.server.port}"/><!-- like telnet machine port -->
1064 </condition>
1065 <echo>Derby is running: ${derby.isrunning}</echo>
[29903]1066 </target>
[29988]1067
[30013]1068 <!-- Need a copy of the check-derby-running target with a distinct property, because ant restart runs
1069 both stop and start, which stop and start derby respectively. Both need check the derby socket.
1070 Because each property can be set only once during an invocation with ant, ant restart will need
1071 two check-derbyserver properties, one for each derby check. -->
1072 <target name="check-derbyserver-started">
1073 <condition property="derby.isstarted" value="true" else="false">
1074 <socket server="${derby.server}" port="${derby.server.port}"/>
1075 </condition>
1076 <echo>Derby is running: ${derby.isstarted}</echo>
1077 </target>
1078
1079
1080 <!-- Unused -->
[29988]1081 <target name="start-derby-java" depends="check-derbyserver-running">
1082 <if><bool><not><istrue value="${derby.isrunning}"/></not></bool>
1083 <echo>Launching derby on ${derby.server}:${derby.server.port}...</echo>
1084 <java classname="org.apache.derby.drda.NetworkServerControl" fork="true" spawn="true" clonevm="true">
1085 <arg value="start"/>
1086 <classpath refid="derby.server.classpath"/>
1087 </java>
1088 <else>
1089 <echo>Derby server ALREADY RUNNING on ${derby.server}:${derby.server.port}</echo>
1090 </else>
1091 </if>
1092 </target>
[29903]1093
[30013]1094 <target name="start-derby" depends="check-derbyserver-started">
1095 <if><bool><not><istrue value="${derby.isstarted}"/></not></bool>
1096 <echo>About to launch derby on ${derby.server}:${derby.server.port}</echo>
1097 <antcall target="force-start-derby"/>
1098 <else>
1099 <echo>Derby networked server ALREADY RUNNING on ${derby.server}:${derby.server.port}</echo>
1100 </else>
1101 </if>
1102 </target>
1103
[29903]1104 <!-- Using derby 10.1.2.1
1105 See db-derby-10.1.2.1-bin/docs/html/adminguide/index.html -->
[30013]1106 <target name="force-start-derby">
[29988]1107 <property name="derby.server.classpath.prop" refid="derby.server.classpath" />
1108
1109 <exec executable="java" spawn="true"><!-- failonerror="true"-->
1110 <env key="CLASSPATH" path="${derby.server.classpath.prop}"/>
1111 <arg value="org.apache.derby.drda.NetworkServerControl"/>
1112 <arg value="start"/>
1113 <arg value="-p"/>
1114 <arg value="${derby.server.port}"/>
1115 </exec>
[30013]1116
[29903]1117 </target>
1118
[29988]1119 <target name="force-stop-derby">
[29903]1120 <java classname="org.apache.derby.drda.NetworkServerControl">
1121 <arg value="shutdown"/>
[30170]1122 <arg value="-p"/>
1123 <arg value="${derby.server.port}"/>
[29903]1124 <classpath refid="derby.server.classpath"/>
1125 </java>
1126 </target>
1127
[29988]1128 <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 -->
1129 <if><bool><istrue value="${derby.isrunning}"/></bool>
1130 <!--<echo>Derby is |${derby.isrunning}| running</echo>-->
1131 <antcall target="force-stop-derby"/>
1132 <else>
1133 <echo>Derby is not running</echo>
1134 </else>
1135 </if>
1136 </target>
1137
[31121]1138 <target name="start" depends="needs-gs3-setup,init,configure-tomcat,configure-web,configure-solr-ext,start-derby,start-tomcat"
[15124]1139 description="Startup the Tomcat server." >
[15799]1140 <echo>${app.name} (${app.version}) server running using Apache Tomcat and Java</echo>
[32412]1141 <echo>Tomcat: ${catalina.home}</echo>
[16936]1142 <echo>Java : ${java.home}</echo>
[23849]1143 <if><bool><available file="${build.src.home}"/></bool>
1144 <echo>Perl : ${full.perl.path}</echo>
1145 </if>
[23936]1146 <if><bool><isset property="install.flax"/></bool>
[32429]1147 <property name="url" value="${default.server.protocol}://${tomcat.server}:${default.tomcat.port}${app.path}/flax"/>
[23936]1148 <else>
[32429]1149 <property name="url" value="${default.server.protocol}://${tomcat.server}:${default.tomcat.port}${app.path}/"/>
[23936]1150 </else>
1151 </if>
1152 <echo>URL : ${url}</echo>
[15799]1153 <!-- assuming that index.html is not needed here -->
[26033]1154
1155 <!--Now write out the url with oaiserver suffix as the baseURL property in OAIConfig.xml-->
[32310]1156 <available file="${basedir}/resources/oai/OAIConfig.xml.in" property="oaiconfig.present"/>
[26033]1157 <antcall target="init-oaiconfig">
1158 <param name="url" value="${url}"/>
1159 </antcall>
[15124]1160 </target>
1161
[26033]1162 <target name="init-oaiconfig" if="oaiconfig.present">
[27829]1163 <echo>Writing out baseURL ${url}oaiserver to ${web.writableclasses}/OAIConfig.xml</echo>
[32310]1164 <copy file="${basedir}/resources/oai/OAIConfig.xml.in" tofile="${web.writableclasses}/OAIConfig.xml"/>
[28136]1165 <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]1166 </target>
1167
[29903]1168 <target name="stop" depends="init,stop-tomcat,stop-derby"
[15124]1169 description="Shutdown the Tomcat server."/>
1170
1171 <target name="restart" description="Shutdown and restart Tomcat" depends="init,stop,start"/>
1172
[15799]1173 <!-- =========== Help targets =================================== -->
[15124]1174
1175 <property name="install-command" value="ant [options] prepare install"/>
1176
1177 <target name="usage" description="Print a help message">
1178 <echo message=" Execute 'ant -projecthelp' for a list of targets."/>
1179 <echo message=" Execute 'ant -help' for Ant help."/>
[23849]1180 <echo>
1181 To install Greenstone3, run '${install-command}'.
1182 There are properties defined in build.properties. The install
1183 process will ask you if these properties are set correctly.
1184 To avoid this prompt, use the '-Dproperties.accepted=yes'
1185 option.
1186 To log the output, use the '-logfile build.log' option.
1187 The README.txt file has more information about the ant targets
1188 and install process.
[15124]1189 </echo>
1190 </target>
1191
1192 <target name="help" depends="usage" description="Print a help message"/>
1193
1194 <target name="debug" depends="init" description="Display all the currently used properties">
1195 <echoproperties/>
1196 </target>
1197
[15799]1198 <!-- ====== initialization and setup targets ================== -->
[15124]1199
1200 <target name="accept-properties" unless="properties.accepted">
1201 <input addproperty="properties.ok" validargs="y,n">The following properties (among others) are being used from a build.properties file found in this directory:
[32429]1202 server.protocols=${server.protocols}
[15799]1203 tomcat.server=${tomcat.server}
[32337]1204 tomcat.port.https=${tomcat.port.https}
[32429]1205 localhost.port.http=${localhost.port.http}
1206
1207 default.server.protocol=${default.server.protocol}
1208 default.tomcat.port=${default.tomcat.port}
1209 Local base HTTP URL used by Greenstone: ${local.http.url}
1210
[15799]1211 tomcat.installed.path=${tomcat.installed.path} (this is the location of Tomcat's base dir if it is already installed)
1212 proxy.host=${proxy.host}
1213 proxy.port=${proxy.port}
[19878]1214 disable.collection.building=${disable.collection.building}
[19910]1215 If these are not acceptable, please change them and rerun this target. Continue [y/n]?
[15124]1216 </input>
1217 <condition property="do.abort">
1218 <equals arg1="n" arg2="${properties.ok}"/>
1219 </condition>
1220 <fail if="do.abort">Build aborted by user. Please change your properties settings and re-run the target</fail>
1221 </target>
[32334]1222
[15124]1223 <!-- this sets up some initial properties -->
1224 <target name="init">
[20085]1225
[15124]1226 <condition property="java.too.old">
1227 <or>
[16936]1228 <equals arg1="1.1" arg2="${ant.java.version}"/>
1229 <equals arg1="1.2" arg2="${ant.java.version}"/>
1230 <equals arg1="1.3" arg2="${ant.java.version}"/>
[15124]1231 </or>
1232 </condition>
[20208]1233 <fail if="java.too.old" message="You need Java 1.4 or greater to run Greenstone 3"/>
[15124]1234
1235 <available file="${basedir}/gli" property="gli.present"/>
[19878]1236 <available file="${basedir}/common-src" property="common.src.present"/>
[15124]1237 <available file="${basedir}/gs2build" property="gs2build.present"/>
[28643]1238 <available file="${gnome-lib-dir}" property="gnome-lib.present"/>
[15124]1239
1240 <condition property="tomcat.islocal">
1241 <or>
[16936]1242 <not><isset property="tomcat.installed.path"/></not>
1243 <equals arg1="" arg2="${tomcat.installed.path}"/>
[15124]1244 </or>
1245 </condition>
1246
1247 <condition property="proxy.present">
1248 <and>
[16936]1249 <isset property="proxy.host"/>
1250 <not><equals arg1="" arg2="${proxy.host}"/></not>
[15124]1251 </and>
1252 </condition>
1253
[20235]1254 <!--
[20290]1255 the next block checks if the bundled tomcat is present in the 'packages' directory,
[25131]1256 and checks for the lethal combination of tomcat 7 and java 1.4. Test for
[20290]1257 tomcat6 is based on the presence of a file inserted by greenstone into the tomcat6
1258 download, as there is no other surefire way to check tomcat version under java 1.4
[20235]1259 -->
1260 <condition property="packages.tomcat.ispresent" value="true" else="false">
1261 <available file="packages/tomcat"/>
1262 </condition>
[25131]1263 <condition property="packages.tomcat.istomcat7" value="true" else="false">
1264 <available file="packages/tomcat/tomcat7.txt"/>
[20290]1265 </condition>
[20235]1266 <if>
1267 <bool>
[20290]1268 <and>
1269 <istrue value="${packages.tomcat.ispresent}"/>
[25131]1270 <istrue value="${packages.tomcat.istomcat7}"/>
[20290]1271 <equals arg1="1.4" arg2="${ant.java.version}"/>
1272 </and>
[20235]1273 </bool>
[20290]1274 <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]1275 </if>
1276
[15124]1277 </target>
1278
1279 <target name="setup-proxy" depends="init" if="proxy.present">
1280 <condition property="ask.user">
1281 <or>
[16936]1282 <equals arg1="" arg2="${proxy.user}"/>
1283 <equals arg1="" arg2="${proxy.password}"/>
[15124]1284 </or>
1285 </condition>
[19878]1286
[15124]1287 <getuserandpassword message="Using proxy: ${proxy.host}:${proxy.port}" if="ask.user" username="${proxy.user}" userproperty="proxy.username" pwordproperty="proxy.password"/>
1288 <mysetproxy proxyhost="${proxy.host}" proxyport="${proxy.port}" proxyuser="${proxy.username}" proxypassword="${proxy.password}"/>
1289 </target>
[32310]1290
1291 <target name="copy-dot-svn-files" depends="init"
[32312]1292 description="Copies all resources .svn files to .in versions - which are used during configure to generate the runtime versions." >
[32310]1293 <if><bool><available file="${basedir}/resources/tomcat/greenstone3.xml.in"/></bool>
1294 <copy file="${basedir}/resources/tomcat/greenstone3.xml.in" tofile="${basedir}/resources/tomcat/greenstone3.xml.in.backup" overwrite="true"/>
[28904]1295 </if>
1296
[32310]1297 <copy file="${basedir}/resources/tomcat/greenstone3.xml.svn" tofile="${basedir}/resources/tomcat/greenstone3.xml.in" overwrite="true"/>
1298 <if><bool><available file="${basedir}/resources/tomcat/server_tomcat5.xml.in"/></bool>
1299 <copy file="${basedir}/resources/tomcat/server_tomcat5.xml.in" tofile="${basedir}/resources/tomcat/server_tomcat5.xml.in.backup" overwrite="true"/>
[28904]1300 </if>
[32310]1301 <copy file="${basedir}/resources/tomcat/server_tomcat5.xml.svn" tofile="${basedir}/resources/tomcat/server_tomcat5.xml.in" overwrite="true"/>
1302 <if><bool><available file="${basedir}/resources/tomcat/server_tomcat7.xml.in"/></bool>
1303 <copy file="${basedir}/resources/tomcat/server_tomcat7.xml.in" tofile="${basedir}/resources/tomcat/server_tomcat7.xml.in.backup" overwrite="true"/>
[28904]1304 </if>
[32310]1305 <copy file="${basedir}/resources/tomcat/server_tomcat7.xml.svn" tofile="${basedir}/resources/tomcat/server_tomcat7.xml.in" overwrite="true"/>
1306 <if><bool><available file="${basedir}/resources/tomcat/web.xml.in"/></bool>
1307 <copy file="${basedir}/resources/tomcat/web.xml.in" tofile="${basedir}/resources/tomcat/web.xml.in.backup" overwrite="true"/>
[28904]1308 </if>
[32310]1309 <copy file="${basedir}/resources/tomcat/web.xml.svn" tofile="${basedir}/resources/tomcat/web.xml.in" overwrite="true"/>
1310 <if><bool><available file="${basedir}/resources/oai/OAIConfig.xml.in"/></bool>
1311 <copy file="${basedir}/resources/oai/OAIConfig.xml.in" tofile="${basedir}/resources/oai/OAIConfig.xml.in.backup" overwrite="true"/>
[28904]1312 </if>
[32310]1313 <copy file="${basedir}/resources/oai/OAIConfig.xml.svn" tofile="${basedir}/resources/oai/OAIConfig.xml.in" overwrite="true"/>
1314 <if><bool><available file="${basedir}/resources/cgi/gsdl3site.cfg.in"/></bool>
1315 <copy file="${basedir}/resources/cgi/gsdl3site.cfg.in" tofile="${basedir}/resources/cgi/gsdl3site.cfg.in.backup" overwrite="true"/>
[28907]1316 </if>
[32310]1317 <copy file="${basedir}/resources/cgi/gsdl3site.cfg.svn" tofile="${basedir}/resources/cgi/gsdl3site.cfg.in" overwrite="true"/>
1318 <if><bool><available file="${basedir}/resources/web/global.properties.in"/></bool>
1319 <copy file="${basedir}/resources/web/global.properties.in" tofile="${basedir}/resources/web/global.properties.in.backup" overwrite="true"/>
[28908]1320 </if>
[32310]1321 <copy file="${basedir}/resources/web/global.properties.svn" tofile="${basedir}/resources/web/global.properties.in" overwrite="true"/>
1322 <if><bool><available file="${basedir}/resources/web/log4j.properties.in"/></bool>
1323 <copy file="${basedir}/resources/web/log4j.properties.in" tofile="${basedir}/resources/web/log4j.properties.in.backup" overwrite="true"/>
[28908]1324 </if>
[32310]1325 <copy file="${basedir}/resources/web/log4j.properties.svn" tofile="${basedir}/resources/web/log4j.properties.in" overwrite="true"/>
[28904]1326 </target>
[32310]1327
[15799]1328 <!-- ========== Web app Targets ================================ -->
1329
[20089]1330 <target name="prepare-web" depends="init">
[27829]1331 <mkdir dir="${web.writablehome}/applet"/>
1332 <mkdir dir="${web.writablehome}/logs"/>
1333 <mkdir dir="${web.writablehome}/logs/tmp"/>
[15124]1334 </target>
1335
[24607]1336 <!-- 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.
1337 The test for whether we need it assumes we won't be trying to compile GS3 against Java versions less than 1.4. -->
[15124]1338 <target name="configure-java-version" depends="init"
[15139]1339 description="Activates or deactivates some jar libraries as needed depending on your java version">
[15136]1340
[15799]1341 <available property="have.xalan.jar" file="${web.lib}/xalan.jar"/>
[15124]1342 <condition property="need.xalan.jar">
[15799]1343 <or>
[24607]1344 <not><equals arg1="1.4" arg2="${ant.java.version}"/></not>
[15799]1345 </or>
1346 </condition>
[15136]1347
[15799]1348 <!-- if they have xalan.jar but dont need it -->
1349 <if>
1350 <bool>
[16936]1351 <and>
1352 <isset property="have.xalan.jar"/>
1353 <not><isset property="need.xalan.jar"/></not>
1354 </and>
[15799]1355 </bool>
1356 <antcall target="deactivate-xalan-jar"/>
1357 </if>
[15136]1358
[15799]1359 <!-- if they need xalan.jar but dont have it -->
1360 <if>
1361 <bool>
[16936]1362 <and>
1363 <not><isset property="have.xalan.jar"/></not>
1364 <isset property="need.xalan.jar"/>
1365 </and>
[15799]1366 </bool>
1367 <antcall target="activate-xalan-jar"/>
1368 </if>
[15136]1369
[15124]1370 </target>
1371
[15139]1372 <target name="activate-xalan-jar">
[15799]1373 <echo>activating xalan.jar</echo>
[15124]1374 <copy file="${web.lib}/xalan.jar.tmp" tofile="${web.lib}/xalan.jar"/>
[20085]1375 <if>
1376 <bool>
1377 <and>
1378 <isset property="current.os.ismac"/>
1379 <available file="${catalina.home}/common/endorsed" type="dir"/>
1380 </and>
1381 </bool>
1382 <copy file="${web.lib}/xalan.jar.tmp" tofile="${catalina.home}/common/endorsed/xalan.jar"/>
[15799]1383 </if>
[15124]1384 </target>
[15035]1385
[15139]1386 <target name="deactivate-xalan-jar">
[15799]1387 <echo>deactivating xalan.jar</echo>
[15124]1388 <delete file="${web.lib}/xalan.jar"/>
[20089]1389 <!-- should we be deleting common/endorsed/xalan.jar on mac?? -->
[15124]1390 </target>
1391
[15837]1392
[25491]1393 <target name="prepare-collections" depends="init"
1394 description="Unpack all the collections from their svn zipped versions">
[16936]1395 <property name="collect.dir" value="${web.home}/sites/localsite/collect"/>
[32435]1396 <property name="index-and-archives.zip" value="index-and-archives.zip"/>
[15799]1397
[16936]1398 <echo message="installing collections..."/>
1399 <antcall target="gs2mgdemo-install"/>
1400 <antcall target="gs2mgppdemo-install"/>
1401 <antcall target="gberg-install"/>
[25214]1402 <antcall target="lucene-jdbm-demo-install"/>
[16936]1403 </target>
[15837]1404
[16936]1405 <target name="gs2mgdemo-prepare" if="collect.dir">
1406 <property name="gs2mgdemo.dir" value="${collect.dir}/gs2mgdemo"/>
[15799]1407
[16936]1408 <condition property="gs2mgdemo.present">
1409 <and>
[32435]1410 <available file="${gs2mgdemo.dir}/${index-and-archives.zip}"/>
[16936]1411 </and>
1412 </condition>
1413 </target>
[15799]1414
[17008]1415 <target name="gs2mgdemo-install" if="gs2mgdemo.present" depends="gs2mgdemo-prepare">
[32435]1416 <unzip dest="${gs2mgdemo.dir}" src="${gs2mgdemo.dir}/${index-and-archives.zip}" />
[16936]1417 <echo>collection gs2mgdemo installed</echo>
1418 </target>
[15799]1419
[16936]1420 <target name="gs2mgppdemo-prepare" if="collect.dir">
1421 <property name="gs2mgppdemo.dir" value="${collect.dir}/gs2mgppdemo"/>
[15837]1422
[16936]1423 <condition property="gs2mgppdemo.present">
1424 <and>
[32435]1425 <available file="${gs2mgppdemo.dir}/${index-and-archives.zip}"/>
[16936]1426 </and>
1427 </condition>
1428 </target>
[15799]1429
[16936]1430 <target name="gs2mgppdemo-install" if="gs2mgppdemo.present" depends="gs2mgppdemo-prepare">
[32435]1431 <unzip dest="${gs2mgppdemo.dir}" src="${gs2mgppdemo.dir}/${index-and-archives.zip}" />
[16936]1432 <echo>collection gs2mgppdemo installed</echo>
1433 </target>
[15799]1434
[16936]1435 <target name="gberg-prepare" if="collect.dir">
1436 <property name="gberg.dir" value="${collect.dir}/gberg"/>
[32435]1437 <available file="${gberg.dir}/index/index.zip" property="gberg.present"/>
[16936]1438 </target>
[15799]1439
[16936]1440 <target name="gberg-install" if="gberg.present" depends="gberg-prepare">
[32435]1441 <unzip dest="${gberg.dir}/index" src="${gberg.dir}/index/index.zip"/>
[16936]1442 <echo>collection gberg installed</echo>
1443 </target>
[15799]1444
[25214]1445 <target name="lucene-jdbm-demo-prepare" if="collect.dir">
1446 <property name="lucene-jdbm-demo.dir" value="${collect.dir}/lucene-jdbm-demo"/>
[32435]1447 <available file="${lucene-jdbm-demo.dir}/${index-and-archives.zip}" property="lucene-jdbm-demo.present"/>
[25214]1448 </target>
1449
1450 <target name="lucene-jdbm-demo-install" if="lucene-jdbm-demo.present" depends="lucene-jdbm-demo-prepare">
[32435]1451 <unzip dest="${lucene-jdbm-demo.dir}" src="${lucene-jdbm-demo.dir}/${index-and-archives.zip}"/>
[25214]1452 <echo>collection lucene-jdbm-demo installed</echo>
1453 </target>
1454
[27846]1455
[28115]1456 <target name="install-solr-ext" depends="init" >
[28044]1457 <exec executable="ant.bat" osfamily="windows" dir="${solr-ext.home}" spawn="false">
[27846]1458 <arg value="add-service"/>
1459 </exec>
[27849]1460 <exec executable="ant" os="${os.unix}" dir="${solr-ext.home}" spawn="false">
1461 <arg value="add-service"/>
1462 </exec>
[27846]1463 <antcall target="solr-jdbm-demo-install"/>
1464 </target>
1465
1466 <target name="solr-jdbm-demo-prepare" if="collect.dir">
1467 <property name="solr-jdbm-demo.dir" value="${collect.dir}/solr-jdbm-demo"/>
1468 <available file="${solr-jdbm-demo.dir}/${index.zip}" property="solr-jdbm-demo.present"/>
1469 </target>
1470
1471 <target name="solr-jdbm-demo-install" if="solr-jdbm-demo.present" depends="solr-jdbm-demo-prepare">
1472 <unzip dest="${solr-jdbm-demo.dir}" src="${solr-jdbm-demo.dir}/${index.zip}"/>
1473 <echo>collection solr-jdbm-demo installed</echo>
1474 </target>
1475
[28612]1476 <!-- Until 64 bit Linux and Mac (Lion) machines can generate a working IsisGdl,
1477 use the ones generated on a 32 bit Linux and Mac (Leopard), respectively -->
[28952]1478 <target name="get-isisgdl" if="${current.os.isunix}">
[28613]1479 <exec executable="uname" dir="${basedir}" failonerror="false"
[28612]1480 outputproperty="uname.val">
1481 <arg value="-m"/>
1482 </exec>
1483
1484 <if><bool><equals arg1="${uname.val}" arg2="x86_64"/></bool>
1485 <echo>Bitness: ${uname.val}</echo>
1486 <if><bool><contains string="${os.bin.dir}" substring="darwin" casesensitive="false"/></bool>
1487 <get src="http://www.greenstone.org/caveat-emptor/IsisGdl.macleopard"
1488 dest="${basedir}/gs2build/bin/${os.bin.dir}/IsisGdl"/>
1489 </if>
1490 <if><bool><contains string="${os.bin.dir}" substring="linux" casesensitive="false"/></bool>
1491 <get src="http://www.greenstone.org/caveat-emptor/IsisGdl.bin32"
1492 dest="${basedir}/gs2build/bin/${os.bin.dir}/IsisGdl"/>
1493 </if>
[28611]1494 <chmod file="${basedir}/gs2build/bin/${os.bin.dir}/IsisGdl" perm="755"/>
1495 </if>
1496 </target>
[27846]1497
[27484]1498 <target name="set-perl-shebangs" depends="perl-for-building">
1499 <if>
1500 <bool>
1501 <and><isset property="perl.path"/>
1502 <not><equals arg1="${perl.path}" arg2=""/></not>
1503 </and>
1504 </bool>
1505
1506 <if><bool><istrue value="${current.os.iswindows}"/></bool>
[27486]1507 <property name="perl.exec" value="${perl.path}perl.exe"/>
[27484]1508 <else>
[27486]1509 <property name="perl.exec" value="${perl.path}perl"/>
[27484]1510 </else>
1511 </if>
1512
1513 <!--<echo>**** PERLPATH: ${perl.path}</echo>-->
[28158]1514 <echo>Setting perl shebangs to Perl Exec: ${perl.exec}</echo>
[27484]1515
1516 <!-- set the shebangs in the cgi files to point to the correct perlpath -->
[27829]1517 <if>
1518 <bool><not><equals arg1="${web.home}" arg2="${web.writablehome}"></equals></not></bool>
1519 <mkdir dir="${web.writablehome}"/>
[30568]1520 <copy file="${full.web.dir}/WEB-INF/cgi/gliserver.pl" tofile="${web.writablehome}/WEB-INF/cgi/gliserver.pl" overwrite="true"/>
1521 <copy file="${full.web.dir}/WEB-INF/cgi/metadata-server.pl" tofile="${web.writablehome}/WEB-INF/cgi/metadata-server.pl" overwrite="true"/>
1522 <copy file="${full.web.dir}/WEB-INF/cgi/checksum.pl" tofile="${web.writablehome}/WEB-INF/cgi/checksum.pl" overwrite="true"/>
[27829]1523 </if>
1524
[28136]1525 <rsr verbosity="1" file="${web.writablehome}/WEB-INF/cgi/gliserver.pl" pattern="^#!.*" replacement="#!${perl.exec} -w" lines="1"/>
1526 <rsr verbosity="1" file="${web.writablehome}/WEB-INF/cgi/metadata-server.pl" pattern="^#!.*" replacement="#!${perl.exec} -w" lines="1"/>
1527 <rsr verbosity="1" file="${web.writablehome}/WEB-INF/cgi/checksum.pl" pattern="^#!.*" replacement="#!${perl.exec} -w" lines="1"/>
[27484]1528 <else>
[27829]1529 <echo>WARNING: perl.path is empty. Unable to set the shebangs in the perl files in ${web.writablehome}/WEB-INF/cgi</echo>
[27484]1530 </else>
1531 </if>
1532 </target>
1533
[32338]1534 <target name="configure-web" depends="init,perl-for-building"
[15124]1535 description="Configure only the web app config files">
1536 <!-- we want a unix path in the global.properties file -->
1537 <pathconvert targetos="unix" property="src.gsdl3.home.unix">
1538 <path path="${web.home}"/>
1539 </pathconvert>
[27829]1540 <pathconvert targetos="unix" property="src.gsdl3.writablehome.unix">
1541 <path path="${web.writablehome}"/>
1542 </pathconvert>
[27484]1543
1544 <antcall target="set-perl-shebangs" inheritAll="true" />
[32344]1545
[25830]1546 <filter token="gsdlhome" value="${gs2build.home}"/>
[30614]1547 <filter token="gsdlhomequoted" value="&quot;${gs2build.home}&quot;"/>
[25830]1548 <filter token="gsdl3srchome" value="${basedir}"/>
[30614]1549 <filter token="gsdl3srchomequoted" value="&quot;${basedir}&quot;"/>
[15124]1550 <filter token="gsdl3home" value="${src.gsdl3.home.unix}"/>
[30614]1551 <filter token="gsdl3homequoted" value="&quot;${src.gsdl3.home.unix}&quot;"/>
[27829]1552 <filter token="gsdl3writablehome" value="${src.gsdl3.writablehome.unix}"/>
[15124]1553 <filter token="gsdl3version" value="${app.version}"/>
[32429]1554 <filter token="server.protocols" value="${server.protocols}"/>
1555 <filter token="default.server.protocol" value="${default.server.protocol}"/>
[15124]1556 <filter token="tomcat.server" value="${tomcat.server}"/>
[32429]1557 <filter token="default.tomcat.port" value="${default.tomcat.port}"/>
[32432]1558 <filter token="localhost.server.http" value="${localhost.server.http}"/>
[32429]1559 <filter token="localhost.port.http" value="${localhost.port.http}"/>
[32436]1560 <filter token="tomcat.port.https" value="${tomcat.port.https}"/>
1561 <filter token="restrict.http.to.local" value="${restrict.http.to.local}"/>
[30673]1562 <filter token="greenstone.context" value="${greenstone.context}"/>
[32379]1563 <filter token="solr.context" value="${solr.context}"/>
[29977]1564 <filter token="derbyserver" value="${derby.server}"/>
[29903]1565 <filter token="derbyserver.port" value="${derby.server.port}"/>
[24868]1566 <filter token="perlpath" value="${escaped.perl.path}"/>
[27484]1567 <filter token="disable.collection.building" value="${disable.collection.building}"/>
[32310]1568 <copy file="${basedir}/resources/cgi/gsdl3site.cfg.in" tofile="${web.writablehome}/WEB-INF/cgi/gsdl3site.cfg" filtering="true" overwrite="true"/>
1569 <copy file="${basedir}/resources/web/global.properties.in" tofile="${web.writableclasses}/global.properties" filtering="true" overwrite="true"/>
1570 <copy file="${basedir}/resources/web/log4j.properties.in" tofile="${web.writableclasses}/log4j.properties" filtering="true" overwrite="true"/>
[27829]1571 <if><bool><istrue value="${gsdl3home.isreadonly}"/></bool>
1572 <!-- uncomment the writablehome properties -->
[28136]1573 <rsr verbosity="1" file="${web.writableclasses}/global.properties" pattern="^#gsdl3\.(writable{1})?home" replacement="gsdl3.$1home" />
[27829]1574 </if>
1575 <chmod file="${web.writableclasses}/global.properties" perm="644"/>
1576 <chmod file="${web.writableclasses}/log4j.properties" perm="644"/>
[15124]1577 </target>
1578
1579 <target name="compile-web" depends="init">
1580 <javac srcdir="${web.classes}"
1581 destdir="${web.classes}"
[28137]1582 includeantruntime="${compile.includeantruntime}"
[15124]1583 debug="${compile.debug}"
1584 deprecation="${compile.deprecation}"
[29515]1585 optimize="${compile.optimize}"
1586 encoding="${compile.encoding}">
[16936]1587 <classpath><path refid="compile.classpath"/></classpath>
[15124]1588 </javac>
1589 </target>
1590
[20209]1591 <target name="compile-classpath-jars" depends="init">
1592 <if><bool><available file="admin/cp.mf"/></bool>
1593 <jar destfile="admin/cp.jar" manifest="admin/cp.mf"/>
1594 </if>
1595 <if><bool><available file="${lib.java}/cp.mf"/></bool>
1596 <jar destfile="${lib.java}/cp.jar" manifest="${lib.java}/cp.mf"/>
1597 </if>
1598 <if><bool><available file="${lib.jni}/cp.mf"/></bool>
1599 <jar destfile="${lib.jni}/cp.jar" manifest="${lib.jni}/cp.mf"/>
1600 </if>
1601 <if><bool><available file="${web.lib}/cp.mf"/></bool>
1602 <jar destfile="${web.lib}/cp.jar" manifest="${web.lib}/cp.mf"/>
1603 </if>
1604 <jar destfile="cp.jar">
1605 <manifest>
[20211]1606 <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]1607 </manifest>
1608 </jar>
1609 </target>
1610
1611 <target name="clean-classpath-jars" depends="init">
1612 <delete file="admin/cp.jar"/>
1613 <delete file="${lib.java}/cp.jar"/>
1614 <delete file="${lib.jni}/cp.jar"/>
1615 <delete file="${web.lib}/cp.jar"/>
1616 <delete file="cp.jar"/>
1617 </target>
1618
1619
[15799]1620 <target name="svnupdate-web" unless="nosvn.mode">
[20930]1621 <exec executable="svn">
1622 <arg value="update"/>
[27829]1623 <arg value="${web.writablehome}"/>
[20930]1624 <arg value="-r"/><arg value="${branch.revision}"/>
1625 </exec>
[15799]1626 </target>
[15124]1627
1628 <target name="update-web" depends="init,svnupdate-web,configure-web"
1629 description="update only the web stuff (config files)"/>
1630
[32349]1631 <!-- ============ Targets concerned with https certification ================ -->
[32384]1632
[32422]1633 <target name="check-os-for-https-cert-support">
1634 <if><bool><isset property="current.os.ismac"/></bool>
1635 <fail>
1636 Features that automate generating, removing and renewing HTTPS certificates
1637 are currently not supported on Macs, only on other Unix systems and on Windows.
1638 </fail>
1639 </if>
1640 </target>
1641
[32424]1642
[32384]1643 <target name="setup-https-cert-info">
[32349]1644 <echo>
1645 *********************************************************************
1646 NOTE TO OBTAINING A TLS (SSL) CERTIFICATE FOR HTTPS
1647 *********************************************************************
[32477]1648 A signed certificate is needed for your GS server to serve pages over https.
[32349]1649 This target will attempt to obtain a certificate for you from the official and free Certificate Authority Let's Encrypt.
[32477]1650 However, a certificate can only be obtained if you have admin/sudo permissions on this machine that you're installing Greenstone on.
[32349]1651
1652 Note that:
[32384]1653 * if you already have a certificate, then you probably don't want to be running this target but the 'ant renew-existing-https-cert' target instead, to renew your existing certificate.
[32349]1654 * if you run this target when you already have a generated certificate, the existing certificate will remain unchanged and the script will terminate with a message alerting you to this fact.
1655 </echo>
1656 </target>
[32424]1657
[32349]1658
1659 <target name="https-conditions-set">
1660 <input addproperty="https.conditions.ok" validargs="y,n">
1661 To run this target, ensure you have:
[32422]1662 * (if on unix) sudo permissions. Enter the sudo password if prompted.
1663 * (if on windows) sufficient privileges to run the included tomcat on port 80.
[32349]1664 * nothing running on port 80 when you run this target
1665 * edited the build.properties file with
1666 - tomcat.server set to the/a domain name of your server
[32465]1667 - server.protocols list set to contain at least 'https' if not also http (the first in this comma-separated list will be the default protocol)
1668 - tomcat.port.https set to a valid port number not yet in use
[32349]1669 - keystore.pass set to a password for the certification process
1670 * read the Let's Encrypt Subscriber Agreement at https://letsencrypt.org/repository/
1671 If any of the above is not possible, quit this target. Continue [y/n]?
1672 </input>
1673
1674 <condition property="quit.https.setup">
1675 <equals arg1="n" arg2="${https.conditions.ok}"/>
1676 </condition>
1677
1678 <fail if="quit.https.setup">https certification step aborted by user. Please edit build.properties to set server.protocol=http and comment out tomcat.port.https.</fail>
1679 </target>
[32424]1680
[32349]1681
[32422]1682 <target name="setup-https-cert" depends="check-os-for-https-cert-support,setup-https-cert-info,https-conditions-set">
[32349]1683 <input addproperty="https.cert.email">Enter an email that Let's Encrypt, the certification authority, can send any important notifications to</input>
[32423]1684 <input addproperty="https.other.domains">Besides tomcat.server=${tomcat.server}, enter a comma separated list of additional domains to support, if any</input>
[32349]1685 <input addproperty="https.cert.agree" validargs="y,n">You've read the Let's Encrypt Subscriber Agreement at https://letsencrypt.org/repository/ and agree</input>
1686 <if>
1687 <bool><equals arg1="y" arg2="${https.cert.agree}"/></bool>
1688
1689 <condition property="https.cert.domains" value="${tomcat.server},${https.other.domains}" else="${tomcat.server}">
1690 <and>
1691 <isset property="https.other.domains" />
1692 <not><matches string="${https.other.domains}" pattern="^\s*$"/></not>
1693 </and>
1694 </condition>
1695
1696 <input addproperty="https.do.cert" validargs="y,n">
1697 You've agreed to the Let's Encrypt TOS with
1698 - email: ${https.cert.email}
1699 - domains: ${https.cert.domains}
1700 Looks okay? [y/n]
1701 </input>
1702 </if>
1703
1704 <if><bool><equals arg1="n" arg2="${https.do.cert}"/></bool>
1705 <echo>Not proceeding with https certification for the Greenstone 3 web server</echo>
1706 <else>
[32422]1707 <echo>Proceeding...</echo>
1708 <if><bool><istrue value="${current.os.iswindows}"/></bool>
[32423]1709 <antcall target="setup-https-cert-windows">
1710 <param name="https.cert.renewal" value=""/><!-- for cert issuance, there are none of the additional parameters specific to cert renewal -->
1711 </antcall>
[32422]1712 </if>
1713 <if><bool><istrue value="${current.os.isunixnotmac}"/></bool>
1714 <antcall target="setup-https-cert-linux"/>
1715 </if>
[32412]1716 </else>
1717 </if>
1718
1719 </target>
1720
[32424]1721
[32412]1722 <target name="setup-https-cert-windows">
[32423]1723
[32412]1724 <echo>********** The included tomcat will be stopped, then restarted on port 80 and stopped again</echo>
1725
1726 <!-- create folder packages\tomcat\webapps\ROOT\.well-known\acme-challenge -->
1727 <mkdir dir="${packages.home}/tomcat/webapps/ROOT/.well-known/acme-challenge"/>
1728 <mkdir dir="${packages.home}/tomcat/conf/https_cert"/>
1729
[32477]1730 <!--
1731 For Windows, Greenstone can generate the account and domain keys with the openSSL we compiled up ourselves
1732 and put on SVN (at GS3/bin/windows/openssl) rather than let ZeroSSL generate these keys for the user.
1733 Letting Greenstone generate the keys may be considered more trustworthy by the user than letting a 3rd
1734 party do so. See https://zerossl.com/usage.html#First_time_run_and_regular_use for OpenSSL commands
1735 If we don't generate the keys ourselves with our OpenSSL, then ZeroSSL will do so automatically in the
1736 call to le64/32.exe further below, as it's passed in the flag generate-missing.
1737 -->
1738 <!-- We generate the account key named "privkey.key" in ${packages.home}\tomcat\conf\https_cert -->
1739 <exec executable="cmd" osfamily="windows" dir="${basedir}/bin/${os.bin.dir}/openssl/bin" spawn="false">
1740 <arg value="/c" />
1741 <arg value="openssl.exe" />
1742 <arg value="genrsa" />
1743 <arg value="-out" /><arg value="${packages.home}\tomcat\conf\https_cert\privkey.key" /><arg value="4096" />
1744 </exec>
1745
1746 <!-- Also generate the domain key (for csr-key parameter to zeroSSL's le.exe)
1747 ${packages.home}\tomcat\conf\https_cert\${tomcat.server}.key
1748 Using 2048 instead of 4096 bits for this. See https://zerossl.com/usage.html#First_time_run_and_regular_use
1749 -->
1750 <exec executable="cmd" osfamily="windows" dir="${basedir}/bin/${os.bin.dir}/openssl/bin" spawn="false">
1751 <arg value="/c" />
1752 <arg value="openssl.exe" />
1753 <arg value="genrsa" />
1754 <arg value="-out" /><arg value="${packages.home}\tomcat\conf\https_cert\${tomcat.server}.key" /><arg value="2048" />
1755 </exec>
1756
[32412]1757 <!-- stop the included tomcat (also stopping derby and solr) -->
1758 <antcall target="stop" />
1759
1760 <!-- rerun tomcat on port 80
1761 See https://ant.apache.org/manual/Tasks/antcall.html -->
1762 <antcall target="start">
[32429]1763 <param name="localhost.port.http" value="80"/>
1764 <param name="default.tomcat.port" value="80"/>
[32437]1765 <param name="local.http.url" value="http://${localhost.server.http}"/><!-- For port 80 over http, leave out port number in URL -->
[32429]1766 <param name="http.address.restriction" value=""/><!-- don't prevent public access over http of port 80 -->
[32412]1767 <param name="https.comment.out.start" value="${comment.start}"/>
1768 <param name="https.comment.out.end" value="${comment.end}"/>
1769 </antcall>
1770
1771 <!-- get the certificate: use zerossl for windows
1772 Download from https://github.com/do-know/Crypt-LE/releases,
1773 For licence see https://github.com/do-know/Crypt-LE/
1774 Usage instructions at https://zerossl.com/usage.html
1775
1776 le64 ==key "${packages.home}\tomcat\conf\https_cert\privkey.key" ==csr "${packages.home}\tomcat\conf\https_cert\${tomcat.server}.csr" ==csr-key "${packages.home}s\tomcat\conf\https_cert\${tomcat.server}.key" ==crt "${packages.home}\tomcat\conf\https_cert\${tomcat.server}.crt" ==domains "${https.cert.domains}" ==path "${packages.home}\tomcat\webapps\ROOT\.well-known\acme-challenge" ==generate-missing ==unlink ==live -export-pfx "${keystore.pass}"
1777
[32416]1778 which generates a .pfx file with the same name as the PEM certificate (.crt param below)
[32412]1779 .pfx vs .p12: https://stackoverflow.com/questions/6819079/convert-pfx-format-to-p12
1780
1781 In this case "fullchain_and_prvtkey.pfx" is generated, which is the windows value of ${keystore.file} property
[32432]1782
1783 Helpful for debugging: https://stackoverflow.com/questions/10302489/ant-script-have-exec-tag-dump-out-entire-command-line
[32412]1784 -->
1785 <exec executable="cmd" osfamily="windows" dir="${basedir}/bin/${os.bin.dir}" spawn="false">
1786 <arg value="/c" />
[32421]1787 <arg value="le${os.bitness}" />
[32412]1788 <arg value="--key" /><arg value="${packages.home}\tomcat\conf\https_cert\privkey.key" />
1789 <arg value="--csr" /><arg value="${packages.home}\tomcat\conf\https_cert\${tomcat.server}.csr" />
1790 <arg value="--csr-key" /><arg value="${packages.home}\tomcat\conf\https_cert\${tomcat.server}.key" />
[32423]1791 <!--<arg value="==crt" /><arg value="${packages.home}\tomcat\conf\https_cert\${tomcat.server}.crt" />-->
[32412]1792 <arg value="--crt" /><arg value="${packages.home}\tomcat\conf\https_cert\fullchain_and_prvtkey.crt" />
1793 <arg value="--domains" /><arg value="${https.cert.domains}" />
1794 <arg value="--path" /><arg value="${packages.home}\tomcat\webapps\ROOT\.well-known\acme-challenge" />
1795 <arg value="--generate-missing" />
1796 <arg value="--unlink" />
[32416]1797 <arg line="${https.testing}" /><!-- minus-minus-live if not testing, empty if testing. https://stackoverflow.com/questions/11840284/pass-arguments-to-apache-ant-exec-task-based-on-the-variables-value -->
[32478]1798 <!--<arg value="==export-pfx" /><arg value="${keystore.pass}" />
1799 <arg value="==tag-pfx" /><arg value="greenstone3-tomcat" />--><!--Convert the certificate (that contains the full chain AND private key) to pfx format hereafter using OpenSSL instead-->
[32423]1800 <arg line="${https.cert.renewal}" /><!-- rewew command on windows appends min-min-renew XX, where if the day the renewal is run is XX days within expiry, the certificate will get renewed. -->
[32422]1801 </exec>
[32412]1802
1803 <!-- stop the tomcat running on port 80 -->
1804 <antcall target="stop">
[32429]1805 <param name="localhost.port.http" value="80"/>
1806 <param name="default.tomcat.port" value="80"/>
[32437]1807 <param name="local.http.url" value="http://${localhost.server.http}"/><!-- For port 80 over http, leave out port number in URL -->
[32429]1808 <param name="http.address.restriction" value=""/>
[32412]1809 <param name="https.comment.out.start" value="${comment.start}"/>
1810 <param name="https.comment.out.end" value="${comment.end}"/>
1811 </antcall>
1812
[32478]1813 <!-- Use OpenSSL instead of ZeroSSL to convert the certificate to the .pfx format that tomcat likes, using this cmd:
1814 GS3/bin/windows/openssl/bin/openssl.exe pkcs12 -inkey domain.key -in domain.crt -passin pass:pwd -passout pass:pwd -export -out ${keystore.file}
1815 GS3/bin/windows/openssl/bin/openssl.exe pkcs12 -inkey domain.key -in domain.crt -password pass:pwd -export -out ${keystore.file}
1816 where on windows, keystore.file = fullchain_and_prvtkey.pfx
1817 -->
1818 <exec executable="cmd" osfamily="windows" dir="${basedir}/bin/${os.bin.dir}/openssl/bin" spawn="false">
1819 <arg value="/c" />
1820 <arg value="openssl.exe" />
1821 <arg value="pkcs12" />
1822 <arg value="-inkey" /><arg value="${packages.home}\tomcat\conf\https_cert\${tomcat.server}.key" />
1823 <arg value="-in" /><arg value="${packages.home}\tomcat\conf\https_cert\fullchain_and_prvtkey.crt" />
1824 <arg value="-export" />
1825 <arg value="-out" /><arg value="${packages.home}\tomcat\conf\https_cert\${keystore.file}" />
1826 <arg value="-name"/><arg value="greenstone3-tomcat"/><!-- See https://stackoverflow.com/questions/808669/convert-a-cert-pem-certificate-to-a-pfx-certificate -->
1827 <arg value="-password"/><arg value="pass:${keystore.pass}"/>
1828 </exec>
1829
[32412]1830 </target>
1831
[32424]1832
[32412]1833 <target name="setup-https-cert-linux">
[32350]1834 <!-- Running as
1835 ./certbot-auto certonly ==standalone ==preferred-challenges http ==email EMAIL -d DOMAINS
1836 expects input from stdin to accept (A) ToS and say Yes (Y) to sharing email.
1837 We can run in non-interactive mode as the user has at this stage already agreed
1838 to LetsEncrypt's Terms of Service and provided an email address.
1839 -->
[32349]1840 <exec executable="/bin/bash" dir="${basedir}/bin/${os.bin.dir}" failonerror="true">
1841 <arg value="./certbot-auto"/>
1842 <arg value="certonly"/>
[32381]1843 <arg line="${https.testing}"/><!-- https://stackoverflow.com/questions/11840284/pass-arguments-to-apache-ant-exec-task-based-on-the-variables-value -->
[32349]1844 <arg value="--standalone"/>
1845 <arg value="--non-interactive"/>
1846 <arg value="--agree-tos"/>
1847 <arg value="--preferred-challenges"/><arg value="http"/>
1848 <arg value="--email"/><arg value="${https.cert.email}"/>
1849 <arg value="--domains"/><arg value="${https.cert.domains}"/>
1850 </exec>
1851
1852 <!-- sudo openssl pkcs12 -export -out /tmp/DOMAIN_fullchain_and_key.p12 \
1853 -in /etc/letsencrypt/live/DOMAIN/fullchain.pem \
1854 -inkey /etc/letsencrypt/live/DOMAIN/privkey.pem \
1855 -name tomcat
[32350]1856 Must run as sudo because only admin has access to the pem files that admin
1857 generated in /etc/letsencrypt
[32349]1858 See https://computingforgeeks.com/tomcat-7-with-letsencrypt-ssl-certificate/
1859 but also https://community.letsencrypt.org/t/using-lets-encrypt-with-tomcat/41082
1860 which bypasses the step to generate the java keystore jks file
1861 and uses openssl to generate a pfx file instead of a p12 file
1862 -->
1863
1864 <exec executable="sudo" dir="/tmp" failonerror="true">
[32350]1865 <arg value="${basedir}/bin/${os.bin.dir}/openssl/bin/openssl"/>
1866 <arg value="pkcs12"/>
1867 <arg value="-export"/>
1868 <arg value="-out"/><arg value="/tmp/${tomcat.server}_fullchain_and_key.p12"/>
1869 <arg value="-in"/><arg value="/etc/letsencrypt/live/${tomcat.server}/fullchain.pem"/>
1870 <arg value="-inkey"/><arg value="/etc/letsencrypt/live/${tomcat.server}/privkey.pem"/>
[32478]1871 <arg value="-name"/><arg value="greenstone3-tomcat"/>
[32350]1872 <arg value="-password"/><arg value="pass:${keystore.pass}"/>
[32349]1873 </exec>
1874
1875 <!-- Finally, mkdir ${packages.home}/tomcat/conf/https_cert
1876 and copy the file /tmp/${tomcat.server}_fullchain_and_key.p12 into it
[32432]1877 and rename to a slightly shorter and simpler name,
1878 see https://stackoverflow.com/questions/8971187/ant-renaming-while-copying-file
[32349]1879 The file in tmp has root permissions. But copying it from tmp into
1880 the local account will give the copy local account permissions.
1881 Then sudo to remove the original copy in /tmp
1882 -->
1883 <mkdir dir="${packages.home}/tomcat/conf/https_cert"/>
1884 <!--<copy file="/tmp/${tomcat.server}_fullchain_and_key.p12" todir="${packages.home}/tomcat/conf/https_cert"/>-->
1885 <copy todir="${packages.home}/tomcat/conf/https_cert">
1886 <fileset file="/tmp/${tomcat.server}_fullchain_and_key.p12"/>
[32412]1887 <globmapper from="${tomcat.server}_fullchain_and_key.p12" to="${keystore.file}"/>
[32349]1888 </copy>
1889
1890 <exec executable="sudo" dir="/tmp" failonerror="true">
[32412]1891 <arg line="rm -f /tmp/${tomcat.server}_fullchain_and_key.p12" />
1892 </exec>
[32349]1893
1894 </target>
[32424]1895
1896
1897 <!-- Revoke the certificate and remove it, including folders.
1898 See https://certbot.eff.org/docs/using.html#revoking-certificates
1899 which also states "if a certificate is a test certificate obtained via the
1900 ==staging or ==test-cert flag, that flag must be passed to the revoke subcommand."
1901 -->
1902 <target name="remove-https-cert" depends="check-os-for-https-cert-support">
1903 <echo>
1904 NOTE: If you're on Linux, you need to have sudo permissions to execute this target.
1905 Enter the sudo password if prompted.
1906 </echo>
1907 <!--
1908 On linux, we use certbot-auto.
1909 It says at https://github.com/certbot/certbot/issues/1741
1910 "you shouldn't run letsencrypt-auto [now called certbot-auto] as superuser,
1911 because the program will invoke sudo when it needs to automatically."
1912 We need to send Y(es) as inputstring to confirm that the
1913 /etc/letsencrypt/live/${tomcat.server} folder can be deleted.
1914 Note osfamily="unix" is separate from osfamily="mac", which comes out handy here as we haven't set up certbot-auto for mac (yet).
1915 -->
1916 <exec executable="./certbot-auto" osfamily="unix" dir="${basedir}/bin/${os.bin.dir}" failonerror="true" inputstring="Y">
1917 <arg value="revoke"/>
1918 <arg line="${https.testing}"/>
1919 <arg value="--cert-path"/><arg value="/etc/letsencrypt/live/${tomcat.server}/cert.pem"/>
1920 </exec>
1921 <!-- The above command already deletes the folder when Y(es) was passed in. Explicitly deleting:
1922 <exec executable="./certbot-auto" dir="${basedir}/bin/${os.bin.dir}" failonerror="true">
1923 <arg value="delete"/>
1924 <arg value="==cert-name"/><arg value="${tomcat.server}"/>
1925 </exec>
1926 -->
1927
1928 <!-- On Windows, we use zeroSSl. For the revoke command, see https://zerossl.com/usage.html#Certificate_revocation -->
1929 <exec executable="cmd" osfamily="windows" dir="${basedir}/bin/${os.bin.dir}" spawn="false">
1930 <arg value="/c" />
1931 <arg value="le${os.bitness}" />
1932 <arg value="--key" /><arg value="${packages.home}\tomcat\conf\https_cert\privkey.key" />
1933 <arg value="--crt" /><arg value="${packages.home}\tomcat\conf\https_cert\fullchain_and_prvtkey.crt"/>
1934 <arg value="--revoke"/>
1935 <arg line="${https.testing}"/>
1936 </exec>
1937
1938 <!-- And remove the https_cert folder -->
1939 <delete dir="${packages.home}/tomcat/conf/https_cert"/>
1940 </target>
1941
1942
1943 <!-- Renewing existing https certificate
1944 Linux:
1945 https://certbot.eff.org/docs/using.html#renewing-certificates
1946 ./path/to/GS3/bin/linux/certbot-auto renew ==quiet ==no-self-upgrade
1947 Windows: reuse Windows issuance target
1948 see https://zerossl.com/usage.html#Certificate_renewal
1949 -->
1950 <target name="renew-existing-https-cert">
1951 <echo>
1952 NOTE: To run this target,
1953 * ensure nothing is running on port 80.
1954 * if you're on Linux, you need to have sudo permissions. Enter the sudo password if prompted.
[32349]1955
[32424]1956 If you want your cronjob to renew a certificate, you can add pre and post hooks
1957 refer to https://certbot.eff.org/docs/using.html#renewing-certificates
1958 For more information run:
1959 ./path/to/GS3/bin/linux/certbot-auto --help renew
1960 </echo>
1961 <exec executable="./certbot-auto" osfamily="unix" dir="${basedir}/bin/${os.bin.dir}" failonerror="true">
1962 <arg value="renew"/>
1963 <arg value="--quiet"/>
1964 <arg value="--no-self-upgrade"/>
1965 </exec>
1966
1967 <!-- For rewewal on Windows, need to re-run the original (issuance) command and append "min-min-renew XX" to it,
1968 where if it's within XX days of expiry, the certificate will get renewed.
1969 See https://zerossl.com/usage.html#Certificate_renewal -->
1970 <if><bool><istrue value="${current.os.iswindows}"/></bool>
1971
1972 <input addproperty="https.other.domains">Enter a comma separated list of additional domains besides tomcat.server=${tomcat.server} that you registered on issuance, if any</input>
1973 <condition property="https.cert.domains" value="${tomcat.server},${https.other.domains}" else="${tomcat.server}">
1974 <and>
1975 <isset property="https.other.domains" />
1976 <not><matches string="${https.other.domains}" pattern="^\s*$"/></not>
1977 </and>
1978 </condition>
1979 <antcall target="setup-https-cert-windows">
1980 <param name="https.cert.renewal" value="--renew 10"/>
1981 </antcall>
1982 </if>
1983 </target>
1984
[15799]1985 <!-- ======================= Tomcat Targets ========================== -->
[15124]1986
1987 <!-- this target downloads and installs Tomcat -->
[25131]1988 <!-- we download tomcat (version 7 for Java 1.5 and later, version 5 for Java 1.4 plus the 1.4 compatibility package). -->
[20089]1989 <target name="prepare-tomcat" depends="init,setup-proxy" if="tomcat.islocal"
[25131]1990 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">
1991 <if>
[16951]1992 <bool>
1993 <not><available file="${packages.home}/tomcat/.flagfile"/></not>
1994 </bool>
1995
1996 <!-- check that packages dir is there -->
1997 <mkdir dir="${packages.home}"/>
1998 <get src="http://www.greenstone.org/gs3files/${tomcat.version}.zip"
1999 dest="${packages.home}/${tomcat.version}.zip"
2000 usetimestamp="true"/>
2001 <unzip src="${packages.home}/${tomcat.version}.zip"
2002 dest="${packages.home}"/>
[30723]2003
[20085]2004 <!-- If we are using Java 1.4, we'd be using tomcat 5.5 in which case
2005 we would need to have the tomcat compat package to work with Java 1.4-->
2006 <if>
2007 <bool><equals arg1="1.4" arg2="${ant.java.version}"/></bool>
2008 <get src="http://www.greenstone.org/gs3files/${tomcat.version}-compat.zip"
2009 dest="${packages.home}/${tomcat.version}-compat.zip"
2010 usetimestamp="true"/>
2011 <unzip src="${packages.home}/${tomcat.version}-compat.zip"
2012 dest="${packages.home}"/>
2013 </if>
2014
[16951]2015 <!-- delete any existing tomcat -->
2016 <delete dir="${packages.home}/tomcat"/>
2017 <move todir="${packages.home}/tomcat">
2018 <fileset dir="${packages.home}/${tomcat.version}"/>
2019 </move>
[30723]2020
2021 <!-- To avoid the CGI permissions error appearing continuously in the (localhost) log,
[30725]2022 need privileged=true set in the root context.xml file too, not just greenstone context file.
2023 See http://stackoverflow.com/questions/9845936/tomcat-v7-0-load-exception-marking-servlet-ssi-as-unavailable/10305471#10305471
2024 For usage of IfTask IsLessThan: http://antelope.stage.tigris.org/nonav/docs/manual/bk03ch05s02.html -->
[30723]2025 <if><bool><not><islessthan arg1="${tomcat.version.major}" arg2="7"/></not></bool>
[32315]2026 <copy file="${basedir}/resources/tomcat/root_context.xml.in" tofile="${packages.home}/tomcat/conf/context.xml" overwrite="true" />
[30723]2027 </if>
2028
2029
[25133]2030 <!--
[16951]2031 <copy file="${basedir}/resources/tomcat/setclasspath.bat"
2032 tofile="${packages.home}/tomcat/bin/setclasspath.bat"
2033 overwrite="true"/>
2034 <copy file="${basedir}/resources/tomcat/setclasspath.sh"
2035 tofile="${packages.home}/tomcat/bin/setclasspath.sh"
2036 overwrite="true"/>
[25133]2037 -->
[16951]2038 <!-- make sure we have execute permission for the .sh files -->
2039 <chmod dir="${packages.home}/tomcat/bin" perm="ugo+rx"
2040 includes="*.sh"/>
2041
2042 <echo file="${packages.home}/tomcat/.flagfile">
2043 the timestamp of this file is the time that tomcat was extracted from the zip files.
2044 it is used to figure out whether the files need to be refreshed or not in `ant prepare-tomcat`
2045 </echo>
2046
[20089]2047 <!-- this is not strictly a prepare tomcat thing, but if one changes
2048 Java, then they need to change tomcat as well, so might as well call
2049 it here -->
2050 <antcall target="configure-java-version"/>
[16951]2051 <else>
2052 <echo>Tomcat has been prepared, will not prepare</echo>
2053 <echo>Delete ${packages.home}/tomcat/.flagfile to force refresh</echo>
2054 </else>
2055
2056 </if>
2057
[30037]2058 </target>
[15124]2059
2060 <target name="configure-tomcat" depends="init,configure-tomcat-local,configure-tomcat-external"/>
2061
[32338]2062 <target name="configure-tomcat-local" depends="init,perl-for-building" if="tomcat.islocal">
[15124]2063 <!-- re-setup the server.xml file -->
[32310]2064 <copy file="${basedir}/resources/tomcat/server_tomcat${tomcat.version.major}.xml.in"
[20079]2065 tofile="${packages.home}/tomcat/conf/server.xml" overwrite="true">
[15124]2066 <filterset>
[16936]2067 <filter token="shutdown-port" value="${tomcat.shutdown.port}"/>
[32346]2068 <filter token="https.redirect.port" value="${https.redirect.port}"/>
[32429]2069 <filter token="localhost.port.http" value="${localhost.port.http}"/>
[32346]2070 <filter token="tomcat.port.https" value="${tomcat.port.https}"/>
[32416]2071 <!-- Relative path preferred for keystore.file, in case tomcat is moved elsewhere -->
2072 <!--<filter token="keystore.file" value="conf/https_cert/${tomcat.server}.jks" />-->
2073 <!--ON UNIX: <filter token="keystore.file" value="conf/https_cert/fullchain_and_prvtkey.p12" />-->
[32412]2074 <!--ON WINDOWS: <filter token="keystore.file" value="conf/https_cert/fullchain_and_prvtkey.pfx" />-->
2075 <filter token="keystore.file" value="conf/https_cert/${keystore.file}" />
[32349]2076 <!-- tomcat Connector's keystoreType param defaults to JKS (Java keystore), see https://tomcat.apache.org/tomcat-7.0-doc/config/http.html
2077 We'll follow the instructions at https://community.letsencrypt.org/t/using-lets-encrypt-with-tomcat/41082,
2078 https://www.ssl.com/how-to/create-a-pfx-p12-certificate-file-using-openssl/
2079 and https://computingforgeeks.com/tomcat-7-with-letsencrypt-ssl-certificate/
2080 (minus the keytool step) and use the PKCS12 file generated by openssl directly,
2081 instead of an additional step to generate the java keystore file from that -->
2082 <filter token="keystore.type" value="PKCS12"/>
[32346]2083 <filter token="keystore.pass" value="${keystore.pass}"/>
[32429]2084 <!--
2085 if server.protocols doesn't contain http, then http is only to be locally available (e.g. for solr servlet on 127.0.0.1)
2086 In that case, see https://serverfault.com/questions/218666/how-to-configure-tomcat-to-only-listen-to-127-0-0-1
2087 -->
[32436]2088 <filter token="http.address.restriction" value="${http.address.restriction}"/>
[32346]2089 <filter token="https.comment.out.start" value="${https.comment.out.start}"/>
2090 <filter token="https.comment.out.end" value="${https.comment.out.end}"/>
[15124]2091 </filterset>
2092 </copy>
[30035]2093
2094 <!-- set up the solr context -->
[30036]2095
[30038]2096 <!-- First work out the IPv4 address for this machine -->
2097 <exec executable="${basedir}/bin/script/IPv4.sh" os="${os.unix}" failonerror="false" outputproperty="ipv4.val">
2098 <arg value="-format-for-tomcat-context"/>
2099 </exec>
2100 <exec executable="${basedir}/bin/script/IPv4.bat" osfamily="windows" failonerror="false" outputproperty="ipv4.val">
2101 <arg value="-format-for-tomcat-context"/>
2102 </exec>
[30036]2103
[30035]2104 <copy file="${basedir}/ext/solr/solr-tomcat-context.xml.in" tofile="${packages.home}/tomcat/conf/Catalina/localhost/solr.xml" overwrite="true">
2105 <filterset>
[32426]2106 <filter token="solr.context" value="${solr.context}"/>
[30035]2107 <filter token="gsdl3webhome" value="${web.writablehome}"/>
2108 <filter token="tomcathome" value="${basedir}/packages/tomcat"/>
[30036]2109 <filter token="IPv4" value="${ipv4.val}"/>
[30035]2110 </filterset>
2111 </copy>
2112
[28297]2113 <!-- set up the greenstone3 context, it may have a custom name specified in build.properties -->
[30673]2114 <if><bool><not><equals arg1="greenstone3" arg2="${greenstone.context}"></equals></not></bool>
[32310]2115 <copy file="${basedir}/resources/tomcat/greenstone3.xml.in" tofile="${basedir}/resources/tomcat/${greenstone.context}.xml.in" overwrite="true"/>
[28297]2116 </if>
[32310]2117 <copy file="${basedir}/resources/tomcat/${greenstone.context}.xml.in" tofile="${packages.home}/tomcat/conf/Catalina/localhost/${greenstone.context}.xml" overwrite="true">
[15124]2118 <filterset>
[16936]2119 <filter token="gsdl3webhome" value="${web.home}"/>
[27829]2120 <filter token="gsdl3webwritablehome" value="${web.writablehome}"/>
[29845]2121 <filter token="privilegedattribute" value="${privileged.attribute}"/>
2122 <filter token="allowedIPs" value="${allowed.IPs}"/>
[29977]2123 <filter token="derbyserver" value="${derby.server}"/>
[29903]2124 <filter token="derbyserverport" value="${derby.server.port}"/>
[15124]2125 </filterset>
2126 </copy>
[28297]2127 <if>
2128 <bool>
2129 <and>
2130 <available file="${packages.home}/tomcat/conf/Catalina/localhost/greenstone3.xml"/>
[30673]2131 <not><equals arg1="greenstone3" arg2="${greenstone.context}"></equals></not>
[28297]2132 </and>
2133 </bool>
2134 <delete file="${packages.home}/tomcat/conf/Catalina/localhost/greenstone3.xml"/>
2135 </if>
[25570]2136
[27860]2137 <!-- set up the greenstone3 web.xml file -->
[32310]2138 <copy file="${basedir}/resources/tomcat/web.xml.in" tofile="${packages.home}/tomcat/conf/web.xml" overwrite="true">
[27860]2139 <filterset>
2140 <filter token="perlpath" value="${perl.path}"/>
2141 </filterset>
2142 </copy>
[15124]2143 </target>
[28297]2144
[15124]2145 <target name="configure-tomcat-external" depends="init" unless="tomcat.islocal">
2146 <!-- re-setup the server.xml file -->
2147 <!-- need to edit the config file, or do we get the user to do this???-->
2148 </target>
[26495]2149
[27860]2150 <target name="configure-solr-ext" depends="init" >
2151 <!-- re-setup the web/ext/solr/solr.xml file -->
[28178]2152 <copy file="${web.home}/ext/solr/solr.xml.in"
[27866]2153 tofile="${gsdl3.writablehome}/ext/solr/solr.xml" filtering="true" overwrite="true">
[27860]2154 <filterset>
2155 <filter token="gsdl3.home" value="${src.gsdl3.home.unix}"/>
2156 <filter token="gsdl3.writablehome" value="${src.gsdl3.writablehome.unix}"/>
2157 </filterset>
2158 </copy>
2159 </target>
[22551]2160
[26495]2161 <!-- This target runs tomcat's "bin/catalina.bat(.sh) jpda start"
2162 to allow debugging the running GS3 server in Eclipse. See the instructions at
2163 http://www.wikijava.org/wiki/Debugging_a_servlet_with_tomcat_and_Eclipse_tutorial
2164 on how to use this with eclipse
2165 -->
[32338]2166 <target name="debug-start-tomcat" description="Startup Tomcat for debugger" depends="init" if="tomcat.islocal">
[26495]2167 <property name="tomcat.classpath" refid="local.tomcat.classpath"/>
2168 <property name="tomcat.path" refid="local.tomcat.path"/>
2169
2170 <if><bool>
2171 <isset property="fedora.maxpermsize"/></bool>
[30303]2172 <property name="catalina.opts" value="-Djava.util.prefs.syncInterval=2000000 -DGSDL3HOME=$GSDL3HOME -DGSDLOS=$GSDLOS -DPATH=$PATH -Xmx800M ${readonly.catalina.opts} ${fedora.maxpermsize}"/>
[26495]2173 <else>
[30303]2174 <property name="catalina.opts" value="-Djava.util.prefs.syncInterval=2000000 -DGSDL3HOME=$GSDL3HOME -DGSDLOS=$GSDLOS -DPATH=$PATH -Xmx800M ${readonly.catalina.opts}"/>
[26495]2175 </else>
2176 </if>
2177
[27829]2178 <echo file="${catalina.home}/bin/setenv.bat">set CLASSPATH=${tomcat.classpath}</echo>
2179 <echo file="${catalina.home}/bin/setenv.sh">export CLASSPATH=${tomcat.classpath}</echo>
[26495]2180
2181 <exec executable="${catalina.home}/bin/catalina.sh" os="${os.unix}" dir="${catalina.home}/bin" spawn="false">
2182 <arg value="jpda" />
2183 <arg value="start" />
2184 <env key="JPDA_ADDRESS" value="8000"/> <!-- for debugging Tomcat in Eclipse -->
2185 <env key="JPDA_TRANSPORT" value="dt_socket"/> <!-- for debugging Tomcat in Eclipse -->
2186 <!--<env key="GSDLOS" value="linux"/> do we need this?? -->
2187 <env key="PATH" path="${tomcat.path}"/>
2188 <env key="CATALINA_OPTS" value="${catalina.opts}"/>
2189 <env key="CATALINA_HOME" value="${catalina.home}"/>
2190 <env key="CLASSPATH" path="${tomcat.classpath}"/>
2191 <env key="LD_LIBRARY_PATH" path="${env.LD_LIBRARY_PATH}:${lib.jni}"/>
2192 <env key="DYLD_LIBRARY_PATH" path="${env.DYLD_LIBRARY_PATH}:${lib.jni}:${gdbm.home}/lib"/> <!-- for mac os --> <!-- need gdbm here these days ??-->
2193 <env key="WNHOME" path="${wn.home}"/>
2194 <env key="FEDORA_HOME" path="${fedora.home}"/>
2195 </exec>
[28044]2196 <exec executable="${catalina.home}/bin/catalina.bat" osfamily="windows" dir="${catalina.home}/bin" spawn="true">
[26495]2197 <arg value="jpda" />
2198 <arg value="start" />
2199 <env key="JPDA_ADDRESS" value="8000"/> <!-- for debugging Tomcat in Eclipse -->
2200 <env key="JPDA_TRANSPORT" value="dt_socket"/> <!-- for debugging Tomcat in Eclipse -->
2201 <env key="GSDLOS" value="windows"/>
2202 <env key="GSDL3HOME" value="${basedir}"/>
2203 <env key="Path" path="${tomcat.path}"/>
2204 <env key="PATH" path="${tomcat.path}"/>
2205 <env key="CATALINA_OPTS" value="${catalina.opts}"/>
2206 <env key="CATALINA_HOME" value="${catalina.home}"/>
2207 <env key="CLASSPATH" path="${tomcat.classpath}"/>
2208 <env key="FEDORA_HOME" path="${fedora.home}"/>
2209 </exec>
2210 <!-- wait for the server to startup in case other targets need it running -->
2211 <waitfor maxwait="5" maxwaitunit="second">
2212 <and>
[32429]2213 <socket server="${tomcat.server}" port="${default.tomcat.port}"/>
2214 <!--<http url="${default.server.protocol}://${tomcat.server}:${default.tomcat.port}${app.path}/index.html"/>-->
2215 <http url="${local.http.url}${app.path}/index.html"/>
[26495]2216 </and>
2217 </waitfor>
2218 </target>
[23854]2219
[30013]2220 <target name="start-tomcat" description="Startup only Tomcat" depends="check-tomcat-started">
[23854]2221
[30013]2222 <if><bool><istrue value="${tomcat.isstarted}"/></bool>
[29988]2223 <echo>**************************************</echo>
[32429]2224 <echo>A WEB SERVER IS ALREADY RUNNING ON ${default.server.protocol}://${tomcat.server}:${default.tomcat.port} (${local.http.url}). NOT STARTING.</echo>
[29988]2225 <echo>**************************************</echo>
2226 <else>
[30013]2227 <antcall target="force-start-tomcat"/>
2228 </else>
2229 </if>
2230 </target>
2231
2232 <!-- Another way: http://ptrthomas.wordpress.com/2006/03/25/how-to-start-and-stop-tomcat-from-ant/ -->
[32338]2233 <target name="force-start-tomcat" description="Startup only Tomcat" depends="init" if="tomcat.islocal">
[30013]2234
[15799]2235 <property name="tomcat.classpath" refid="local.tomcat.classpath"/>
[15124]2236 <property name="tomcat.path" refid="local.tomcat.path"/>
[25095]2237
[26359]2238 <if><bool>
2239 <isset property="fedora.maxpermsize"/></bool>
[30303]2240 <property name="catalina.opts" value="-Djava.util.prefs.syncInterval=2000000 -DGSDL3HOME=$GSDL3HOME -DGSDLOS=$GSDLOS -DPATH=$PATH -Xmx800M ${readonly.catalina.opts} ${fedora.maxpermsize}"/>
[26359]2241 <else>
[30303]2242 <property name="catalina.opts" value="-Djava.util.prefs.syncInterval=2000000 -DGSDL3HOME=$GSDL3HOME -DGSDLOS=$GSDLOS -DPATH=$PATH -Xmx800M ${readonly.catalina.opts}"/>
[26359]2243 </else>
2244 </if>
2245
[27829]2246 <echo file="${catalina.home}/bin/setenv.bat">set CLASSPATH=${tomcat.classpath}</echo>
2247 <echo file="${catalina.home}/bin/setenv.sh">export CLASSPATH=${tomcat.classpath}</echo>
[28043]2248
2249 <!-- using osfamily instead of testing os against os.windows list of recognised windows versions
[28044]2250 so that future windows versions are included. See http://simonharrer.wordpress.com/tag/osfamily/
2251 Can't use the osfamily test for linux-type machines as a group since osfamily=unix is separate from osfamily=mac,
2252 see http://ant-contrib.sourceforge.net/tasks/tasks/osfamily.html -->
[28043]2253
[21351]2254 <exec executable="${catalina.home}/bin/startup.sh" os="${os.unix}" dir="${catalina.home}/bin" spawn="false">
[15124]2255 <!--<env key="GSDLOS" value="linux"/> do we need this?? -->
2256 <env key="GSDL3HOME" value="${basedir}"/>
2257 <env key="PATH" path="${tomcat.path}"/>
2258 <env key="CATALINA_OPTS" value="${catalina.opts}"/>
2259 <env key="CATALINA_HOME" value="${catalina.home}"/>
2260 <env key="CLASSPATH" path="${tomcat.classpath}"/>
2261 <env key="LD_LIBRARY_PATH" path="${env.LD_LIBRARY_PATH}:${lib.jni}"/>
[22184]2262 <env key="DYLD_LIBRARY_PATH" path="${env.DYLD_LIBRARY_PATH}:${lib.jni}:${gdbm.home}/lib"/> <!-- for mac os --> <!-- need gdbm here these days ??-->
[15124]2263 <env key="WNHOME" path="${wn.home}"/>
[26433]2264 <env key="FEDORA_HOME" path="${fedora.home}"/>
[15124]2265 </exec>
[28043]2266 <exec executable="${catalina.home}/bin/startup.bat" osfamily="windows" dir="${catalina.home}/bin" spawn="true">
[15124]2267 <env key="GSDLOS" value="windows"/>
2268 <env key="GSDL3HOME" value="${basedir}"/>
2269 <env key="Path" path="${tomcat.path}"/>
2270 <env key="PATH" path="${tomcat.path}"/>
2271 <env key="CATALINA_OPTS" value="${catalina.opts}"/>
[16628]2272 <env key="CATALINA_HOME" value="${catalina.home}"/>
[15124]2273 <env key="CLASSPATH" path="${tomcat.classpath}"/>
[26433]2274 <env key="FEDORA_HOME" path="${fedora.home}"/>
[15124]2275 </exec>
2276 <!-- wait for the server to startup in case other targets need it running -->
2277 <waitfor maxwait="5" maxwaitunit="second">
2278 <and>
[32429]2279 <socket server="${tomcat.server}" port="${default.tomcat.port}"/>
2280 <!--<http url="${default.server.protocol}://${tomcat.server}:${default.tomcat.port}${app.path}/index.html"/>-->
2281 <http url="${local.http.url}${app.path}/index.html"/>
[15124]2282 </and>
2283 </waitfor>
[29988]2284
[15124]2285 </target>
2286
[22551]2287 <!--ant task http: http://www.jajakarta.org/ant/ant-1.6.1/docs/ja/manual/api/org/apache/tools/ant/taskdefs/condition/Http.html-->
[32338]2288 <target name="reconfigure" description="Reconfigure the message router">
[22551]2289 <waitfor maxwait="5" maxwaitunit="second">
[32429]2290 <!--<http url="${default.server.protocol}://${tomcat.server}:${default.tomcat.port}${app.path}${server.default.servlet}?a=s&amp;sa=c"/>-->
2291 <http url="${local.http.url}${app.path}${server.default.servlet}?a=s&amp;sa=c"/>
[22551]2292 </waitfor>
2293 </target>
2294
2295 <!--Command-line args to Ant: http://www.jguru.com/faq/view.jsp?EID=471794-->
[32338]2296 <target name="reconfigure-collection" description="Reconfigure the collection">
[22551]2297 <waitfor maxwait="5" maxwaitunit="second">
[32429]2298 <!--<http url="${default.server.protocol}://${tomcat.server}:${default.tomcat.port}${app.path}${server.default.servlet}?a=s&amp;sa=c&amp;sc=${collection}"/>-->
2299 <http url="${local.http.url}${app.path}${server.default.servlet}?a=s&amp;sa=c&amp;sc=${collection}"/>
[22551]2300 </waitfor>
2301 </target>
2302
[15124]2303 <!-- windows: do we want to launch a webrowser?? -->
[25418]2304 <!-- shouldn't this test whether anything is running first?
2305 It's safer to always attempt to stop tomcat: that way we won't be dependent on the right time
2306 to check whether the server is stopped or still running before attempting to start again.
2307 This target, which was recently called force-stop-tomcat for a while but is back to being
2308 called stop-tomcat, now hides the Java exception output that appears whenever tomcat is already
2309 stopped as happens when stop-tomcat is called consecutively. -->
[25420]2310 <target name="force-stop-tomcat" description="Shutdown only Tomcat" depends="init" if="tomcat.islocal">
[21351]2311 <exec executable="${catalina.home}/bin/shutdown.sh" os="${os.unix}" dir="${catalina.home}/bin" spawn="false">
[26433]2312 <env key="FEDORA_HOME" path="${fedora.home}"/>
[15124]2313 <env key="CATALINA_HOME" value="${catalina.home}"/>
[25418]2314 <arg line=">/dev/null 2>&amp;1"/>
[15124]2315 </exec>
[28043]2316 <exec executable="${catalina.home}/bin/shutdown.bat" osfamily="windows" dir="${catalina.home}/bin" spawn="false">
[26433]2317 <env key="FEDORA_HOME" path="${fedora.home}"/>
[16628]2318 <env key="CATALINA_HOME" value="${catalina.home}"/>
[25418]2319 <arg line=">nul 2>&amp;1"/>
[25443]2320 </exec>
[15124]2321 </target>
2322
[25418]2323 <!-- Can also try the "socket" condition in place of the "http" condition
2324 And also use a <waitfor> in place of <condition>, such as:
2325 <waitfor maxwait="5" maxwaitunit="second" timeoutproperty="tomcat.isstopped"><http url="..."/></waitfor>
[25420]2326 The http URL resolves to host:port/greenstone3
2327 Condition uses <http/> rather than <socket/> for testing, since if the server was stopped, the socket
2328 might still be in use for some moments. We test the URL with the http condition since it's likelier to
2329 fail sooner if the server has indeed been stopped. -->
[32338]2330 <target name="check-tomcat-running">
[25418]2331 <condition property="tomcat.isrunning">
[32429]2332 <!--<http url="${default.server.protocol}://${tomcat.server}:${default.tomcat.port}${app.path}"/>-->
2333 <!--<http url="${default.server.protocol}://${tomcat.server}:${default.tomcat.port}"/>--><!-- untrusted certificates won't work, so don't test https urls-->
2334 <http url="${local.http.url}"/><!-- testing the local http url instead -->
[25418]2335 </condition>
[25321]2336 </target>
[30013]2337
[32049]2338 <!--
2339 <target name="verbose-check-tomcat-running">
2340 <condition property="tomcat.isrunning" value="true" else="false">
[32429]2341 <http url="${default.server.protocol}://${tomcat.server}:${default.tomcat.port}"/>
2342 <http url="${local.http.url}"/>
[32049]2343 </condition>
2344 <echo>Tomcat is running: ${tomcat.isrunning}</echo>
2345 </target>
2346 -->
2347 <target name="verbose-check-tomcat-running" depends="check-tomcat-running">
2348 <if>
2349 <bool>
2350 <istrue value="${tomcat.isrunning}"/>
2351 </bool>
2352 <echo>Tomcat is running: ${tomcat.isrunning}</echo>
2353 <else><echo>Tomcat is running: false</echo></else><!-- tomcat.isrunning not set -->
2354 </if>
2355 </target>
2356
[30013]2357 <!-- Need a copy of the check-tomcat-running target with a distinct property, because ant restart runs
2358 both stop and start, both of which need to do tomcat checks. Each property can be set only once during
2359 an invocation with ant. So ant restart will need two properties to store each of the tomcat checks -->
[32338]2360 <target name="check-tomcat-started">
[30013]2361 <condition property="tomcat.isstarted">
[32429]2362 <!--<http url="${default.server.protocol}://${tomcat.server}:${default.tomcat.port}"/>-->
2363 <http url="${local.http.url}"/>
[30013]2364 </condition>
2365 </target>
[25321]2366
[30013]2367
2368
[25443]2369 <!-- stop-tomcat checks if the tomcat server is already running. If it appears to be running
2370 (regardless of whether tomcat was just starting to shut down), this target calls force-stop-tomcat
2371 to issue the shutdown command to tomcat. Then it waits for at most 15 seconds for the server to
2372 actually stop by checking the socket at which tomcat listens every second, printing a warning
2373 at the end of the max wait time of 15 seconds if tomcat was still running. -->
2374 <target name="stop-tomcat" description="Shutdown only Tomcat if running" depends="check-tomcat-running" if="tomcat.isrunning">
[25321]2375 <antcall target="force-stop-tomcat"/>
[25443]2376
2377 <property name="wait.numchecks" value="15"/>
2378 <echo>Waiting for the server to shutdown... (${wait.numchecks} seconds max)</echo>
2379 <waitfor maxwait="${wait.numchecks}" maxwaitunit="second" checkevery="1" checkeveryunit="second" timeoutproperty="tomcat.timedout">
[32429]2380 <not><socket server="${tomcat.server}" port="${default.tomcat.port}"/></not>
[25443]2381 </waitfor>
2382
2383 <if>
2384 <bool>
2385 <isset property="${tomcat.timedout}"/>
2386 </bool>
2387 <property name="tomcat.isrunning" value="true"/>
[32429]2388 <echo>WARNING: Checked the socket ${wait.numchecks} times, but port ${default.tomcat.port} is still busy.</echo>
[25443]2389 <else>
2390 <echo>Tomcat is stopped.</echo>
2391 <property name="tomcat.isrunning" value="false"/>
2392 </else>
2393 </if>
[25420]2394 </target>
[25321]2395
[30013]2396 <target name="restart-tomcat" description="Shutdown and restart only Tomcat" depends="init,stop-tomcat,force-start-tomcat"/>
[15124]2397
2398 <target name="setup-catalina-ant-tasks">
2399 <!-- Configure the custom Ant tasks for the Tomcat Manager application -->
2400 <taskdef name="deploy" classname="org.apache.catalina.ant.DeployTask"
2401 classpath="${catalina.home}/server/lib/catalina-ant.jar"/>
2402 <taskdef name="list" classname="org.apache.catalina.ant.ListTask"
2403 classpath="${catalina.home}/server/lib/catalina-ant.jar"/>
2404 <taskdef name="reload" classname="org.apache.catalina.ant.ReloadTask"
2405 classpath="${catalina.home}/server/lib/catalina-ant.jar"/>
2406 <taskdef name="resources" classname="org.apache.catalina.ant.ResourcesTask"
2407 classpath="${catalina.home}/server/lib/catalina-ant.jar"/>
2408 <taskdef name="roles" classname="org.apache.catalina.ant.RolesTask"
2409 classpath="${catalina.home}/server/lib/catalina-ant.jar"/>
2410 <taskdef name="start" classname="org.apache.catalina.ant.StartTask"
2411 classpath="${catalina.home}/server/lib/catalina-ant.jar"/>
2412 <taskdef name="stop" classname="org.apache.catalina.ant.StopTask"
2413 classpath="${catalina.home}/server/lib/catalina-ant.jar"/>
2414 <taskdef name="undeploy" classname="org.apache.catalina.ant.UndeployTask"
2415 classpath="${catalina.home}/server/lib/catalina-ant.jar"/>
2416 </target>
2417
[25449]2418 <!-- http://blog.andrewbeacock.com/2007/11/how-to-truncate-log-file-using-ubuntu.html
2419 Doing "cat </dev/null > packages/tomcat/logs/catalina.out" doesn't work as an ant target.
2420 It seems to have a problem with cat or </dev/null, with or without the < sign. -->
[26776]2421 <target name="reset-logs" description="Empties catalina.out, greenstone.log and contents of web/logs/tmp">
[29156]2422 <echo>Truncating catalina.out, solr.log, greenstone.log and server.log, and emptying ${web.writablehome}/logs/tmp</echo>
[26185]2423 <exec executable="rm" os="${os.unix}" dir="${catalina.home}/logs" spawn="false">
2424 <arg value="-f"/>
[25449]2425 <arg value="catalina.out"/>
2426 </exec>
[27829]2427 <exec executable="rm" os="${os.unix}" dir="${web.writablehome}/logs" spawn="false">
[26185]2428 <arg value="-f"/>
[25449]2429 <arg value="greenstone.log"/>
2430 </exec>
[27829]2431 <exec executable="rm" os="${os.unix}" dir="${web.writablehome}/logs" spawn="false">
[26185]2432 <arg value="-f"/>
[26002]2433 <arg value="server.log"/>
2434 </exec>
[15124]2435
[26185]2436 <exec executable="touch" os="${os.unix}" dir="${catalina.home}/logs"
2437 spawn="false">
2438 <arg value="catalina.out"/>
2439 </exec>
[27829]2440 <exec executable="touch" os="${os.unix}" dir="${web.writablehome}/logs"
[26185]2441 spawn="false">
2442 <arg value="greenstone.log"/>
2443 </exec>
[27829]2444 <exec executable="touch" os="${os.unix}" dir="${web.writablehome}/logs"
[26185]2445 spawn="false">
2446 <arg value="server.log"/>
2447 </exec>
2448
[28044]2449 <exec executable="cmd" osfamily="windows" dir="${catalina.home}/logs" spawn="false">
[25449]2450 <arg line="/c echo. > catalina.out"/>
2451 </exec>
[28044]2452 <exec executable="cmd" osfamily="windows" dir="${web.writablehome}/logs" spawn="false">
[25449]2453 <arg line="/c echo. > greenstone.log"/>
2454 </exec>
[28044]2455 <exec executable="cmd" osfamily="windows" dir="${web.writablehome}/logs" spawn="false">
[26002]2456 <arg line="/c echo. > server.log"/>
2457 </exec>
[25449]2458
[29156]2459 <!-- if ext/solr/logs/solr.log exists, truncate it -->
2460 <if><bool><available file="${solr-ext.home}/logs/solr.log" type="file"/></bool>
2461 <exec executable="rm" os="${os.unix}" dir="${solr-ext.home}/logs" spawn="false">
2462 <arg value="-f"/>
2463 <arg value="solr.log"/>
2464 </exec>
2465 <exec executable="touch" os="${os.unix}" dir="${solr-ext.home}/logs" spawn="false">
2466 <arg value="solr.log"/>
2467 </exec>
2468 <exec executable="cmd" osfamily="windows" dir="${solr-ext.home}/logs" spawn="false">
2469 <arg line="/c echo. > solr.log"/>
2470 </exec>
2471 </if>
2472
[25501]2473 <if>
[27829]2474 <bool><available file="${web.writablehome}/logs/tmp" type="dir"/></bool>
[25501]2475 <delete>
[27829]2476 <fileset dir="${web.writablehome}/logs/tmp" includes="**/*"/>
[25501]2477 </delete>
2478 </if>
[25449]2479 </target>
2480
[29438]2481 <target name="clear-tomcat-sessions" description="Clear the Tomcat Session info." depends="init">
2482 <exec executable="cmd" osfamily="windows" dir="${catalina.home}/work/Catalina/localhost/greenstone3" spawn="false">
2483 <arg line="/c echo. > SESSIONS.ser"/>
2484 </exec>
2485 <exec executable="rm" os="${os.unix}" dir="${catalina.home}/work/Catalina/localhost/greenstone3" spawn="false">
2486 <arg value="-f"/>
2487 <arg value="SESSIONS.ser"/>
2488 </exec>
2489
2490 </target>
[15799]2491 <!-- ======================= ant Targets ============================ -->
[15124]2492 <target name="prepare-ant" depends="init">
[16951]2493 <if>
2494 <bool>
2495 <not><available file="${packages.home}/ant/.flagfile"/></not>
2496 </bool>
[32367]2497 <property name="ant.download.version" value="apache-ant-1.9.13" />
[32365]2498 <get src="http://www.greenstone.org/gs3files/${ant.download.version}-bin.zip"
2499 dest="${packages.home}/${ant.download.version}-bin.zip"
[16951]2500 usetimestamp="true"/>
[32365]2501 <unzip src="${packages.home}/${ant.download.version}-bin.zip"
[16951]2502 dest="${packages.home}"/>
2503 <move todir="${packages.home}/ant">
[32365]2504 <fileset dir="${packages.home}/${ant.download.version}"/>
[16951]2505 </move>
2506 <echo file="${packages.home}/ant/.flagfile">
2507 the timestamp of this file is the time that ant was extracted from the zip files.
2508 it is used to figure out whether the files need to be refreshed or not in `ant prepare-ant`
2509 </echo>
2510
2511 <else>
2512 <echo>Ant has been prepared, will not prepare</echo>
2513 <echo>Delete ${packages.home}/ant/.flagfile to force refresh</echo>
2514 </else>
2515
2516 </if>
[15124]2517 </target>
2518
[25338]2519 <!-- ======================= Admin Targets ============================ -->
2520
2521 <!-- This target won't work with Eclipse because the SecureInputHandler used below conflicts with it.
2522 See http://www.dcepler.net/post.cfm/hiding-password-input-in-ant
2523 But you can do: echo mypassword | ant config-admin -->
2524 <target name="config-admin" description="Reset admin password">
[30055]2525 <input addproperty="admin.password" defaultvalue="admin" message="New admin password (3-20 characters):&gt;">
[25338]2526 <handler classname="org.apache.tools.ant.input.SecureInputHandler" /> <!-- password won't be visible on screen -->
2527 </input>
[25343]2528 <!--<echo>PWD: ${admin.password}</echo>-->
[25338]2529 <antcall target="update-userdb">
2530 <param name="user.username" value="admin"/>
2531 <param name="user.password" value="${admin.password}"/>
2532 <param name="user.groups" value=""/>
2533 <param name="user.status" value=""/>
2534 <param name="user.comment" value="Password updated."/>
2535 <param name="user.email" value=""/>
2536 </antcall>
2537 </target>
2538
2539 <target name="config-user" description="Add or modify users" depends="get-user-data,update-userdb"/>
2540
2541 <target name="get-user-data" description="Get user details">
2542 <input addproperty="user.username" message="Username:&gt;"/>
[30055]2543 <input addproperty="user.password" defaultvalue="" message="Password (3-20 characters):&gt;">
[25338]2544 <handler classname="org.apache.tools.ant.input.SecureInputHandler" /> <!-- password won't be visible on screen -->
2545 </input>
[30196]2546 <input addproperty="user.groups" defaultvalue="" message="Groups (comma-separated list, e.g. personal-collections-editor):&gt;"/>
[25338]2547 <input addproperty="user.status" defaultvalue="true" message="Enabled (true/false):&gt;"/>
2548 <input addproperty="user.comment" defaultvalue="" message="Comment:&gt;"/>
2549 <input addproperty="user.email" defaultvalue="" message="Email:&gt;"/>
2550 </target>
2551
[30055]2552 <!-- This target won't work with Eclipse because the SecureInputHandler used below conflicts with it.
2553 See http://www.dcepler.net/post.cfm/hiding-password-input-in-ant
2554 But you can do: echo mypassword | ant config-admin -->
2555 <target name="update-userdb" description="Add or modify users" depends="start-derby">
[25418]2556
[29903]2557 <!--
2558 We're now using derby networked server, so stopping and starting tomcat is not necessary.
2559 For embedded derby: stop tomcat if running, since derby db is embedded
2560 and only allows connections from one jvm instance at a time
[25418]2561 See http://db.apache.org/derby/papers/DerbyTut/embedded_intro.html
2562 The ${tomcat.isrunning} property is set by the depends-target "check-tomcat-running" -->
[30055]2563
2564 <!-- Need the derby networked server to be running in order to modify the usersDB.
2565 The start-derby task will check if derby is already running (if not, ${derby.isstarted} will
2566 be false) and will only start up networked derby if it is not already running.
2567 The ${derby.isstarted} property is set by the depends-target "start-derby", since it won't
2568 set the property if called with antcall (like launching in a subshell). Have to use 'depends'.
2569 We'll check ${derby.isstarted} at the end to stop derby again if we had to start it up now.-->
2570 <!--<antcall target="start-derby"/>-->
[25338]2571
[30055]2572 <!-- wait a max of 5 seconds for the derbyserver to have started up -->
[31142]2573 <waitfor maxwait="5" maxwaitunit="second">
[30055]2574 <socket server="${derby.server}" port="${derby.server.port}"/>
2575 </waitfor>
2576
[25338]2577 <!--<echo>${admin.password}</echo>--> <!-- for testing -->
[30235]2578 <echo>gsdl3.writablehome: ${gsdl3.writablehome}</echo> <!-- for testing -->
[30236]2579 <echo>web.home: ${web.home}</echo> <!-- for testing -->
[25338]2580 <java classname="org.greenstone.gsdl3.util.ModifyUsersDB">
2581 <classpath refid="compile.classpath"/> <!--for ${web.lib}/gsdl3.jar and supporting files-->
[30196]2582 <sysproperty key="gsdl3.writablehome" value="${gsdl3.writablehome}" /> <!-- passes -D<syspropKey=syspropVal> to java class ModifyUsersDB. Available in java code as System.getProperty("syspropKey") -->
[27921]2583 <arg file="${web.home}/etc/usersDB"/>
[25338]2584 <arg value="${user.username}"/>
2585 <arg value="password=${user.password}"/>
2586 <arg value="groups=${user.groups}"/>
2587 <arg value="status=${user.status}"/>
2588 <arg value="comment=${user.comment}"/>
2589 <arg value="email=${user.email}"/>
2590 </java>
[30055]2591
2592 <!-- Need to stop networked derby again if we ran it for this target with the depends=start-derby call.
2593 The test here is for <not>derby.isstarted</not>, as the property would be the same as before
2594 derby was started, since properties are immutable within a single ant command. -->
[25338]2595 <if>
2596 <bool>
[30055]2597 <not><istrue value="${derby.isstarted}"/></not>
2598 </bool>
2599 <antcall target="force-stop-derby"/>
[25338]2600 </if>
[30055]2601
[25338]2602 </target>
2603
2604
[20079]2605 <!-- ======================= Axis Targets ============================ -->
2606
[15124]2607 <target name="prepare-axis" depends="init">
[16951]2608
2609 <if>
2610 <bool>
2611 <not><available file="${packages.home}/axis/.flagfile"/></not>
2612 </bool>
2613
2614 <get src="http://www.greenstone.org/gs3files/${axis.zip.version}"
2615 dest="${packages.home}/${axis.zip.version}"
2616 usetimestamp="true"/>
2617 <unzip src="${packages.home}/${axis.zip.version}"
2618 dest="${packages.home}"/>
2619 <move todir="${packages.home}/axis">
2620 <fileset dir="${packages.home}/${axis.dir.version}"/>
2621 </move>
2622 <!-- install axis into greenstone web app -->
2623 <copy todir="${web.lib}">
2624 <fileset dir="${packages.home}/axis/webapps/axis/WEB-INF/lib">
2625 <include name="*.jar"/>
2626 </fileset>
2627 </copy>
2628 <copy todir="${web.home}">
2629 <fileset dir="${packages.home}/axis/webapps/axis/">
2630 <include name="*.jsp"/>
2631 <include name="*.jws"/>
2632 </fileset>
2633 </copy>
2634 <copy tofile="${web.home}/axis.html" file="${packages.home}/axis/webapps/axis/index.html"/>
2635 <copy todir="${web.classes}">
2636 <fileset dir="${packages.home}/axis/webapps/axis/WEB-INF/classes">
2637 <include name="*.properties"/>
2638 </fileset>
2639 </copy>
2640 <echo file="${packages.home}/axis/.flagfile">
2641 the timestamp of this file is the time that axis was extracted from the zip files.
2642 it is used to figure out whether the files need to be refreshed or not in `ant prepare-axis`
2643 </echo>
2644
2645 <else>
2646 <echo>Axis has been prepared, will not prepare</echo>
2647 <echo>Delete ${packages.home}/axis/.flagfile to force refresh</echo>
2648 </else>
2649
2650 </if>
[15124]2651 </target>
2652
[32338]2653 <target name="soap-deploy-site" depends="init,get-sitename,get-siteuri,get-webservices,create-deployment-files,deploy-site"
[15124]2654 description="Deploy a SOAP web service for a local Greenstone site. Tomcat must be running for this to work."/>
[15799]2655
2656 <target name="deploy-site">
[15124]2657 <java classname="org.apache.axis.client.AdminClient">
2658 <classpath refid="compile.classpath"/>
2659 <arg value="-l"/>
[32429]2660 <arg value="${default.server.protocol}://${tomcat.server}:${default.tomcat.port}${app.path}/servlet/AxisServlet"/>
[15229]2661 <arg file="${basedir}/resources/soap/deploy.wsdd"/>
2662 </java>
2663 <delete file="${basedir}/resources/soap/deploy.wsdd"/> <!--clean up, no longer used-->
[15124]2664 </target>
2665
[32338]2666 <target name="soap-undeploy-site" depends="get-undeploy-service-name"
[15124]2667 description="Undeploy a SOAP web service for a local Greenstone site. Tomcat must be running for this to work.">
[15229]2668 <filter token="servicesname" value="${axis.undeploy.servicename}"/>
2669 <copy file="${basedir}/resources/soap/undeploy-site.wsdd.template"
2670 tofile="${basedir}/resources/soap/undeploy.wsdd"
2671 filtering="true"
2672 overwrite="true"/>
[15124]2673 <java classname="org.apache.axis.client.AdminClient">
2674 <classpath refid="compile.classpath"/>
2675 <arg value="-l"/>
[32429]2676 <arg value="${default.server.protocol}://${tomcat.server}:${default.tomcat.port}${app.path}/servlet/AxisServlet"/>
[15229]2677 <arg file="${basedir}/resources/soap/undeploy.wsdd"/>
[15124]2678 </java>
[15229]2679 <delete file="${basedir}/resources/soap/undeploy.wsdd"/> <!--clean up, no longer used-->
[15799]2680 </target>
[15124]2681
[16936]2682 <!-- this target used to deploy the default web service SOAPServer (base.webservice.name) on the localsite server
2683 with the default servicename of localsite-->
[32338]2684 <target name="deploy-localsite" depends="init"
[15124]2685 description="Deploy the SOAP server for localsite. Will start and stop Tomcat.">
[30013]2686 <antcall target="force-start-tomcat"/>
[15235]2687 <echo>Deploying ${base.webservice.name} web services for localsite under service name: localsite</echo>
[15229]2688 <antcall target="create-deployment-files">
2689 <param name="axis.sitename" value="localsite"/>
[15235]2690 <param name="axis.servicesname" value="${base.webservice.name}"/>
[15229]2691 <param name="axis.siteuri" value="localsite"/>
2692 </antcall>
[15124]2693 <antcall target="deploy-site">
2694 <param name="axis.sitename" value="localsite"/>
[15235]2695 <param name="axis.servicesname" value="${base.webservice.name}"/>
[15229]2696 <param name="axis.siteuri" value="localsite"/>
[15124]2697 </antcall>
[15369]2698 <echo>The Greenstone server has been started up. If you do not want it running, please type: ant stop.</echo>
[15124]2699 </target>
[15799]2700
[16936]2701 <target name="get-sitename" unless="axis.sitename">
[15229]2702 <input addproperty="axis.sitename" defaultvalue="localsite">What site do you want to deploy services for?
[15235]2703Press Enter for default:localsite</input>
[15124]2704 </target>
2705
[15229]2706 <target name="get-undeploy-service-name" unless="axis.undeploy.servicename">
2707 <input addproperty="axis.undeploy.servicename" defaultvalue="localsite">Please enter the full name of the service you wish to undeploy.
[32429]2708To find out which web services you've got deployed, point your browser to ${default.server.protocol}://${tomcat.server}:${default.tomcat.port}/greenstone3/services
[20209]2709Or press Enter for undeploying the default:localsite /&gt;</input>
[15229]2710 <echo>Name of service to undeploy: ${axis.undeploy.servicename}</echo>
[15124]2711 </target>
2712
[15229]2713 <target name="get-webservices" unless="axis.servicesname">
[15235]2714 <input addproperty="axis.servicesname" defaultvalue="${base.webservice.name}">Which set of web services do you want to deploy?
[15229]2715Choose from: ${web.services.list}
[20209]2716Or press Enter for default:${base.webservice.name} /&gt;</input>
[15229]2717 <echo>${axis.servicesname}</echo>
2718 </target>
2719
2720 <target name="get-siteuri" depends="get-sitename,get-webservices" unless="axis.siteuri">
[15235]2721 <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]2722 <echo>Site: ${axis.sitename}, services: ${axis.servicesname}, servicesname: ${axis.siteuri}</echo>
2723 </target>
2724
2725 <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">
2726 <condition property="soap.method" value="provider='java:MSG' style='message' use='literal'">
[15235]2727 <equals arg1="${axis.servicesname}" arg2="${base.webservice.name}"/>
[15124]2728 </condition>
[15229]2729
2730 <!--everything else defaults to java:RPC at present-->
2731 <condition property="soap.method" value="provider='java:RPC'">
2732 <not>
[15235]2733 <equals arg1="${axis.servicesname}" arg2="${base.webservice.name}"/>
[15229]2734 </not>
2735 </condition>
[16936]2736 </target>
[15799]2737
[16936]2738 <target name="create-deployment-files" depends="set-soapmethod" if="axis.sitename">
[15124]2739 <filter token="sitename" value="${axis.sitename}"/>
2740 <filter token="siteuri" value="${axis.siteuri}"/>
[15229]2741 <filter token="servicesname" value="${axis.servicesname}"/>
2742 <filter token="soapmethod" value="${soap.method}"/>
[15124]2743 <copy file="${basedir}/resources/soap/site.wsdd.template"
[15229]2744 tofile="${basedir}/resources/soap/deploy.wsdd"
2745 filtering="true"
2746 overwrite="true"/>
[15124]2747 <!-- create the java files and compile them -->
[15229]2748 <copy file="${basedir}/resources/java/${axis.servicesname}.java.in"
2749 tofile="${src.gsdl3.home}/${axis.servicesname}${axis.sitename}.java"
2750 filtering="true"
2751 overwrite="true"/>
[15124]2752 <mkdir dir="${build.home}"/>
2753 <javac srcdir="${src.home}"
2754 destdir="${build.home}"
[28137]2755 includeantruntime="${compile.includeantruntime}"
[15124]2756 debug="${compile.debug}"
2757 deprecation="${compile.deprecation}"
[29515]2758 optimize="${compile.optimize}"
2759 encoding="${compile.encoding}">
[15124]2760 <classpath refid="compile.classpath"/>
[15229]2761 <include name="org/greenstone/gsdl3/${axis.servicesname}${axis.sitename}.java" />
[15124]2762 </javac>
2763 <mkdir dir="${web.classes}/org/greenstone/gsdl3"/>
[15799]2764 <copy file="${build.home}/org/greenstone/gsdl3/${axis.servicesname}${axis.sitename}.class"
2765 tofile="${web.classes}/org/greenstone/gsdl3/${axis.servicesname}${axis.sitename}.class"
2766 overwrite="true" />
[15124]2767 </target>
[15799]2768
[15124]2769
[15799]2770 <!-- ====================== Core targets ============================== -->
2771 <!-- core targets refer to the core gsdl3 java src -->
[15124]2772
[19878]2773 <target name="prepare-core"/>
[15124]2774
2775 <target name="configure-core"/>
2776
2777 <target name="update-core" depends="init,svnupdate-core,clean-core,compile-core"
2778 description="Update only the Greenstone core" />
2779
[15799]2780 <target name="svnupdate-core" unless="nosvn.mode">
[20930]2781 <exec executable="svn">
2782 <arg value="update"/>
2783 <arg value="${basedir}"/>
2784 <arg value="-r"/><arg value="${branch.revision}"/>
2785 </exec>
[15124]2786 </target>
2787
2788 <target name="clean-core"
2789 description="Clean only the Greenstone core">
[19878]2790 <!-- should this delete the gsdl3.jar from web/WEB-INF?? -->
[15124]2791 <delete dir="${build.home}"/>
2792 </target>
2793
[15799]2794 <target name="compile-core" depends="init"
[15124]2795 description="Compile only the Greenstone core">
2796 <mkdir dir="${build.home}"/>
[25131]2797
[23803]2798 <if><bool><isset property="with.jni"/></bool>
2799 <javac srcdir="${src.home}"
2800 destdir="${build.home}"
[28137]2801 includeantruntime="${compile.includeantruntime}"
[23803]2802 debug="${compile.debug}"
2803 deprecation="${compile.deprecation}"
[29515]2804 optimize="${compile.optimize}"
2805 encoding="${compile.encoding}">
[23803]2806 <classpath>
2807 <path refid="compile.classpath"/>
2808 </classpath>
2809 </javac>
2810 <else>
2811 <property name="gsprefix" value=""/>
2812 <javac srcdir="${src.home}"
[28137]2813 destdir="${build.home}"
2814 includeantruntime="${compile.includeantruntime}"
2815 debug="${compile.debug}"
2816 deprecation="${compile.deprecation}"
[29515]2817 optimize="${compile.optimize}"
2818 encoding="${compile.encoding}">
[23803]2819 <classpath>
2820 <path refid="compile.classpath"/>
2821 </classpath>
2822 <exclude name="org/greenstone/gsdl3/service/GS2MGPPRetrieve.java"/>
2823 <exclude name="org/greenstone/gsdl3/service/GS2MGPPSearch.java"/>
2824 <exclude name="org/greenstone/gsdl3/service/GS2MGSearch.java"/>
2825 <exclude name="org/greenstone/gsdl3/service/GS2MGRetrieve.java"/>
2826 <exclude name="org/greenstone/gsdl3/service/GoogleNgramMGPPSearch.java"/>
2827 <exclude name="org/greenstone/gsdl3/service/PhindPhraseBrowse.java"/>
2828 <exclude name="org/greenstone/gsdl3/util/GDBMWrapper.java"/>
2829 </javac>
2830 </else>
2831 </if>
[15124]2832 <jar destfile="${build.home}/gsdl3.jar">
2833 <fileset dir="${build.home}">
[16936]2834 <include name="org/greenstone/gsdl3/**"/>
[15124]2835 <include name="org/flax/**"/>
[16936]2836 <exclude name="**/Test.class"/>
[15124]2837 </fileset>
2838 <manifest>
[16936]2839 <attribute name="Built-By" value="${user.name}" />
[15124]2840 </manifest>
2841 </jar>
2842 <copy file="${build.home}/gsdl3.jar" todir="${web.lib}"/>
[22101]2843
2844 <jar destfile="${build.home}/gutil.jar">
2845 <fileset dir="${build.home}">
2846 <include name="org/greenstone/util/**"/>
2847 </fileset>
2848 <manifest>
2849 <attribute name="Built-By" value="${user.name}" />
2850 </manifest>
2851 </jar>
2852 <copy file="${build.home}/gutil.jar" todir="${web.lib}"/>
2853
[15124]2854 <!-- copy the localsite server in case we need it -->
[15235]2855 <copy file="${build.home}/org/greenstone/gsdl3/${base.webservice.name}localsite.class" tofile="${web.classes}/org/greenstone/gsdl3/${base.webservice.name}localsite.class" />
[15124]2856
[17918]2857 <!-- Greenstone Administrator Interface -->
[15124]2858 <jar destfile="${build.home}/GAI.jar">
2859 <fileset dir="${build.home}">
[16936]2860 <include name="org/greenstone/admin/**"/>
[15124]2861 </fileset>
2862 <manifest>
[16936]2863 <attribute name="Built-By" value="${user.name}" />
[15124]2864 </manifest>
2865 </jar>
[17917]2866 <copy file="${build.home}/GAI.jar" todir="${web.lib}"/>
[18124]2867 <copy file="${build.home}/GAI.jar" todir="${admin.dir}"/>
[15124]2868 <jar destfile="${build.home}/phind.jar">
2869 <fileset dir="${build.home}">
[16936]2870 <include name="org/greenstone/applet/phind/**"/>
[15124]2871 </fileset>
2872 <manifest>
[16936]2873 <attribute name="Built-By" value="${user.name}" />
[15124]2874 </manifest>
2875 </jar>
2876 <mkdir dir="${web.applet}"/>
2877 <copy file="${build.home}/phind.jar" todir="${web.applet}"/>
2878 <!-- phind also needs xercesImpl.jar and xml-apis.jar to be in web/applet -->
[18515]2879 <if>
2880 <bool><istrue value="${tomcat.islocal}"/></bool>
[29711]2881 <if><bool><available file="${catalina.home}/lib/xercesImpl.jar"/></bool><!-- moved for solr -->
2882 <copy file="${catalina.home}/lib/xercesImpl.jar" todir="${web.applet}"/>
2883 <copy file="${catalina.home}/lib/xml-apis.jar" todir="${web.applet}"/>
2884
2885 <else><!-- get from default GS3 web lib location-->
2886 <copy file="${web.lib}/xercesImpl.jar" todir="${web.applet}"/>
2887 <copy file="${web.lib}/xml-apis.jar" todir="${web.applet}"/>
2888 </else>
2889 </if>
[18515]2890 </if>
2891
2892
[17116]2893 <!-- skip anttasks for now
[15124]2894 <jar destfile="${build.home}/anttasks.jar">
2895 <fileset dir="${build.home}">
[16936]2896 <include name="org/greenstone/anttasks/**"/>
[15124]2897 </fileset>
2898 <manifest>
[16936]2899 <attribute name="Built-By" value="${user.name}" />
[15124]2900 </manifest>
2901 </jar>
[17116]2902 <copy file="${build.home}/anttasks.jar" todir="${basedir}/lib/java"/>-->
[15124]2903 <jar destfile="${build.home}/gsdl3test.jar">
2904 <fileset dir="${build.home}">
[16936]2905 <include name="org/greenstone/gsdl3/**/*Test.class"/>
2906 <include name="org/greenstone/testing/**"/>
[15124]2907 </fileset>
2908 <manifest>
[16936]2909 <attribute name="Built-By" value="${user.name}" />
[15124]2910 </manifest>
2911 </jar>
2912 <jar destfile="${build.home}/server.jar">
2913 <fileset dir="${build.home}">
[16936]2914 <include name="org/greenstone/server/**"/>
[22634]2915 <include name="org/greenstone/util/**"/>
[15124]2916 </fileset>
2917 <fileset file="${basedir}/resources/java/server.properties"/>
2918 <manifest>
[16936]2919 <attribute name="Built-By" value="${user.name}"/>
[15124]2920 </manifest>
2921 </jar>
2922 <copy file="${build.home}/server.jar" todir="${basedir}"/>
2923 </target>
[27149]2924
2925 <!-- === Eclipse targets == -->
2926 <target name="setup-for-eclipse">
2927
2928 <filter token="gsdlhome" value="${gs2build.home}"/>
2929 <filter token="gsdl3srchome" value="${basedir}"/>
2930 <filter token="gsdl3home" value="${basedir}/web"/>
2931
2932 <if>
2933 <bool><not><available file="${basedir}/TransformingLibrary.launch"/></not></bool>
2934 <copy file="${basedir}/TransformingLibrary.launch.in" tofile="${basedir}/TransformingLibrary.launch" filtering="true" overwrite="true"/>
2935 </if>
2936<!--
2937 <if>
2938 <bool><not><available file="${basedir}/LibraryCommandline.launch"/></not></bool>
2939 <copy file="${basedir}/LibraryCommandline.launch.in" tofile="${basedir}/LibraryCommandline.launch" filtering="true" overwrite="true"/>
2940 </if>
2941-->
2942 </target>
[15799]2943
2944 <!-- ================== Packages targets ================================ -->
[15124]2945 <!-- these targets refer to the greenstone source packages - these need
2946 updating less often, so are in separate targets to the core -->
[19871]2947 <target name="prepare-packages" depends="init"/>
[15124]2948
2949 <target name="update-packages" depends="init,svnupdate-packages,configure-packages,clean-packages,compile-packages"
2950 description="Update only the source packages"/>
2951
[15799]2952 <target name="svnupdate-packages" unless="nosvn.mode">
[20930]2953 <exec executable="svn">
2954 <arg value="update"/>
2955 <arg value="${src.packages.home}"/>
2956 <arg value="-r"/><arg value="${branch.revision}"/>
2957 </exec>
[15124]2958 </target>
[19931]2959
[15124]2960
[19871]2961 <target name="configure-packages" depends="init,configure-javagdbm"
[15124]2962 description="Configure only the packages."/>
2963
[22184]2964 <target name="configure-javagdbm" if="with.jni">
[15124]2965 <echo>
2966 Configuring JavaGDBM
2967 </echo>
[18417]2968
[19904]2969 <exec executable="${javagdbm.home}/configure" os="${os.unix}" dir="${javagdbm.home}" failonerror="true">
[15124]2970 <arg value="--prefix=${basedir}"/>
2971 <arg value="--libdir=${lib.jni}"/>
[19873]2972 <arg value="--with-gdbm=${gdbm.home}"/>
[26765]2973 <arg line="${cross.configure.args}"/>
[15124]2974 </exec>
2975 </target>
2976
[19871]2977 <target name="clean-packages" depends="init,clean-javagdbm" description="Clean only the packages"/>
[15124]2978
2979 <target name="clean-javagdbm" depends="init">
[26082]2980 <if><bool><available file="${javagdbm.home}/Makefile"/></bool>
[15124]2981 <exec executable="make" os="${os.unix}"
[19904]2982 dir="${javagdbm.home}" failonerror="true">
[15124]2983 <arg value="clean"/>
2984 </exec>
[26082]2985 </if>
[15124]2986 </target>
2987
[19871]2988 <target name="distclean-packages" depends="init,distclean-javagdbm" description="Distclean only the packages"/>
[15185]2989
[15799]2990 <target name="distclean-javagdbm" depends="init">
[26079]2991 <if><bool><available file="${javagdbm.home}/Makefile"/></bool>
[15799]2992 <exec executable="make" os="${os.unix}"
[19904]2993 dir="${javagdbm.home}" failonerror="true">
[15799]2994 <arg value="distclean"/>
2995 </exec>
[26079]2996 </if>
[15799]2997 </target>
2998
2999 <target name="compile-packages" description="Compile only the source packages">
[22184]3000 <!-- javagdbm -->
3001 <antcall target="compile-javagdbm"/>
3002 <!-- Search4j -->
3003 <antcall target="compile-search4j"/>
3004 </target>
3005
3006 <target name="compile-javagdbm" description="Compile JavaGDBM" if="with.jni">
[15799]3007
[19878]3008 <!-- unix: -->
[15799]3009 <echo>compile javagdbm</echo>
[19904]3010 <exec executable="make" os="${os.unix}" dir="${javagdbm.home}" failonerror="true">
[29518]3011 <arg value="JAVACOPTIONS=-encoding UTF8"/>
3012 </exec>
3013 <exec executable="make" os="${os.unix}" dir="${javagdbm.home}" failonerror="true">
[15799]3014 <arg value="install"/>
3015 </exec>
[15098]3016
[23852]3017 <!-- windows: Calling without the "compile" argument first will run winMake.bat with
3018 "all" which will then perform both the compile AND link targets in jni/win32.mak
3019 (thereby also generating gdbmjava.dll). Then we run the same command with
3020 the "install" argument to copy the gdbmjava.dll into the correct location. -->
[23849]3021 <echo>Windows: compile javagdbm</echo>
[28044]3022 <exec executable="${javagdbm.home}/winMake.bat" osfamily="windows" dir="${javagdbm.home}" failonerror="true">
[24076]3023 <env key="GSDL3SRCHOME" path="${basedir}"/>
[23852]3024 </exec>
[28044]3025 <exec executable="${javagdbm.home}/winMake.bat" osfamily="windows" dir="${javagdbm.home}" failonerror="true">
[24076]3026 <env key="GSDL3SRCHOME" path="${basedir}"/>
[23847]3027 <arg value="install"/>
[15799]3028 </exec>
[15124]3029
[15799]3030 <!-- install the jar file -->
[23847]3031 <echo>Install the javagdbm jar file ${javagdbm.home}/javagdbm.jar ${lib.jni}</echo>
[15799]3032 <copy file="${javagdbm.home}/javagdbm.jar" todir="${lib.jni}"/>
3033 </target>
3034
[17491]3035 <target name="compile-search4j">
[17509]3036
[19996]3037 <!-- windows -->
[19997]3038 <if><bool><istrue value="${current.os.iswindows}"/></bool>
[19996]3039 <exec executable="nmake" dir="${src.packages.home}/search4j" failonerror="true">
3040 <arg value="/f"/>
3041 <arg value="win32.mak"/>
3042 <arg value='BINDIR="${basedir}\bin"'/>
3043 </exec>
3044 <exec executable="nmake" dir="${src.packages.home}/search4j" failonerror="true">
3045 <arg value="/f"/>
3046 <arg value="win32.mak"/>
3047 <arg value="install"/>
3048 <arg value='BINDIR="${basedir}\bin"'/>
3049 </exec>
[17509]3050
[19996]3051 <!-- unix -->
[19997]3052 <else><if><bool><istrue value="${current.os.isunix}"/></bool>
[19996]3053 <exec executable="${src.packages.home}/search4j/configure" dir="${src.packages.home}/search4j" failonerror="true">
3054 <arg value="--bindir=${basedir}/bin"/>
3055 <arg value="${static.arg}"/>
[26765]3056 <arg line="${cross.configure.args}"/>
[19996]3057 </exec>
3058 <exec executable="make" dir="${src.packages.home}/search4j" failonerror="true"/>
3059 <exec executable="make" dir="${src.packages.home}/search4j" failonerror="true">
3060 <arg value="install"/>
3061 </exec>
[17509]3062
[19996]3063 <!-- else warn -->
3064 <else>
3065 <fail>this target does not support the current os</fail>
[17509]3066
[19996]3067 </else></if></else></if>
3068
[17491]3069 </target>
3070
[19871]3071 <target name="install-auxiliary-jar-files" depends="init">
[22184]3072
3073 <if>
3074 <bool><available file="${mg.home}/mg.jar"/></bool>
3075 <copy file="${mg.home}/mg.jar" todir="${lib.jni}"/>
3076 </if>
3077
3078 <if>
[22199]3079 <bool><available file="${mgpp.home}/mgpp.jar"/></bool>
[22184]3080 <copy file="${mgpp.home}/mgpp.jar" todir="${lib.jni}"/>
3081 </if>
3082
[29143]3083 <copy file="${lucene.home}/LuceneWrapper4.jar" todir="${web.lib}"/>
[19871]3084 </target>
3085
[22976]3086 <target name="install-jni-files" depends="init" if="with.jni">
3087 <antcall target="install-jni-files-linux"/>
3088 <antcall target="install-jni-files-windows"/>
3089 <antcall target="install-jni-files-macos"/>
3090 </target>
[15124]3091
[15799]3092 <target name="install-jni-files-linux" depends="init" if="current.os.isunixnotmac">
[26765]3093
3094 <if>
3095
3096 <bool><equals arg1="${os.bin.dir}" arg2="windows"/></bool>
3097 <!-- cross compiling to windows -->
3098 <copy file="${mg.home}/jni/mgretrievejni.dll" todir="${lib.jni}"/>
3099 <copy file="${mg.home}/jni/mgsearchjni.dll" todir="${lib.jni}"/>
3100 <copy file="${mg.home}/jni/mgpassjni.dll" todir="${lib.jni}"/>
3101 <copy file="${mgpp.home}/jni/mgppretrievejni.dll" todir="${lib.jni}"/>
3102 <copy file="${mgpp.home}/jni/mgppsearchjni.dll" todir="${lib.jni}"/>
3103 <copy file="${mgpp.home}/jni/mgpppassjni.dll" todir="${lib.jni}"/>
3104
3105 <else>
3106 <!-- otherwise do the usual Unix copies -->
3107 <copy file="${mg.home}/jni/libmgretrievejni.so" todir="${lib.jni}"/>
3108 <copy file="${mg.home}/jni/libmgsearchjni.so" todir="${lib.jni}"/>
3109 <copy file="${mg.home}/jni/libmgpassjni.so" todir="${lib.jni}"/>
3110 <copy file="${mgpp.home}/jni/libmgppretrievejni.so" todir="${lib.jni}"/>
3111 <copy file="${mgpp.home}/jni/libmgppsearchjni.so" todir="${lib.jni}"/>
3112 <copy file="${mgpp.home}/jni/libmgpppassjni.so" todir="${lib.jni}"/>
3113 </else>
3114 </if>
3115
3116
[15799]3117 </target>
3118 <target name="install-jni-files-windows" depends="init" if="current.os.iswindows">
[15124]3119 <copy file="${mg.home}/jni/mgretrievejni.dll" todir="${lib.jni}"/>
3120 <copy file="${mg.home}/jni/mgsearchjni.dll" todir="${lib.jni}"/>
[15799]3121 <copy file="${mg.home}/jni/mgpassjni.dll" todir="${lib.jni}"/>
[15124]3122 <copy file="${mgpp.home}/jni/mgppretrievejni.dll" todir="${lib.jni}"/>
3123 <copy file="${mgpp.home}/jni/mgppsearchjni.dll" todir="${lib.jni}"/>
[15799]3124 <copy file="${mgpp.home}/jni/mgpppassjni.dll" todir="${lib.jni}"/>
3125 </target>
3126 <target name="install-jni-files-macos" depends="init" if="current.os.ismac">
[15124]3127 <copy file="${mg.home}/jni/libmgretrievejni.jnilib" todir="${lib.jni}"/>
3128 <copy file="${mg.home}/jni/libmgsearchjni.jnilib" todir="${lib.jni}"/>
[15799]3129 <copy file="${mg.home}/jni/libmgpassjni.jnilib" todir="${lib.jni}"/>
[15124]3130 <copy file="${mgpp.home}/jni/libmgppretrievejni.jnilib" todir="${lib.jni}"/>
3131 <copy file="${mgpp.home}/jni/libmgppsearchjni.jnilib" todir="${lib.jni}"/>
[15799]3132 <copy file="${mgpp.home}/jni/libmgpppassjni.jnilib" todir="${lib.jni}"/>
3133 </target>
3134
[19871]3135 <!-- ========common-src targets =================================-->
3136 <!-- these are used to get common-src (for indexers, gdbm, sqlite etc) when
3137 collection building is not enabled -->
3138
3139 <target name="update-common-src" depends="init" if="collection.building.disabled">
3140 </target>
[19931]3141
[19871]3142 <target name="svnupdate-common-src" depends="init" if="collection.building.disabled" unless="nosvn.mode">
[20930]3143 <exec executable="svn">
3144 <arg value="update"/>
3145 <arg value="${common.src.home}"/>
3146 <arg value="-r"/><arg value="${branch.revision}"/>
3147 </exec>
[19871]3148 </target>
3149
[19878]3150 <target name="prepare-common-src" depends="init" if="collection.building.disabled" unless="common.src.present">
[19871]3151 <antcall target="checkout-common-src"/>
3152 <antcall target="unzip-windows-packages"/>
3153 </target>
3154
3155 <target name="checkout-common-src" depends="init" if="collection.building.disabled" unless="nosvn.mode">
3156 <echo>checking out common-src</echo>
[20930]3157 <exec executable="svn">
3158 <arg value="checkout"/>
[21196]3159 <arg value="${svn.root}/main/${branch.path}/greenstone2/common-src"/>
[20930]3160 <arg value="common-src"/>
3161 <arg value="-r"/><arg value="${branch.revision}"/>
3162 </exec>
[19871]3163 </target>
3164
[19931]3165 <target name="configure-common-src" depends="init">
[26765]3166<!--
3167 <echo>cross configure args: ${cross.configure.args}</echo>
3168-->
[19871]3169 <exec executable="${common.src.home}/configure" os="${os.unix}"
[19904]3170 dir="${common.src.home}" failonerror="true">
[19931]3171 <arg value="--prefix=${gs2build.home}"/> <!-- what value to use?? -->
[19933]3172 <arg value="--bindir=${gs2build.home}/bin/${os.bin.dir}"/> <!-- what value to use?? -->
[22184]3173 <arg line="${gs2.opt.args}"/>
[22854]3174 <arg line="${static.arg}"/>
[26765]3175 <arg line="${cross.configure.args}"/>
[23611]3176 <arg line="${allargs}"/>
[19871]3177 </exec>
3178 </target>
3179
[19931]3180 <target name="clean-common-src" depends="init">
[19871]3181 <!-- unix: -->
[26082]3182 <if><bool><available file="${common.src.home}/Makefile"/></bool>
[19904]3183 <exec executable="make" os="${os.unix}" dir="${common.src.home}" failonerror="true">
[19871]3184 <arg value="clean"/>
3185 </exec>
[26082]3186 </if>
[19871]3187 <!-- windows: -->
[28044]3188 <exec executable="nmake" dir="${common.src.home}" osfamily="windows" failonerror="true">
[19871]3189 <arg value="/f"/>
3190 <arg value="win32.mak"/>
3191 <arg value="clean"/>
[19960]3192 <arg value="GSDLHOME=${gs2build.home}"/>
[19871]3193 </exec>
3194 </target>
[19931]3195 <target name="distclean-common-src" depends="init">
[19960]3196 <!-- unix: -->
[26079]3197 <if><bool><available file="${common.src.home}/Makefile"/></bool>
[19904]3198 <exec executable="make" os="${os.unix}" dir="${common.src.home}" failonerror="true">
[19871]3199 <arg value="distclean"/>
3200 </exec>
[26079]3201 </if>
[19960]3202 <!-- windows: distclean = clean + remove configure products (remove makefiles). But on Windows there is no removing makefiles, so we just call clean -->
[28044]3203 <exec executable="nmake" dir="${common.src.home}" osfamily="windows" failonerror="true">
[19960]3204 <arg value="/f"/>
3205 <arg value="win32.mak"/>
3206 <arg value="clean"/>
3207 <arg value="GSDLHOME=${gs2build.home}"/>
3208 </exec>
[19871]3209 </target>
[19931]3210 <target name="compile-common-src" depends="init">
[19871]3211 <!-- unix: -->
[19904]3212 <exec executable="make" os="${os.unix}" dir="${common.src.home}" failonerror="true">
[22184]3213 <arg value="${gs2.compile.target}"/>
[19871]3214 </exec>
3215 <!-- windows: -->
[28044]3216 <exec executable="nmake" dir="${common.src.home}" osfamily="windows" failonerror="true">
[19871]3217 <arg value="/f"/>
3218 <arg value="win32.mak"/>
[19934]3219 <arg value="GSDLHOME=${gs2build.home}"/>
[22184]3220 <arg value="ENABLE_JNI=${gs2.windows.enablejni}"/>
[22976]3221 <arg value="ENABLE_MG=${gs2.windows.enablemg}"/>
3222 <arg value="ENABLE_MGPP=${gs2.windows.enablemgpp}"/>
3223 <arg value="USE_GDBM=${gs2.windows.usegdbm}"/>
3224 <arg value="USE_SQLITE=${gs2.windows.usesqlite}"/>
[19871]3225 </exec>
3226 </target>
3227
[19843]3228 <!-- ======= collection-building targets ===========================-->
[15124]3229
[19843]3230 <target name="update-collection-building" if="collection.building.enabled"
[19931]3231 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]3232 description="Update (SVN update, configure, compile etc) only the collection building components"/>
[15124]3233
[27135]3234 <target name="svnupdate-collection-building" if="collection.building.enabled" depends="init,svnupdate-gs2build,svnupdate-cgi,svnupdate-gli" unless="nosvn.mode"
[19843]3235 description="SVN update the collection building components">
3236 </target>
[15124]3237
[27135]3238 <target name="prepare-collection-building" depends="init,prepare-gs2build,svnupdate-cgi,prepare-gli" if="collection.building.enabled">
[15124]3239 </target>
3240
[19931]3241 <target name="configure-collection-building" depends="init,configure-build-src" if="collection.building.enabled"
3242 description="Configure the collection building components">
[19843]3243 </target>
[15098]3244
[19948]3245 <target name="clean-collection-building" depends="init,clean-gli,clean-build-src"
[19843]3246 description="Clean only the collection building components"
3247 if="collection.building.enabled"/>
[18495]3248
[19948]3249 <target name="distclean-collection-building" depends="init,clean-build-src,distclean-build-src"
[19843]3250 description="Distclean only the collection building components"
3251 if="collection.building.enabled"/>
3252
[19931]3253 <target name="compile-collection-building" depends="init,compile-build-src,compile-gli" if="collection.building.enabled"
[19843]3254 description="Compile only the collection building components">
[19931]3255 <!-- make install for common-src -->
3256 <!-- unix: -->
3257 <exec executable="make" os="${os.unix}" dir="${common.src.home}" failonerror="true">
[22184]3258 <arg value="${gs2.install.target}"/>
[19931]3259 </exec>
3260
3261 <!-- windows: -->
[28044]3262 <exec executable="nmake" dir="${common.src.home}" osfamily="windows" failonerror="true">
[19931]3263 <arg value="/f"/>
3264 <arg value="win32.mak"/>
[21370]3265 <arg value="install"/>
[23837]3266 <arg value="GSDLHOME=${gs2build.home}"/>
[22184]3267 <arg value="ENABLE_JNI=${gs2.windows.enablejni}"/>
[23837]3268 <arg value="ENABLE_MG=${gs2.windows.enablemg}"/>
3269 <arg value="ENABLE_MGPP=${gs2.windows.enablemgpp}"/>
3270 <arg value="USE_GDBM=${gs2.windows.usegdbm}"/>
3271 <arg value="USE_SQLITE=${gs2.windows.usesqlite}"/>
3272 <!--
3273 <arg value="ENABLE_JNI=${gs2.windows.enablejni}"/>
3274 <arg value="USE_SQLITE=0"/>--> <!-- why is this not on by default? -->
[19931]3275 </exec>
3276
3277 <!-- install gs2build indexers for windows -->
3278 <if>
3279 <bool><istrue value="${current.os.iswindows}"/></bool>
3280 <copy todir="${gs2build.home}/bin/windows">
3281 <fileset dir="${gs2build.home}/common-src/indexers/bin">
3282 <include name="*.*"/>
3283 </fileset>
3284 </copy>
3285 </if>
3286
3287 <!-- LuceneWrapper jar file not installed by default -->
3288 <mkdir dir="${gs2build.home}/bin/java"/>
[29143]3289 <copy file="${lucene.home}/LuceneWrapper4.jar" todir="${gs2build.home}/bin/java"/>
[19931]3290
[15124]3291 </target>
[19843]3292
3293 <!-- ============== gli targets ================================= -->
[27135]3294
[27484]3295 <!-- gliserver.pl, gsdlCGI.pm, metadata-server.pl and checksum.pl are updated alongside
[27135]3296 this in target svnupdate-collection-building -->
[15799]3297 <target name="svnupdate-gli" if="collection.building.enabled" depends="init" unless="nosvn.mode">
[19929]3298
[20930]3299 <exec executable="svn">
3300 <arg value="update"/>
3301 <arg value="${gli.home}"/>
3302 <arg value="-r"/><arg value="${branch.revision}"/>
3303 </exec>
3304
[15124]3305 </target>
3306
[27484]3307 <!-- gliserver.pl, gsdlCGI.pm, metadata-server.pl and checksum.pl are updated
[27135]3308 alongside this prepare-gli target in target prepare-collection-building -->
[19843]3309 <target name="prepare-gli" depends="init" if="collection.building.enabled" unless="gli.present">
[19911]3310 <!-- checkout -->
[23808]3311 <if><bool><and><not><istrue value="${nosvn.mode}"/></not><isset property="with.gli.and.gems"/></and></bool>
[19929]3312
[20930]3313 <exec executable="svn">
3314 <arg value="checkout"/>
[21196]3315 <arg value="${svn.root}/main/${branch.path}/gli"/>
[20930]3316 <arg value="-r"/><arg value="${branch.revision}"/>
3317 </exec>
3318
[27135]3319 </if>
3320 </target>
3321
[27484]3322 <!-- svn checkout gliserver.pl, gsdlCGI.pm for gli applet, as well as gsdlCGI.pm-dependent metadata-server.pl
3323 (checksum.pl is used by GS2 for depositdspace.dm and may eventually be used by GS3 too) -->
[27135]3324 <target name="svnupdate-cgi">
3325
3326 <exec executable="svn" dir="web/WEB-INF/cgi">
[20930]3327 <arg value="export"/>
3328 <arg value="-r"/><arg value="${branch.revision}"/>
[25570]3329 <arg value="${svn.root}/main/${branch.path}/greenstone2/common-src/cgi-bin/gliserver.pl"/>
[20930]3330 </exec>
[21196]3331 <exec executable="svn" dir="web/WEB-INF/cgi">
3332 <arg value="export"/>
3333 <arg value="-r"/><arg value="${branch.revision}"/>
[25570]3334 <arg value="${svn.root}/main/${branch.path}/greenstone2/common-src/cgi-bin/gsdlCGI.pm"/>
[21196]3335 </exec>
[27135]3336 <exec executable="svn" dir="web/WEB-INF/cgi">
3337 <arg value="export"/>
3338 <arg value="-r"/><arg value="${branch.revision}"/>
3339 <arg value="${svn.root}/main/${branch.path}/greenstone2/common-src/cgi-bin/metadata-server.pl"/>
3340 </exec>
[27484]3341 <exec executable="svn" dir="web/WEB-INF/cgi">
3342 <arg value="export"/>
3343 <arg value="-r"/><arg value="${branch.revision}"/>
3344 <arg value="${svn.root}/main/${branch.path}/greenstone2/common-src/cgi-bin/checksum.pl"/>
3345 </exec>
[27135]3346 </target>
[20930]3347
[19843]3348
3349 <target name="clean-gli" depends="init" if="collection.building.enabled">
3350 <!-- gli -->
3351 <property name="gli.home" value="${basedir}/gli"/>
3352 <!-- linux -->
3353 <exec executable="clean.sh" os="${os.unix}" dir="${gli.home}"
[20826]3354 resolveExecutable="true" failonerror="true"/>
[19843]3355 <!-- windows -->
[28044]3356 <exec executable="clean.bat" osfamily="windows" dir="${gli.home}"
[20826]3357 resolveExecutable="true" failonerror="true"/>
[19843]3358 </target>
3359
3360 <target name="compile-gli" depends="init" if="collection.building.enabled">
[23808]3361 <if><bool><isset property="with.gli.and.gems"/></bool>
[23807]3362 <!-- gli -->
3363 <property name="gli.home" value="${basedir}/gli"/>
[15098]3364
[23807]3365 <!-- linux -->
3366 <exec executable="makegli.sh" os="${os.unix}" dir="${gli.home}" resolveExecutable="true" failonerror="true"/>
3367 <!--remote gli-->
3368 <exec executable="makejar.sh" os="${os.unix}" dir="${gli.home}"
3369 resolveExecutable="true" failonerror="true"/>
3370 <!-- windows -->
[28044]3371 <exec executable="makegli.bat" osfamily="windows" dir="${gli.home}" resolveExecutable="true" failonerror="true"/>
[23807]3372 <!--remote gli-->
[28044]3373 <exec executable="makejar.bat" osfamily="windows" dir="${gli.home}"
[23807]3374 resolveExecutable="true" failonerror="true"/>
3375 <copy file="${gli.home}/GLIServer.jar" todir="${gs2build.home}/bin/java" />
3376 </if>
[19843]3377 </target>
[15124]3378
[19843]3379 <target name="gli" description="Run the Greenstone Librarian Interface" depends="init" if="collection.building.enabled">
[21351]3380 <exec executable="${basedir}/gli/gli.sh" os="${os.linux},${os.solaris}" dir="${basedir}/gli" spawn="true">
[19843]3381 <env key="gsdl3path" path="${basedir}"/>
[19871]3382 <env key="gsdlpath" path="${gs2build.home}"/>
[19843]3383 </exec>
[21351]3384 <exec executable="${basedir}/gli/gli.sh" os="${os.mac}" dir="${basedir}/gli" spawn="true">
[19843]3385 <env key="gsdl3path" path="${basedir}"/>
[19871]3386 <env key="gsdlpath" path="${gs2build.home}"/>
[19873]3387 <env key="DYLD_LIBRARY_PATH" path="${env.DYLD_LIBRARY_PATH}:${gdbm.home}/lib"/>
[19843]3388 </exec>
[28044]3389 <exec executable="${basedir}/gli/gli.bat" osfamily="windows" dir="${basedir}/gli" spawn="true">
[19843]3390 <env key="GSDL3PATH" path="${basedir}"/>
[19871]3391 <env key="GSDLPATH" path="${gs2build.home}"/>
[19843]3392 </exec>
3393 <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.
3394 </echo>
3395 </target>
3396
3397 <!-- ================ gs2build targets =========================== -->
3398
3399 <target name="svnupdate-gs2build" if="collection.building.enabled" depends="init" unless="nosvn.mode">
3400 <echo>svn updating gs2build</echo>
[20930]3401 <exec executable="svn">
3402 <arg value="update"/>
3403 <arg value="${gs2build.home}"/>
3404 <arg value="-r"/><arg value="${branch.revision}"/>
3405 </exec>
[15799]3406 </target>
[19843]3407
[15124]3408 <target name="prepare-gs2build" depends="init" if="collection.building.enabled" unless="gs2build.present">
3409 <antcall target="checkout-gs2build"/>
[28259]3410 <antcall target="prepare-pdfbox"/>
[27199]3411 <antcall target="prepare-imagemagick"/> <!-- has to be done before calling prepare-gnome-lib -->
[26791]3412 <antcall target="prepare-gnome-lib"/>
[15124]3413 <antcall target="unzip-windows-packages"/>
3414 <antcall target="checkout-winbin"/>
3415 <antcall target="get-windows-binaries"/>
3416 <antcall target="delete-winbin"/>
3417 </target>
3418
[19843]3419 <target name="checkout-gs2build" depends="init" if="collection.building.enabled" unless="nosvn.mode">
3420 <echo>checking out gs2build</echo>
[20930]3421 <exec executable="svn">
3422 <arg value="checkout"/>
[21196]3423 <arg value="${svn.root}/main/${branch.path}/gs2build"/>
[20930]3424 <arg value="-r"/><arg value="${branch.revision}"/>
3425 </exec>
[26791]3426 </target>
[20930]3427
[28259]3428 <!-- Gets the PDFBox extension into gs2build/ext if checkout.pdfbox.ext is set to true in build.properties
3429 (which it is by default) -->
3430 <target name="prepare-pdfbox" depends="init" if="collection.building.enabled">
3431 <if>
3432 <bool>
3433 <istrue value="${checkout.pdfbox.ext}"/>
3434 </bool>
3435
3436 <property name="pdfbox.ext.dir" value="${gs2build.home}/ext/pdf-box"/>
3437 <condition property="pdfbox.ext.present">
3438 <available file="${pdfbox.ext.dir}" type="dir" />
3439 </condition>
3440
3441 <!-- 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-->
3442 <if>
3443 <bool>
3444 <not><istrue value="${pdfbox.ext.present}"/></not>
3445 </bool>
[27034]3446
[28259]3447 <if>
3448 <bool>
3449 <not><istrue value="${gs2build.home}/ext/pdf-box-java.tar.gz"/></not>
3450 </bool>
3451
3452 <echo>Checking out the PDFBox extension into the GSDLHOME extension area</echo>
3453 <exec executable="svn">
3454 <arg value="export"/>
3455 <arg value="${svn.root}/gs2-extensions/pdf-box/trunk/pdf-box-java.tar.gz"/>
3456 <arg value="${gs2build.home}/ext/pdf-box-java.tar.gz"/>
3457 </exec>
3458 </if>
3459
3460 <echo>Extacting the PDFBox extension into the GSDLHOME extension area</echo>
3461 <untar compression="gzip"
3462 src="${gs2build.home}/ext/pdf-box-java.tar.gz"
[28610]3463 dest="${gs2build.home}/ext"/>
[28259]3464
3465 <delete file="${gs2build.home}/ext/pdf-box-java.tar.gz"/>
3466
3467 <else>
3468 <echo>The PDFBox extension already exists at ${pdfbox.ext.dir}</echo>
3469 </else>
3470 </if>
3471
3472 <else>
3473 <echo>**** Not preparing the PDFBox extension:</echo>
3474 <echo>The property checkout.pdfbox.ext in build.properties was not set or was set to false</echo>
3475 </else>
3476 </if>
3477 </target>
3478
[27199]3479 <target name="prepare-imagemagick" depends="init" if="collection.building.enabled">
3480 <if>
3481 <bool>
3482 <istrue value="${checkout.imagemagick.ext}"/>
3483 </bool>
3484
3485 <antcall target="checkout-imagemagick"/>
[28320]3486 <!--Compilation of imagemagick now happens during ant install, still before configuring the src code, as before -->
[27199]3487
3488 <else>
3489 <echo>**** Not preparing imagemagick:</echo>
3490 <echo>property checkout.imagemagick.ext in build.properties was not set or was set to false</echo>
3491 </else>
3492 </if>
3493 </target>
3494
3495 <target name="checkout-imagemagick" depends="init" if="collection.building.enabled" unless="nosvn.mode">
3496
3497 <property name="imagemagick.src.dir" value="${gs2build.home}/ext/imagemagick"/>
3498 <condition property="imagemagick.src.present">
3499 <available file="${imagemagick.src.dir}" type="dir" />
3500 </condition>
3501
3502 <if>
3503 <bool>
3504 <not><istrue value="${imagemagick.src.present}"/></not>
3505 </bool>
3506
3507 <echo>checking out imagemagick source into the extension area</echo>
3508
3509 <exec executable="svn">
3510 <arg value="checkout"/>
3511 <arg value="${svn.root}/gs2-extensions/imagemagick/trunk/src"/>
3512 <arg value="${imagemagick.src.dir}"/>
3513 </exec>
3514
3515 <else>
3516 <echo>imagemagick source code already exists at ${imagemagick.src.dir}</echo>
3517 </else>
3518 </if>
3519 </target>
3520
3521 <!-- 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. -->
3522 <target name="compile-imagemagick" if="checkout.imagemagick.ext">
3523
3524 <property name="imagemagick.src.dir" value="${gs2build.home}/ext/imagemagick"/>
3525 <property name="imagemagick.compiled.dir" value="${gs2build.home}/ext/imagemagick/${os.bin.dir}"/>
3526
[28320]3527 <condition property="imagemagick.src.present.firstcheck">
[27199]3528 <available file="${imagemagick.src.dir}" type="dir" />
3529 </condition>
3530 <condition property="imagemagick.compiled.present">
3531 <available file="${imagemagick.compiled.dir}" type="dir"/>
3532 </condition>
3533 <!--<condition property="imagemagick.bin.present">
3534 <available file="${basedir}/wherever/the/imgmagick/binary/is/to/be/found" type="dir" />
3535 </condition>-->
3536
[28320]3537 <!-- imagemagick will only be checked out if the user set the checkout.imagemagick.ext in build.properties -->
[27199]3538 <if>
3539 <bool>
[28320]3540 <isfalse value="${imagemagick.src.present.firstcheck}"/>
3541 </bool>
3542 <antcall target="checkout-imagemagick"/>
3543 </if>
3544
3545 <!-- keep track of whether the imagemagick src is now indeed present. Need to know this for a subsequent test -->
3546 <condition property="imagemagick.src.present">
3547 <available file="${imagemagick.src.dir}" type="dir" />
3548 </condition>
3549
3550 <if>
3551 <bool>
[27199]3552 <and>
3553 <istrue value="${imagemagick.src.present}"/> <!-- imagemagick src code is present -->
[28320]3554 <isfalse value="${imagemagick.compiled.present}"/> <!-- imagemagick src not compiled yet, so no imagemagick/os subfolder yet -->
3555 </and>
[27199]3556 </bool>
3557 <!-- then compile it. Only necessary for mac/linux, since windows has a stable working binary of imagemagick -->
3558 <exec executable="/bin/bash" dir="${imagemagick.src.dir}" failonerror="true">
3559 <arg value="CASCADE-MAKE.sh"/>
3560 </exec>
3561 </if>
3562 </target>
3563
3564
[27185]3565 <!-- Compile up gnome-lib src folder if: checkout.gnomelib.ext is turned on, and if not using the binary
[27034]3566 version (gnome-lib-minimal), and if the gnome-lib src folder is not already compiled up. -->
[27185]3567 <target name="compile-gnome-lib" if="checkout.gnomelib.ext">
[27034]3568
3569 <!-- http://stackoverflow.com/questions/3290307/sourcing-a-shell-profile-in-an-ant-build-file
3570 TODO: CASCADE-MAKE already sources devel.bash, but we still want to source it more globally,
3571 so that the rest of the GS3 compilation process also has access to those env variables -->
3572
3573 <property name="gnome.lib.src.dir" value="${basedir}/gs2build/ext/gnome-lib"/>
3574 <property name="gnome.lib.compiled.dir" value="${basedir}/gs2build/ext/gnome-lib/${os.bin.dir}"/>
3575
[28320]3576 <condition property="gnome.src.lib.present.firstcheck" value="true" else="false">
3577 <available file="${gnome.lib.src.dir}" type="dir" />
3578 </condition>
[28311]3579 <condition property="gnome.compiled.lib.present" value="true" else="false">
[27034]3580 <available file="${gnome.lib.compiled.dir}" type="dir"/>
3581 </condition>
[28311]3582 <condition property="gnome.lib.min.present" value="true" else="false">
[27034]3583 <available file="${basedir}/gs2build/ext/gnome-lib-minimal" type="dir" />
3584 </condition>
3585
[28311]3586 <!-- Make sure to checkout gnome-lib if it was not checked out at this stage
3587 since we're instructed to do so in th pre-condition to this target -->
[27034]3588 <if>
3589 <bool>
3590 <and>
[28320]3591 <isfalse value="${gnome.lib.min.present}"/>
3592 <isfalse value="${gnome.src.lib.present.firstcheck}"/>
[28311]3593 </and>
3594 </bool>
3595 <antcall target="checkout-gnome-lib"/>
3596 </if>
3597
[28320]3598 <!-- Keep track of whether we have the gnome-lib src folder now. Need to know this for a subsequent test -->
[28311]3599 <condition property="gnome.src.lib.present" value="true" else="false">
3600 <available file="${gnome.lib.src.dir}" type="dir" />
3601 </condition>
3602
3603 <!--<echo>MIN: ${gnome.lib.min.present}
3604 SRC LIB: ${gnome.src.lib.present}
3605 COMPILED: ${gnome.compiled.lib.present}</echo>-->
3606
3607 <if>
3608 <bool>
3609 <and>
3610 <isfalse value="${gnome.lib.min.present}"/> <!-- no gnome-lib-minimal binary present -->
[27034]3611 <istrue value="${gnome.src.lib.present}"/> <!-- gnome-lib folder for compilation is present-->
[28311]3612 <isfalse value="${gnome.compiled.lib.present}"/> <!-- gnome-lib not yet compiled, so no gnome-lib/os subfolder yet -->
[27034]3613 </and>
3614 </bool>
3615
3616 <!-- then compile it. Only necessary for mac/linux, since windows doesn't need gnome lib -->
3617 <exec executable="/bin/bash" dir="${gnome.lib.src.dir}" failonerror="true">
3618 <arg value="CASCADE-MAKE.sh"/>
3619 </exec>
3620 </if>
3621 </target>
3622
3623
[26791]3624 <target name="prepare-gnome-lib" depends="init" if="collection.building.enabled" unless="gnome-lib.present">
[27139]3625 <if>
3626 <bool>
[28643]3627 <istrue value="${checkout.gnomelib.ext}"/>
[27139]3628 </bool>
3629
[28643]3630 <antcall target="checkout-gnome-lib"/>
3631 <!--Compilation of gnome-lib happens during ant install, just before configuring (common-src and) build-src-->
3632
[28636]3633 <else>
[28643]3634 <echo>**** Not preparing gnome-lib:</echo>
3635 <echo>property checkout.gnomelib.ext in build.properties was not set or was set to false</echo>
[28636]3636 </else>
3637 </if>
3638 </target>
3639
3640
[26791]3641 <target name="checkout-gnome-lib" depends="init" if="collection.building.enabled" unless="nosvn.mode">
[27199]3642
3643 <property name="gnomelib.src.dir" value="${basedir}/gs2build/ext/gnome-lib"/>
3644 <condition property="gnome.src.present">
3645 <available file="${gnomelib.src.dir}" type="dir" />
3646 </condition>
3647
3648 <if>
3649 <bool>
3650 <not><istrue value="${gnome.src.present}"/></not>
3651 </bool>
3652
3653 <echo>checking out gnome-lib extension</echo>
3654 <exec executable="svn">
3655 <arg value="checkout"/>
3656 <arg value="${svn.root}/gs2-extensions/gnome-lib/trunk/src"/>
3657 <arg value="${gs2build.home}/ext/gnome-lib"/>
3658 </exec>
3659
3660 <else>
3661 <echo>gnomelib source code already exists at ${gnomelib.src.dir}</echo>
3662 </else>
3663 </if>
3664
[19843]3665 </target>
3666
[15124]3667 <target name="checkout-winbin" depends="init" if="current.os.iswindows"
[15799]3668 unless="nosvn.mode">
[20930]3669
3670 <exec executable="svn">
3671 <arg value="checkout"/>
[21196]3672 <arg value="${svn.root}/main/${branch.path}/binaries/windows"/>
[20930]3673 <arg value="-r"/><arg value="${branch.revision}"/>
[21196]3674 <arg value="winbin"/>
[20930]3675 </exec>
3676
[15124]3677 </target>
3678
[15799]3679 <target name="update-winbin" depends="init" if="current.os.iswindows" unless="nosvn.mode">
[20930]3680 <exec executable="svn">
3681 <arg value="update"/>
3682 <arg value="winbin"/>
3683 <arg value="-r"/><arg value="${branch.revision}"/>
3684 </exec>
3685
[15799]3686 </target>
[15124]3687
3688 <target name="get-windows-binaries" depends="init" if="collection.building.enabled.windows">
3689 <move todir="${gs2build.home}/bin/windows" failonerror="false">
3690 <fileset dir="${basedir}/winbin/bin"/>
3691 </move>
3692 </target>
[19843]3693
[15124]3694 <target name="delete-winbin" depends="init" if="collection.building.enabled.windows">
3695 <delete dir="${basedir}/winbin"/>
3696 </target>
3697
[19871]3698 <target name="unzip-windows-packages" depends="init" if="current.os.iswindows">
3699 <unzip src="${common.src.home}/packages/windows/crypt/crypt.zip"
3700 dest="${common.src.home}/packages/windows/crypt"/>
[18179]3701 <untar compression="gzip"
[19871]3702 src="${common.src.home}/packages/sqlite/${sqlite.targz.version}"
3703 dest="${common.src.home}/packages/sqlite"/>
3704 <unzip src="${common.src.home}/indexers/packages/windows/iconv/iconv.zip"
3705 dest="${common.src.home}/indexers/packages/windows/iconv"/>
[15799]3706 </target>
[19878]3707
[15124]3708 <target name="gs2build-edit-setup-bat" if="collection.building.enabled.windows">
3709 <!-- we want a windows path in the setup.bat file -->
3710 <pathconvert targetos="windows" property="gs2build.home.windows">
3711 <path path="${gs2build.home}"/>
3712 </pathconvert>
3713 <move file="${gs2build.home}/setup.bat" tofile="${gs2build.home}/setup-tmp.bat">
3714 <filterset>
[16620]3715 <filter token="gsdlhome" value="${gs2build.home.windows}"/>
[15799]3716 </filterset>
[15124]3717 </move>
3718 <move file="${gs2build.home}/setup-tmp.bat" tofile="${gs2build.home}/setup.bat" />
3719 </target>
3720
[19843]3721
[19948]3722 <target name="clean-build-src" depends="init" if="collection.building.enabled">
[19871]3723 <!-- unix: -->
[26079]3724 <if><bool><available file="${build.src.home}/Makefile"/></bool>
[19948]3725 <exec executable="make" os="${os.unix}" dir="${build.src.home}" failonerror="true">
[15124]3726 <arg value="clean"/>
3727 </exec>
[26079]3728 </if>
[15124]3729 <!-- windows: -->
[28044]3730 <exec executable="nmake" dir="${build.src.home}" osfamily="windows" failonerror="true">
[15799]3731 <arg value="/f"/>
3732 <arg value="win32.mak"/>
3733 <arg value="clean"/>
[19960]3734 <arg value="GSDLHOME=${gs2build.home}"/>
[15124]3735 </exec>
3736 </target>
3737
[19948]3738
3739 <target name="distclean-build-src" depends="init,clean-build-src" if="collection.building.enabled">
[19960]3740 <!-- unix: -->
[26079]3741 <if><bool><available file="${build.src.home}/Makefile"/></bool>
[19948]3742 <exec executable="make" os="${os.unix}" dir="${build.src.home}" failonerror="true">
[15124]3743 <arg value="distclean"/>
3744 </exec>
[26079]3745 </if>
[19960]3746 <!-- windows: distclean = clean + remove configure products (remove makefiles). But on Windows there is no removing makefiles, so we just call clean -->
[28044]3747 <exec executable="nmake" dir="${build.src.home}" osfamily="windows" failonerror="true">
[19960]3748 <arg value="/f"/>
3749 <arg value="win32.mak"/>
3750 <arg value="clean"/>
3751 <arg value="GSDLHOME=${gs2build.home}"/>
3752 </exec>
[15124]3753 </target>
[19843]3754
[28643]3755 <target name="configure-build-src" depends="init" if="collection.building.enabled"
[19931]3756 description="Configure the build-src component">
3757 <exec executable="${build.src.home}/configure" os="${os.unix}"
3758 dir="${build.src.home}" failonerror="true">
3759 <arg value="--prefix=${gs2build.home}"/>
[26765]3760 <arg line="${gs2.opt.args} ${static.arg} ${cross.configure.args} ${allargs}"/>
[19931]3761 </exec>
3762 </target>
[19910]3763
[19931]3764 <!-- common-src is done separately and needs to be compiled first -->
3765 <target name="compile-build-src" depends="init" if="collection.building.enabled">
3766
3767 <exec executable="make" dir="${build.src.home}" os="${os.unix}" failonerror="true">
[23611]3768 <arg line="${ldlpath.arg}"/>
[22845]3769 </exec>
3770
3771 <exec executable="make" dir="${build.src.home}" os="${os.unix}" failonerror="true">
[19931]3772 <arg value="install"/>
3773 </exec>
[19910]3774
[19931]3775 <!-- run the setup script -->
[28044]3776 <!-- <exec executable="${compile.windows.c++.setup}" osfamily="windows" failonerror="true"/>-->
[19910]3777 <!--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]3778 <exec executable="nmake" dir="${build.src.home}" osfamily="windows" failonerror="true">
[19910]3779 <arg value="/f"/>
3780 <arg value="win32.mak"/>
[19934]3781 <arg value="GSDLHOME=${gs2build.home}"/>
[19910]3782 </exec>
[28044]3783 <exec executable="nmake" dir="${build.src.home}" osfamily="windows" failonerror="true">
[19910]3784 <arg value="/f"/>
3785 <arg value="win32.mak"/>
3786 <arg value="install"/>
[19934]3787 <arg value="GSDLHOME=${gs2build.home}"/>
[19910]3788 </exec>
[15124]3789 </target>
3790
3791
[15799]3792 <!-- ======================== TESTING Targets ========================= -->
[15124]3793
3794 <target name="test" description="Run the (incomplete) JUnit test suite "
3795 depends="init">
3796 <mkdir dir="${basedir}/test"/>
3797 <junit printsummary="withOutAndErr"
3798 errorproperty="test.failed"
3799 failureproperty="test.failed"
3800 fork="${junit.fork}">
3801 <formatter type="plain"/>
3802 <classpath>
[16936]3803 <pathelement location="${build.home}/gsdl3test.jar"/>
3804 <path refid="compile.classpath"/>
[15124]3805 </classpath>
3806 <test name="${testcase}" if="testcase"/>
3807 <batchtest todir="${basedir}/test" unless="testcase">
[18505]3808 <fileset dir="${build.home}" includes="**/*Test.class" />
[15124]3809 </batchtest>
3810 </junit>
3811 <echo>
3812 *********************************************
[15799]3813 Test output can be found in directory 'test'
[15124]3814 *********************************************
3815 </echo>
3816 </target>
[15799]3817
[20950]3818 <!-- ======================== FLAX Targets ========================= -->
3819 <target name="prepare-flax" description="check out flax source code from another repository" if="install.flax">
3820 <echo>checking out flax ...</echo>
3821 <mkdir dir="${basedir}/src/java/org/flax"/>
3822 <mkdir dir="${basedir}/src/java/org/greenstone/gsdl3/flax"/>
[22198]3823 <mkdir dir="${basedir}/src/java/org/greenstone/gsdl3/action/flax"/>
[20950]3824 <mkdir dir="${web.home}/WEB-INF/classes/flax"/>
3825 <mkdir dir="${web.home}/interfaces/flax"/>
3826 <mkdir dir="${web.home}/sites/flax"/>
3827 <mkdir dir="${basedir}/flax-resources"/>
3828 <mkdir dir="${basedir}/flax-lib"/>
[21272]3829 <exec executable="svn"><arg value="checkout"/><arg value="${flax.checkout.path}/src/java/org/flax"/>
3830 <arg value="src/java/org/flax"/></exec>
3831 <exec executable="svn"><arg value="checkout"/><arg value="${flax.checkout.path}/src/java/org/greenstone/gsdl3/flax"/>
3832 <arg value="src/java/org/greenstone/gsdl3/flax"/></exec>
[22198]3833 <exec executable="svn"><arg value="checkout"/><arg value="${flax.checkout.path}/src/java/org/greenstone/gsdl3/action/flax"/>
3834 <arg value="src/java/org/greenstone/gsdl3/action/flax"/></exec>
3835 <exec executable="svn"><arg value="checkout"/><arg value="${flax.checkout.path}/web/WEB-INF/classes/flax"/>
[21272]3836 <arg value="${web.home}/WEB-INF/classes/flax"/></exec>
3837 <exec executable="svn"><arg value="checkout"/><arg value="${flax.checkout.path}/web/interfaces/flax"/>
3838 <arg value="${web.home}/interfaces/flax"/></exec>
3839 <exec executable="svn"><arg value="checkout"/><arg value="${flax.checkout.path}/web/sites/flax"/>
3840 <arg value="${web.home}/sites/flax"/></exec>
3841 <exec executable="svn"><arg value="checkout"/><arg value="${flax.checkout.path}/flax-resources"/>
3842 <arg value="flax-resources"/></exec>
3843 <exec executable="svn"><arg value="checkout"/><arg value="${flax.checkout.path}/lib"/>
3844 <arg value="flax-lib"/></exec>
[25901]3845 <antcall target="flax-copy-del-files" />
[20950]3846 </target>
[23442]3847
[25901]3848 <target name="flax-copy-del-files" description="copy some flax files into the appropriate greenstone3 directories and delete some unwanted greenstone stuff">
[23442]3849 <copy file="${web.home}/WEB-INF/classes/flax/web.xml" todir="${web.home}/WEB-INF" overwrite="true" />
3850 <copy todir="${web.home}/WEB-INF/lib">
[25901]3851 <fileset dir="${basedir}/flax-lib">
3852 <include name="*.jar"/>
3853 </fileset>
[23442]3854 </copy>
[25904]3855 <!--<delete dir="${web.home}/sites/gateway"/>
3856 <delete dir="${web.home}/sites/localsite"/>-->
[23442]3857 </target>
[20950]3858
3859 <target name="update-flax" description="update flax from repository">
3860 <echo>updating flax ...</echo>
[21272]3861 <exec executable="svn"><arg value="update"/>
3862 <arg value="src/java/org/flax"/></exec>
3863 <exec executable="svn"><arg value="update"/>
[22198]3864 <arg value="src/java/org/greenstone/gsdl3/action/flax"/></exec>
3865 <exec executable="svn"><arg value="update"/>
[21272]3866 <arg value="src/java/org/greenstone/gsdl3/flax"/></exec>
3867 <exec executable="svn"><arg value="update"/>
3868 <arg value="${web.home}/WEB-INF/classes/flax"/></exec>
3869 <exec executable="svn"><arg value="update"/>
3870 <arg value="${web.home}/interfaces/flax"/></exec>
3871 <exec executable="svn"><arg value="update"/>
[24366]3872 <arg value="${web.home}/web/sites/flax"/></exec>
3873 <exec executable="svn"><arg value="update"/>
[21272]3874 <arg value="flax-resources"/></exec>
3875 <exec executable="svn"><arg value="update"/>
3876 <arg value="flax-lib"/></exec>
[24098]3877 <antcall target="compile-core" />
[20950]3878 </target>
3879
[25901]3880 <!-- ========================End of FLAX Targets ========================= -->
[20963]3881
[19354]3882 <target name="compile-javadocs">
3883 <javadoc packagenames="org.greenstone.*"
3884 sourcepath="src/java"
3885 defaultexcludes="yes"
3886 destdir="docs/javadoc"
3887 author="true"
3888 version="true"
3889 use="true"
3890 windowtitle="Greenstone3 API">
3891 <doctitle><![CDATA[<h1>Greenstone3 API</h1>]]></doctitle>
3892 </javadoc>
3893 </target>
3894
[20089]3895<!-- ========== Some distribution targets ======================== -->
[19972]3896 <target name="remove-source">
[23809]3897 <if><bool><isset property="with.gli.and.gems"/></bool>
[19975]3898 <delete includeEmptyDirs="true">
3899 <fileset dir="." defaultexcludes="false">
3900 <patternset refid="greenstone3.source.component"/>
3901 </fileset>
3902 </delete>
[23809]3903
3904 <else>
3905 <delete includeEmptyDirs="true">
3906 <fileset dir="." defaultexcludes="false">
3907 <patternset refid="greenstone3.source.no.gli.component"/>
3908 </fileset>
3909 </delete>
3910 </else>
3911 </if>
[19972]3912 </target>
3913
[19903]3914 <target name="dist-tidy"
[29387]3915 description="'tidies-up' a greenstone3 installation for distribution."
3916 unless="${properties.keep.src}">
[19903]3917
3918 <!-- delete unneeded things -->
3919 <delete dir="${packages.home}/axis"/>
3920 <delete><fileset dir="${packages.home}" includes="*.zip"/></delete>
3921 <delete file="README-SVN.txt"/>
[32333]3922 <delete file="build.properties.svn"/>
[19903]3923
[19961]3924 <!-- delete source files -->
[19972]3925 <antcall target="remove-source"/>
[19903]3926
3927 <!-- create empty directories -->
[27829]3928 <mkdir dir="${web.writablehome}/applet"/>
3929 <mkdir dir="${web.writablehome}/logs"/>
3930 <mkdir dir="${web.writablehome}/logs/tmp"/>
[19903]3931
[27902]3932 <!-- Lines with ***** are commented out because these files are useful if we want hybrid installations -->
3933
[19903]3934 <!-- os specific tidy-ups -->
[20051]3935 <!-- linux, mac -->
3936 <if><bool><istrue value="${current.os.isunix}"/></bool>
[27902]3937 <!--*****<delete><fileset dir="." includes="*.bat"/></delete>-->
[23809]3938 <if><bool><isset property="with.gli.and.gems"/></bool>
[27902]3939 <!--*****<delete><fileset dir="gli" includes="*.bat"/></delete>-->
[23809]3940 </if>
[27902]3941 <!--*****<delete><fileset dir="gs2build" includes="*.bat"/></delete>-->
3942 <!--*****<delete><fileset dir="bin/script" includes="*.bat"/></delete>-->
[19946]3943 <delete file="${basedir}/gs2build/win32cfg.h"/>
[19939]3944 <delete file="${basedir}/gs2build/win32.mak"/>
[20051]3945 <delete dir="${basedir}/winutil"/>
[19903]3946 <delete failonerror="false"><fileset dir="${lib.jni}" includes="*.dll"/></delete>
3947
[20051]3948 <!-- windows -->
3949 <else><if><bool><istrue value="${current.os.iswindows}"/></bool>
[27902]3950 <!--*****<delete><fileset dir="." includes="*.sh,*.bash,*.csh"/></delete>-->
[23809]3951 <if><bool><isset property="with.gli.and.gems"/></bool>
[27902]3952 <!--*****<delete><fileset dir="gli" includes="*.sh,*.bash,*.csh"/></delete>-->
[23809]3953 </if>
[27902]3954 <!--*****<delete><fileset dir="gs2build" includes="*.sh,*.bash,*.csh"/></delete>-->
3955 <!--*****<delete><fileset dir="bin/script" includes="*.sh,*.bash,*.csh"/></delete>-->
[20051]3956 </if></else></if>
3957
[19903]3958 </target>
3959
[20089]3960 <!-- fix up executable permissions for binary release -->
3961 <target name="fix-execute-permissions">
3962 <echo>Setting binaries to executable</echo>
[20127]3963 <chmod perm="775">
3964 <fileset dir="."><patternset refid="greenstone3.executables"/></fileset>
3965 </chmod>
[20089]3966 </target>
3967
3968 <!-- fix up executable permissions for source code release -->
3969 <target name="fix-execute-permissions-source">
[20127]3970 <chmod perm="775">
3971 <fileset dir="."><patternset refid="greenstone3.source.executables"/></fileset>
3972 </chmod>
[20089]3973 </target>
3974
[27380]3975 <!-- for macs, set up the .app shortcuts to gsi, gli, client-gli and gems -->
3976 <target name="gen-mac-shortcuts">
3977 <if><bool><istrue value="${current.os.ismac}"/></bool>
3978 <filter token="gsdl3srchome" value="${basedir}"/>
3979 <copy file="${basedir}/gs3-server.app/Contents/document.wflow.in" tofile="${basedir}/gs3-server.app/Contents/document.wflow" filtering="true" overwrite="true"/>
3980 <copy file="${basedir}/gli.app/Contents/document.wflow.in" tofile="${basedir}/gli.app/Contents/document.wflow" filtering="true" overwrite="true"/>
3981 <copy file="${basedir}/client-gli.app/Contents/document.wflow.in" tofile="${basedir}/client-gli.app/Contents/document.wflow" filtering="true" overwrite="true"/>
3982 <copy file="${basedir}/gems.app/Contents/document.wflow.in" tofile="${basedir}/gems.app/Contents/document.wflow" filtering="true" overwrite="true"/>
3983 </if>
3984 </target>
[20089]3985
[19931]3986 <!-- ============= tweaks for making compilation static ========== -->
3987 <target name="tweak-makefiles" depends="init" if="compile.static">
3988 <antcall target="rtftohtml-add-static" />
3989 </target>
3990
3991 <target name="rtftohtml-add-static" depends="init" if="collection.building.enabled">
[28136]3992 <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]3993 </target>
3994
[32338]3995 <target name="run-collection-tests">
[26115]3996 <if><bool><not><available file="${basedir}/ext/testing" type="dir"/></not></bool>
3997 <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>
3998 </if>
3999 <for param="testjar">
4000 <path>
4001 <fileset dir="${basedir}" includes="web/sites/*/collect/*/tests/tests.jar"/>
4002 </path>
4003 <sequential>
4004 <echo>Testing @{testjar}</echo>
4005 <java classname="org.junit.runner.JUnitCore" fork="true">
4006 <arg value="gstests.TestClass"/>
[32429]4007 <jvmarg value="-DSERVERURL=${default.server.protocol}://${tomcat.server}:${default.tomcat.port}${app.path}${server.default.servlet} "/>
[26115]4008 <classpath>
4009 <fileset dir="${basedir}/ext/testing/lib/java">
4010 <include name="*.jar"/>
4011 </fileset>
4012 <files includes="@{testjar}"/>
4013 </classpath>
4014 </java>
4015 </sequential>
4016 </for>
4017 </target>
4018
4019 <target name="build-collection-tests">
4020 <if><bool><not><available file="${basedir}/ext/testing" type="dir"/></not></bool>
4021 <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>
4022 </if>
4023 <for param="compiledir">
4024 <path>
4025 <dirset dir="${basedir}" includes="web/sites/*/collect/*/tests/src"/>
4026 </path>
4027 <sequential>
4028 <echo>Compiling @{compiledir}</echo>
4029 <if><bool><not><available file="@{compiledir}/../build" type="dir"/></not></bool>
4030 <mkdir dir="@{compiledir}/../build"/>
4031 </if>
4032 <javac
4033 srcdir="@{compiledir}"
4034 destdir="@{compiledir}/../build"
[28137]4035 includeantruntime="${compile.includeantruntime}"
[26115]4036 debug="${compile.debug}"
4037 deprecation="${compile.deprecation}"
[29515]4038 optimize="${compile.optimize}"
4039 encoding="${compile.encoding}">
[26115]4040 <classpath>
4041 <fileset dir="${basedir}/ext/testing/lib/java">
4042 <include name="*.jar"/>
4043 </fileset>
4044 </classpath>
4045 <include name="gstests/*.java"/>
4046 </javac>
4047 <jar destfile="@{compiledir}/../tests.jar">
4048 <fileset dir="@{compiledir}/../build">
4049 <include name="gstests/**"/>
4050 </fileset>
4051 <manifest>
4052 <attribute name="Built-By" value="${user.name}" />
4053 </manifest>
4054 </jar>
4055 </sequential>
4056 </for>
4057 </target>
[26002]4058</project>
Note: See TracBrowser for help on using the repository browser.