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

Last change on this file since 28320 was 28320, checked in by ak19, 11 years ago

Like gnome-lib, imagemagick is now also compiled up during ant install instead of ant prepare

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