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

Last change on this file since 22551 was 22551, checked in by ak19, 14 years ago

Added ant targets reconfigure and reconfigure-collection colname. These may be useful after running the g2f building scripts to do with fedora.

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