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

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

Some of the java files that server.jar depends on were moved to org.greenstone.util, so need to include those java files in the jar.

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 <include name="org/greenstone/util/**"/>
1202 </fileset>
1203 <fileset file="${basedir}/resources/java/server.properties"/>
1204 <manifest>
1205 <attribute name="Built-By" value="${user.name}"/>
1206 </manifest>
1207 </jar>
1208 <copy file="${build.home}/server.jar" todir="${basedir}"/>
1209 </target>
1210
1211 <!-- ================== Packages targets ================================ -->
1212 <!-- these targets refer to the greenstone source packages - these need
1213 updating less often, so are in separate targets to the core -->
1214 <target name="prepare-packages" depends="init"/>
1215
1216 <target name="update-packages" depends="init,svnupdate-packages,configure-packages,clean-packages,compile-packages"
1217 description="Update only the source packages"/>
1218
1219 <target name="svnupdate-packages" unless="nosvn.mode">
1220 <exec executable="svn">
1221 <arg value="update"/>
1222 <arg value="${src.packages.home}"/>
1223 <arg value="-r"/><arg value="${branch.revision}"/>
1224 </exec>
1225 </target>
1226
1227
1228 <target name="configure-packages" depends="init,configure-javagdbm"
1229 description="Configure only the packages."/>
1230
1231 <target name="configure-javagdbm" if="with.jni">
1232 <echo>
1233 Configuring JavaGDBM
1234 </echo>
1235
1236 <exec executable="${javagdbm.home}/configure" os="${os.unix}" dir="${javagdbm.home}" failonerror="true">
1237 <arg value="--prefix=${basedir}"/>
1238 <arg value="--libdir=${lib.jni}"/>
1239 <arg value="--with-gdbm=${gdbm.home}"/>
1240 </exec>
1241 </target>
1242
1243 <target name="clean-packages" depends="init,clean-javagdbm" description="Clean only the packages"/>
1244
1245 <target name="clean-javagdbm" depends="init">
1246 <exec executable="make" os="${os.unix}"
1247 dir="${javagdbm.home}" failonerror="true">
1248 <arg value="clean"/>
1249 </exec>
1250 </target>
1251
1252 <target name="distclean-packages" depends="init,distclean-javagdbm" description="Distclean only the packages"/>
1253
1254 <target name="distclean-javagdbm" depends="init">
1255 <exec executable="make" os="${os.unix}"
1256 dir="${javagdbm.home}" failonerror="true">
1257 <arg value="distclean"/>
1258 </exec>
1259 </target>
1260
1261 <target name="compile-packages" description="Compile only the source packages">
1262 <!-- javagdbm -->
1263 <antcall target="compile-javagdbm"/>
1264 <!-- Search4j -->
1265 <antcall target="compile-search4j"/>
1266 </target>
1267
1268 <target name="compile-javagdbm" description="Compile JavaGDBM" if="with.jni">
1269
1270 <!-- unix: -->
1271 <echo>compile javagdbm</echo>
1272 <exec executable="make" os="${os.unix}" dir="${javagdbm.home}" failonerror="true"/>
1273 <exec executable="make" os="${os.unix}" dir="${javagdbm.home}" failonerror="true">
1274 <arg value="install"/>
1275 </exec>
1276
1277 <!-- windows: just the java stuff. -->
1278 <echo>Windows: compile javagdbm (java only)</echo>
1279 <exec executable="${javagdbm.home}/winMake.bat" os="${os.windows}" dir="${javagdbm.home}" failonerror="true">
1280 <arg value="compile"/>
1281 <arg value="javaonly"/>
1282 </exec>
1283
1284 <!-- install the jar file -->
1285 <echo>Install the javagdbm jar file</echo>
1286 <copy file="${javagdbm.home}/javagdbm.jar" todir="${lib.jni}"/>
1287 </target>
1288
1289 <target name="compile-search4j">
1290
1291 <!-- windows -->
1292 <if><bool><istrue value="${current.os.iswindows}"/></bool>
1293 <exec executable="nmake" dir="${src.packages.home}/search4j" failonerror="true">
1294 <arg value="/f"/>
1295 <arg value="win32.mak"/>
1296 <arg value='BINDIR="${basedir}\bin"'/>
1297 </exec>
1298 <exec executable="nmake" dir="${src.packages.home}/search4j" failonerror="true">
1299 <arg value="/f"/>
1300 <arg value="win32.mak"/>
1301 <arg value="install"/>
1302 <arg value='BINDIR="${basedir}\bin"'/>
1303 </exec>
1304
1305 <!-- unix -->
1306 <else><if><bool><istrue value="${current.os.isunix}"/></bool>
1307 <exec executable="${src.packages.home}/search4j/configure" dir="${src.packages.home}/search4j" failonerror="true">
1308 <arg value="--bindir=${basedir}/bin"/>
1309 <arg value="${static.arg}"/>
1310 </exec>
1311 <exec executable="make" dir="${src.packages.home}/search4j" failonerror="true"/>
1312 <exec executable="make" dir="${src.packages.home}/search4j" failonerror="true">
1313 <arg value="install"/>
1314 </exec>
1315
1316 <!-- else warn -->
1317 <else>
1318 <fail>this target does not support the current os</fail>
1319
1320 </else></if></else></if>
1321
1322 </target>
1323
1324 <target name="install-auxiliary-jar-files" depends="init">
1325
1326 <if>
1327 <bool><available file="${mg.home}/mg.jar"/></bool>
1328 <copy file="${mg.home}/mg.jar" todir="${lib.jni}"/>
1329 </if>
1330
1331 <if>
1332 <bool><available file="${mgpp.home}/mgpp.jar"/></bool>
1333 <copy file="${mgpp.home}/mgpp.jar" todir="${lib.jni}"/>
1334 </if>
1335
1336 <copy file="${lucene.home}/LuceneWrapper.jar" todir="${web.lib}"/>
1337 </target>
1338
1339 <target name="install-jni-files" depends="init,install-jni-files-linux,install-jni-files-windows,install-jni-files-macos" if="with.jni"/>
1340
1341 <target name="install-jni-files-linux" depends="init" if="current.os.isunixnotmac">
1342 <copy file="${mg.home}/jni/libmgretrievejni.so" todir="${lib.jni}"/>
1343 <copy file="${mg.home}/jni/libmgsearchjni.so" todir="${lib.jni}"/>
1344 <copy file="${mg.home}/jni/libmgpassjni.so" todir="${lib.jni}"/>
1345 <copy file="${mgpp.home}/jni/libmgppretrievejni.so" todir="${lib.jni}"/>
1346 <copy file="${mgpp.home}/jni/libmgppsearchjni.so" todir="${lib.jni}"/>
1347 <copy file="${mgpp.home}/jni/libmgpppassjni.so" todir="${lib.jni}"/>
1348 </target>
1349 <target name="install-jni-files-windows" depends="init" if="current.os.iswindows">
1350 <copy file="${mg.home}/jni/mgretrievejni.dll" todir="${lib.jni}"/>
1351 <copy file="${mg.home}/jni/mgsearchjni.dll" todir="${lib.jni}"/>
1352 <copy file="${mg.home}/jni/mgpassjni.dll" todir="${lib.jni}"/>
1353 <copy file="${mgpp.home}/jni/mgppretrievejni.dll" todir="${lib.jni}"/>
1354 <copy file="${mgpp.home}/jni/mgppsearchjni.dll" todir="${lib.jni}"/>
1355 <copy file="${mgpp.home}/jni/mgpppassjni.dll" todir="${lib.jni}"/>
1356 </target>
1357 <target name="install-jni-files-macos" depends="init" if="current.os.ismac">
1358 <copy file="${mg.home}/jni/libmgretrievejni.jnilib" todir="${lib.jni}"/>
1359 <copy file="${mg.home}/jni/libmgsearchjni.jnilib" todir="${lib.jni}"/>
1360 <copy file="${mg.home}/jni/libmgpassjni.jnilib" todir="${lib.jni}"/>
1361 <copy file="${mgpp.home}/jni/libmgppretrievejni.jnilib" todir="${lib.jni}"/>
1362 <copy file="${mgpp.home}/jni/libmgppsearchjni.jnilib" todir="${lib.jni}"/>
1363 <copy file="${mgpp.home}/jni/libmgpppassjni.jnilib" todir="${lib.jni}"/>
1364 </target>
1365
1366 <!-- ========common-src targets =================================-->
1367 <!-- these are used to get common-src (for indexers, gdbm, sqlite etc) when
1368 collection building is not enabled -->
1369
1370 <target name="update-common-src" depends="init" if="collection.building.disabled">
1371 </target>
1372
1373 <target name="svnupdate-common-src" depends="init" if="collection.building.disabled" unless="nosvn.mode">
1374 <exec executable="svn">
1375 <arg value="update"/>
1376 <arg value="${common.src.home}"/>
1377 <arg value="-r"/><arg value="${branch.revision}"/>
1378 </exec>
1379 </target>
1380
1381 <target name="prepare-common-src" depends="init" if="collection.building.disabled" unless="common.src.present">
1382 <antcall target="checkout-common-src"/>
1383 <antcall target="unzip-windows-packages"/>
1384 </target>
1385
1386 <target name="checkout-common-src" depends="init" if="collection.building.disabled" unless="nosvn.mode">
1387 <echo>checking out common-src</echo>
1388 <exec executable="svn">
1389 <arg value="checkout"/>
1390 <arg value="${svn.root}/main/${branch.path}/greenstone2/common-src"/>
1391 <arg value="common-src"/>
1392 <arg value="-r"/><arg value="${branch.revision}"/>
1393 </exec>
1394 </target>
1395
1396 <target name="configure-common-src" depends="init">
1397 <exec executable="${common.src.home}/configure" os="${os.unix}"
1398 dir="${common.src.home}" failonerror="true">
1399 <arg value="--prefix=${gs2build.home}"/> <!-- what value to use?? -->
1400 <arg value="--bindir=${gs2build.home}/bin/${os.bin.dir}"/> <!-- what value to use?? -->
1401 <arg line="${gs2.opt.args}"/>
1402 <arg line="${static.arg}"/>
1403 </exec>
1404 </target>
1405
1406 <target name="clean-common-src" depends="init">
1407 <!-- unix: -->
1408 <exec executable="make" os="${os.unix}" dir="${common.src.home}" failonerror="true">
1409 <arg value="clean"/>
1410 </exec>
1411 <!-- windows: -->
1412 <exec executable="nmake" dir="${common.src.home}" os="${os.windows}" failonerror="true">
1413 <arg value="/f"/>
1414 <arg value="win32.mak"/>
1415 <arg value="clean"/>
1416 <arg value="GSDLHOME=${gs2build.home}"/>
1417 </exec>
1418 </target>
1419 <target name="distclean-common-src" depends="init">
1420 <!-- unix: -->
1421 <exec executable="make" os="${os.unix}" dir="${common.src.home}" failonerror="true">
1422 <arg value="distclean"/>
1423 </exec>
1424 <!-- windows: distclean = clean + remove configure products (remove makefiles). But on Windows there is no removing makefiles, so we just call clean -->
1425 <exec executable="nmake" dir="${common.src.home}" os="${os.windows}" failonerror="true">
1426 <arg value="/f"/>
1427 <arg value="win32.mak"/>
1428 <arg value="clean"/>
1429 <arg value="GSDLHOME=${gs2build.home}"/>
1430 </exec>
1431 </target>
1432 <target name="compile-common-src" depends="init">
1433 <!-- unix: -->
1434 <exec executable="make" os="${os.unix}" dir="${common.src.home}" failonerror="true">
1435 <arg value="${gs2.compile.target}"/>
1436 </exec>
1437 <!-- windows: -->
1438 <exec executable="nmake" dir="${common.src.home}" os="${os.windows}" failonerror="true">
1439 <arg value="/f"/>
1440 <arg value="win32.mak"/>
1441 <arg value="GSDLHOME=${gs2build.home}"/>
1442 <arg value="ENABLE_JNI=${gs2.windows.enablejni}"/>
1443 <arg value="USE_SQLITE=0"/> <!-- Why is this not on by default? -->
1444 </exec>
1445 </target>
1446
1447 <!-- ======= collection-building targets ===========================-->
1448
1449 <target name="update-collection-building" if="collection.building.enabled"
1450 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"
1451 description="Update (SVN update, configure, compile etc) only the collection building components"/>
1452
1453 <target name="svnupdate-collection-building" if="collection.building.enabled" depends="init,svnupdate-gs2build,svnupdate-gli" unless="nosvn.mode"
1454 description="SVN update the collection building components">
1455 </target>
1456
1457 <target name="prepare-collection-building" depends="init,prepare-gs2build,prepare-gli" if="collection.building.enabled">
1458 </target>
1459
1460 <target name="configure-collection-building" depends="init,configure-build-src" if="collection.building.enabled"
1461 description="Configure the collection building components">
1462 </target>
1463
1464 <target name="clean-collection-building" depends="init,clean-gli,clean-build-src"
1465 description="Clean only the collection building components"
1466 if="collection.building.enabled"/>
1467
1468 <target name="distclean-collection-building" depends="init,clean-build-src,distclean-build-src"
1469 description="Distclean only the collection building components"
1470 if="collection.building.enabled"/>
1471
1472 <target name="compile-collection-building" depends="init,compile-build-src,compile-gli" if="collection.building.enabled"
1473 description="Compile only the collection building components">
1474 <!-- make install for common-src -->
1475 <!-- unix: -->
1476 <exec executable="make" os="${os.unix}" dir="${common.src.home}" failonerror="true">
1477 <arg value="${gs2.install.target}"/>
1478 </exec>
1479
1480 <!-- windows: -->
1481 <exec executable="nmake" dir="${common.src.home}" os="${os.windows}" failonerror="true">
1482 <arg value="/f"/>
1483 <arg value="win32.mak"/>
1484 <arg value="install"/>
1485 <arg value="ENABLE_JNI=${gs2.windows.enablejni}"/>
1486 <arg value="USE_SQLITE=0"/> <!-- why is this not on by default? -->
1487 </exec>
1488
1489 <!-- install gs2build indexers for windows -->
1490 <if>
1491 <bool><istrue value="${current.os.iswindows}"/></bool>
1492 <copy todir="${gs2build.home}/bin/windows">
1493 <fileset dir="${gs2build.home}/common-src/indexers/bin">
1494 <include name="*.*"/>
1495 </fileset>
1496 </copy>
1497 </if>
1498
1499 <!-- LuceneWrapper jar file not installed by default -->
1500 <mkdir dir="${gs2build.home}/bin/java"/>
1501 <copy file="${lucene.home}/LuceneWrapper.jar" todir="${gs2build.home}/bin/java"/>
1502
1503 </target>
1504
1505 <!-- ============== gli targets ================================= -->
1506 <target name="svnupdate-gli" if="collection.building.enabled" depends="init" unless="nosvn.mode">
1507
1508 <exec executable="svn">
1509 <arg value="update"/>
1510 <arg value="${gli.home}"/>
1511 <arg value="-r"/><arg value="${branch.revision}"/>
1512 </exec>
1513
1514 <exec executable="svn" dir="web/WEB-INF/cgi">
1515 <arg value="export"/>
1516 <arg value="-r"/><arg value="${branch.revision}"/>
1517 <arg value="${svn.root}/main/${branch.path}/greenstone2/cgi-bin/gliserver.pl"/>
1518 </exec>
1519 <exec executable="svn" dir="web/WEB-INF/cgi">
1520 <arg value="export"/>
1521 <arg value="-r"/><arg value="${branch.revision}"/>
1522 <arg value="${svn.root}/main/${branch.path}/greenstone2/cgi-bin/gsdlCGI.pm"/>
1523 </exec>
1524
1525 </target>
1526
1527 <target name="prepare-gli" depends="init" if="collection.building.enabled" unless="gli.present">
1528 <!-- checkout -->
1529 <if><bool><not><istrue value="${nosvn.mode}"/></not></bool>
1530
1531 <exec executable="svn">
1532 <arg value="checkout"/>
1533 <arg value="${svn.root}/main/${branch.path}/gli"/>
1534 <arg value="-r"/><arg value="${branch.revision}"/>
1535 </exec>
1536
1537 <exec executable="svn" dir="web/WEB-INF/cgi">
1538 <arg value="export"/>
1539 <arg value="-r"/><arg value="${branch.revision}"/>
1540 <arg value="${svn.root}/main/${branch.path}/greenstone2/cgi-bin/gliserver.pl"/>
1541 </exec>
1542 <exec executable="svn" dir="web/WEB-INF/cgi">
1543 <arg value="export"/>
1544 <arg value="-r"/><arg value="${branch.revision}"/>
1545 <arg value="${svn.root}/main/${branch.path}/greenstone2/cgi-bin/gsdlCGI.pm"/>
1546 </exec>
1547
1548 </if>
1549 </target>
1550
1551 <target name="clean-gli" depends="init" if="collection.building.enabled">
1552 <!-- gli -->
1553 <property name="gli.home" value="${basedir}/gli"/>
1554 <!-- linux -->
1555 <exec executable="clean.sh" os="${os.unix}" dir="${gli.home}"
1556 resolveExecutable="true" failonerror="true"/>
1557 <!-- windows -->
1558 <exec executable="clean.bat" os="${os.windows}" dir="${gli.home}"
1559 resolveExecutable="true" failonerror="true"/>
1560 </target>
1561
1562 <target name="compile-gli" depends="init" if="collection.building.enabled">
1563 <!-- gli -->
1564 <property name="gli.home" value="${basedir}/gli"/>
1565
1566 <!-- linux -->
1567 <exec executable="makegli.sh" os="${os.unix}" dir="${gli.home}" resolveExecutable="true" failonerror="true"/>
1568 <!--remote gli-->
1569 <exec executable="makejar.sh" os="${os.unix}" dir="${gli.home}"
1570 resolveExecutable="true" failonerror="true"/>
1571 <!-- windows -->
1572 <exec executable="makegli.bat" os="${os.windows}" dir="${gli.home}" resolveExecutable="true" failonerror="true"/>
1573 <!--remote gli-->
1574 <exec executable="makejar.bat" os="${os.windows}" dir="${gli.home}"
1575 resolveExecutable="true" failonerror="true"/>
1576 <copy file="${gli.home}/GLIServer.jar" todir="${gs2build.home}/bin/java" />
1577 </target>
1578
1579 <target name="gli" description="Run the Greenstone Librarian Interface" depends="init" if="collection.building.enabled">
1580 <exec executable="${basedir}/gli/gli.sh" os="${os.linux},${os.solaris}" dir="${basedir}/gli" spawn="true">
1581 <env key="gsdl3path" path="${basedir}"/>
1582 <env key="gsdlpath" path="${gs2build.home}"/>
1583 </exec>
1584 <exec executable="${basedir}/gli/gli.sh" os="${os.mac}" dir="${basedir}/gli" spawn="true">
1585 <env key="gsdl3path" path="${basedir}"/>
1586 <env key="gsdlpath" path="${gs2build.home}"/>
1587 <env key="DYLD_LIBRARY_PATH" path="${env.DYLD_LIBRARY_PATH}:${gdbm.home}/lib"/>
1588 </exec>
1589 <exec executable="${basedir}/gli/gli.bat" os="${os.windows}" dir="${basedir}/gli" spawn="true">
1590 <env key="GSDL3PATH" path="${basedir}"/>
1591 <env key="GSDLPATH" path="${gs2build.home}"/>
1592 </exec>
1593 <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.
1594 </echo>
1595 </target>
1596
1597 <!-- ================ gs2build targets =========================== -->
1598
1599 <target name="svnupdate-gs2build" if="collection.building.enabled" depends="init" unless="nosvn.mode">
1600 <echo>svn updating gs2build</echo>
1601 <exec executable="svn">
1602 <arg value="update"/>
1603 <arg value="${gs2build.home}"/>
1604 <arg value="-r"/><arg value="${branch.revision}"/>
1605 </exec>
1606 </target>
1607
1608 <target name="prepare-gs2build" depends="init" if="collection.building.enabled" unless="gs2build.present">
1609 <antcall target="checkout-gs2build"/>
1610 <antcall target="unzip-windows-packages"/>
1611 <antcall target="checkout-winbin"/>
1612 <antcall target="get-windows-binaries"/>
1613 <antcall target="delete-winbin"/>
1614 </target>
1615
1616 <target name="checkout-gs2build" depends="init" if="collection.building.enabled" unless="nosvn.mode">
1617 <echo>checking out gs2build</echo>
1618 <exec executable="svn">
1619 <arg value="checkout"/>
1620 <arg value="${svn.root}/main/${branch.path}/gs2build"/>
1621 <arg value="-r"/><arg value="${branch.revision}"/>
1622 </exec>
1623
1624
1625 </target>
1626
1627 <target name="checkout-winbin" depends="init" if="current.os.iswindows"
1628 unless="nosvn.mode">
1629
1630 <exec executable="svn">
1631 <arg value="checkout"/>
1632 <arg value="${svn.root}/main/${branch.path}/binaries/windows"/>
1633 <arg value="-r"/><arg value="${branch.revision}"/>
1634 <arg value="winbin"/>
1635 </exec>
1636
1637 </target>
1638
1639 <target name="update-winbin" depends="init" if="current.os.iswindows" unless="nosvn.mode">
1640 <exec executable="svn">
1641 <arg value="update"/>
1642 <arg value="winbin"/>
1643 <arg value="-r"/><arg value="${branch.revision}"/>
1644 </exec>
1645
1646 </target>
1647
1648 <target name="get-windows-binaries" depends="init" if="collection.building.enabled.windows">
1649 <move todir="${gs2build.home}/bin/windows" failonerror="false">
1650 <fileset dir="${basedir}/winbin/bin"/>
1651 </move>
1652 </target>
1653
1654 <target name="delete-winbin" depends="init" if="collection.building.enabled.windows">
1655 <delete dir="${basedir}/winbin"/>
1656 </target>
1657
1658 <target name="unzip-windows-packages" depends="init" if="current.os.iswindows">
1659 <unzip src="${common.src.home}/packages/windows/crypt/crypt.zip"
1660 dest="${common.src.home}/packages/windows/crypt"/>
1661 <unzip src="${common.src.home}/packages/windows/expat/expat.zip"
1662 dest="${common.src.home}/packages/windows/expat"/>
1663 <untar compression="gzip"
1664 src="${common.src.home}/packages/sqlite/${sqlite.targz.version}"
1665 dest="${common.src.home}/packages/sqlite"/>
1666 <unzip src="${common.src.home}/indexers/packages/windows/iconv/iconv.zip"
1667 dest="${common.src.home}/indexers/packages/windows/iconv"/>
1668 </target>
1669
1670 <target name="gs2build-edit-setup-bat" if="collection.building.enabled.windows">
1671 <!-- we want a windows path in the setup.bat file -->
1672 <pathconvert targetos="windows" property="gs2build.home.windows">
1673 <path path="${gs2build.home}"/>
1674 </pathconvert>
1675 <move file="${gs2build.home}/setup.bat" tofile="${gs2build.home}/setup-tmp.bat">
1676 <filterset>
1677 <filter token="gsdlhome" value="${gs2build.home.windows}"/>
1678 </filterset>
1679 </move>
1680 <move file="${gs2build.home}/setup-tmp.bat" tofile="${gs2build.home}/setup.bat" />
1681 </target>
1682
1683
1684 <target name="clean-build-src" depends="init" if="collection.building.enabled">
1685 <!-- unix: -->
1686 <exec executable="make" os="${os.unix}" dir="${build.src.home}" failonerror="true">
1687 <arg value="clean"/>
1688 </exec>
1689 <!-- windows: -->
1690 <exec executable="nmake" dir="${build.src.home}" os="${os.windows}" failonerror="true">
1691 <arg value="/f"/>
1692 <arg value="win32.mak"/>
1693 <arg value="clean"/>
1694 <arg value="GSDLHOME=${gs2build.home}"/>
1695 </exec>
1696 </target>
1697
1698
1699 <target name="distclean-build-src" depends="init,clean-build-src" if="collection.building.enabled">
1700 <!-- unix: -->
1701 <exec executable="make" os="${os.unix}" dir="${build.src.home}" failonerror="true">
1702 <arg value="distclean"/>
1703 </exec>
1704 <!-- windows: distclean = clean + remove configure products (remove makefiles). But on Windows there is no removing makefiles, so we just call clean -->
1705 <exec executable="nmake" dir="${build.src.home}" os="${os.windows}" failonerror="true">
1706 <arg value="/f"/>
1707 <arg value="win32.mak"/>
1708 <arg value="clean"/>
1709 <arg value="GSDLHOME=${gs2build.home}"/>
1710 </exec>
1711 </target>
1712
1713 <target name="configure-build-src" depends="init" if="collection.building.enabled"
1714 description="Configure the build-src component">
1715 <exec executable="${build.src.home}/configure" os="${os.unix}"
1716 dir="${build.src.home}" failonerror="true">
1717 <arg value="--prefix=${gs2build.home}"/>
1718 <arg line="${gs2.opt.args}"/>
1719 <arg line="${static.arg}"/>
1720 </exec>
1721 </target>
1722
1723 <!-- common-src is done separately and needs to be compiled first -->
1724 <target name="compile-build-src" depends="init" if="collection.building.enabled">
1725
1726 <exec executable="make" dir="${build.src.home}" os="${os.unix}" failonerror="true"/>
1727 <exec executable="make" dir="${build.src.home}" os="${os.unix}" failonerror="true">
1728 <arg value="install"/>
1729 </exec>
1730
1731 <!-- run the setup script -->
1732 <!-- <exec executable="${compile.windows.c++.setup}" os="${os.windows}" failonerror="true"/>-->
1733 <!--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-->
1734 <exec executable="nmake" dir="${build.src.home}" os="${os.windows}" failonerror="true">
1735 <arg value="/f"/>
1736 <arg value="win32.mak"/>
1737 <arg value="GSDLHOME=${gs2build.home}"/>
1738 </exec>
1739 <exec executable="nmake" dir="${build.src.home}" os="${os.windows}" failonerror="true">
1740 <arg value="/f"/>
1741 <arg value="win32.mak"/>
1742 <arg value="install"/>
1743 <arg value="GSDLHOME=${gs2build.home}"/>
1744 </exec>
1745 </target>
1746
1747
1748 <!-- ======================== TESTING Targets ========================= -->
1749
1750 <target name="test" description="Run the (incomplete) JUnit test suite "
1751 depends="init">
1752 <mkdir dir="${basedir}/test"/>
1753 <junit printsummary="withOutAndErr"
1754 errorproperty="test.failed"
1755 failureproperty="test.failed"
1756 fork="${junit.fork}">
1757 <formatter type="plain"/>
1758 <classpath>
1759 <pathelement location="${build.home}/gsdl3test.jar"/>
1760 <path refid="compile.classpath"/>
1761 </classpath>
1762 <test name="${testcase}" if="testcase"/>
1763 <batchtest todir="${basedir}/test" unless="testcase">
1764 <fileset dir="${build.home}" includes="**/*Test.class" />
1765 </batchtest>
1766 </junit>
1767 <echo>
1768 *********************************************
1769 Test output can be found in directory 'test'
1770 *********************************************
1771 </echo>
1772 </target>
1773
1774 <!-- ======================== FLAX Targets ========================= -->
1775 <target name="prepare-flax" description="check out flax source code from another repository" if="install.flax">
1776 <echo>checking out flax ...</echo>
1777 <mkdir dir="${basedir}/src/java/org/flax"/>
1778 <mkdir dir="${basedir}/src/java/org/greenstone/gsdl3/flax"/>
1779 <mkdir dir="${basedir}/src/java/org/greenstone/gsdl3/action/flax"/>
1780 <mkdir dir="${web.home}/WEB-INF/classes/flax"/>
1781 <mkdir dir="${web.home}/interfaces/flax"/>
1782 <mkdir dir="${web.home}/sites/flax"/>
1783 <mkdir dir="${basedir}/flax-resources"/>
1784 <mkdir dir="${basedir}/flax-lib"/>
1785 <exec executable="svn"><arg value="checkout"/><arg value="${flax.checkout.path}/src/java/org/flax"/>
1786 <arg value="src/java/org/flax"/></exec>
1787 <exec executable="svn"><arg value="checkout"/><arg value="${flax.checkout.path}/src/java/org/greenstone/gsdl3/flax"/>
1788 <arg value="src/java/org/greenstone/gsdl3/flax"/></exec>
1789 <exec executable="svn"><arg value="checkout"/><arg value="${flax.checkout.path}/src/java/org/greenstone/gsdl3/action/flax"/>
1790 <arg value="src/java/org/greenstone/gsdl3/action/flax"/></exec>
1791 <exec executable="svn"><arg value="checkout"/><arg value="${flax.checkout.path}/web/WEB-INF/classes/flax"/>
1792 <arg value="${web.home}/WEB-INF/classes/flax"/></exec>
1793 <exec executable="svn"><arg value="checkout"/><arg value="${flax.checkout.path}/web/interfaces/flax"/>
1794 <arg value="${web.home}/interfaces/flax"/></exec>
1795 <exec executable="svn"><arg value="checkout"/><arg value="${flax.checkout.path}/web/sites/flax"/>
1796 <arg value="${web.home}/sites/flax"/></exec>
1797 <exec executable="svn"><arg value="checkout"/><arg value="${flax.checkout.path}/flax-resources"/>
1798 <arg value="flax-resources"/></exec>
1799 <exec executable="svn"><arg value="checkout"/><arg value="${flax.checkout.path}/lib"/>
1800 <arg value="flax-lib"/></exec>
1801 <move file="${web.home}/WEB-INF/web.xml" tofile="${web.home}/WEB-INF/web.xml.greenstone3backup"/>
1802 <antcall target="flax-copy-files" />
1803 </target>
1804
1805 <target name="update-flax" description="update flax from repository">
1806 <echo>updating flax ...</echo>
1807 <exec executable="svn"><arg value="update"/>
1808 <arg value="src/java/org/flax"/></exec>
1809 <exec executable="svn"><arg value="update"/>
1810 <arg value="src/java/org/greenstone/gsdl3/action/flax"/></exec>
1811 <exec executable="svn"><arg value="update"/>
1812 <arg value="src/java/org/greenstone/gsdl3/flax"/></exec>
1813 <exec executable="svn"><arg value="update"/>
1814 <arg value="${web.home}/WEB-INF/classes/flax"/></exec>
1815 <exec executable="svn"><arg value="update"/>
1816 <arg value="${web.home}/interfaces/flax"/></exec>
1817 <exec executable="svn"><arg value="update"/>
1818 <arg value="flax-resources"/></exec>
1819 <exec executable="svn"><arg value="update"/>
1820 <arg value="flax-lib"/></exec>
1821 <antcall target="flax-copy-files" />
1822 </target>
1823
1824 <target name="flax-copy-files" description="copy some flax files into the appropriate greenstone3 directories">
1825 <echo>copying flax files ...</echo>
1826 <copy file="${web.home}/WEB-INF/classes/flax/web.xml" todir="${web.home}/WEB-INF" overwrite="true" />
1827 <!-- A configuration file containing web service binding information for the axis engine -->
1828 <copy file="${web.home}/WEB-INF/classes/flax/server-config.wsdd" todir="${web.home}/WEB-INF" overwrite="true" />
1829 <!-- 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) -->
1830 <copy file="${basedir}/flax-resources/FlaxWebService.wsdl" tofile="${web.home}/FlaxWebService.wsdl" filtering="true" overwrite="true">
1831 <filterset>
1832 <filter token="flaxpublicserver" value="${tomcat.server}"/>
1833 <filter token="flaxpublicport" value="${tomcat.port}"/>
1834 </filterset>
1835 </copy>
1836 <copy file="${basedir}/flax-lib/opennlp-tools-1.3.0.jar" todir="${web.home}/WEB-INF/lib" overwrite="true" />
1837 <copy file="${basedir}/flax-lib/cos.jar" todir="${web.home}/WEB-INF/lib" overwrite="true" />
1838 </target>
1839
1840
1841 <target name="compile-javadocs">
1842 <javadoc packagenames="org.greenstone.*"
1843 sourcepath="src/java"
1844 defaultexcludes="yes"
1845 destdir="docs/javadoc"
1846 author="true"
1847 version="true"
1848 use="true"
1849 windowtitle="Greenstone3 API">
1850 <doctitle><![CDATA[<h1>Greenstone3 API</h1>]]></doctitle>
1851 </javadoc>
1852 </target>
1853
1854<!-- ========== Some distribution targets ======================== -->
1855 <target name="remove-source">
1856 <delete includeEmptyDirs="true">
1857 <fileset dir="." defaultexcludes="false">
1858 <patternset refid="greenstone3.source.component"/>
1859 </fileset>
1860 </delete>
1861 </target>
1862
1863 <target name="dist-tidy"
1864 description="'tidies-up' a greenstone3 installation for distribution.">
1865
1866 <!-- delete unneeded things -->
1867 <delete dir="${packages.home}/axis"/>
1868 <delete><fileset dir="${packages.home}" includes="*.zip"/></delete>
1869 <delete file="README-SVN.txt"/>
1870 <delete file="build.properties.in"/>
1871
1872 <!-- delete source files -->
1873 <antcall target="remove-source"/>
1874
1875 <!-- create empty directories -->
1876 <mkdir dir="${web.home}/applet"/>
1877 <mkdir dir="${web.home}/logs"/>
1878
1879 <!-- os specific tidy-ups -->
1880 <!-- linux, mac -->
1881 <if><bool><istrue value="${current.os.isunix}"/></bool>
1882 <delete><fileset dir="." includes="*.bat"/></delete>
1883 <delete><fileset dir="gli" includes="*.bat"/></delete>
1884 <delete><fileset dir="gs2build" includes="*.bat"/></delete>
1885 <delete><fileset dir="bin/script" includes="*.bat"/></delete>
1886 <delete file="${basedir}/gs2build/win32cfg.h"/>
1887 <delete file="${basedir}/gs2build/win32.mak"/>
1888 <delete dir="${basedir}/winutil"/>
1889 <delete failonerror="false"><fileset dir="${lib.jni}" includes="*.dll"/></delete>
1890
1891 <!-- windows -->
1892 <else><if><bool><istrue value="${current.os.iswindows}"/></bool>
1893 <delete><fileset dir="." includes="*.sh,*.bash,*.csh"/></delete>
1894 <delete><fileset dir="gli" includes="*.sh,*.bash,*.csh"/></delete>
1895 <delete><fileset dir="gs2build" includes="*.sh,*.bash,*.csh"/></delete>
1896 <delete><fileset dir="bin/script" includes="*.sh,*.bash,*.csh"/></delete>
1897 </if></else></if>
1898
1899 </target>
1900
1901 <!-- fix up executable permissions for binary release -->
1902 <target name="fix-execute-permissions">
1903 <echo>Setting binaries to executable</echo>
1904 <chmod perm="775">
1905 <fileset dir="."><patternset refid="greenstone3.executables"/></fileset>
1906 </chmod>
1907 </target>
1908
1909 <!-- fix up executable permissions for source code release -->
1910 <target name="fix-execute-permissions-source">
1911 <chmod perm="775">
1912 <fileset dir="."><patternset refid="greenstone3.source.executables"/></fileset>
1913 </chmod>
1914 </target>
1915
1916
1917 <!-- ============= tweaks for making compilation static ========== -->
1918 <target name="tweak-makefiles" depends="init" if="compile.static">
1919 <antcall target="rtftohtml-add-static" />
1920 </target>
1921
1922 <target name="rtftohtml-add-static" depends="init" if="collection.building.enabled">
1923 <rsr file="${gs2build.home}/build-src/packages/rtftohtml/rtftohtml_src/Makefile" pattern="-o rtftohtml(.{2})EXEEXT(.{1})" replacement="-o rtftohtml$1EXEEXT$2 -static" />
1924 </target>
1925
1926</project>
1927
Note: See TracBrowser for help on using the repository browser.