source: main/trunk/release-kits/shared/core/ant-scripts/shared.xml@ 22490

Last change on this file since 22490 was 22490, checked in by sjm84, 14 years ago

Fixed issues with apache httpd compiling on Windows 7

File size: 19.0 KB
Line 
1<?xml version="1.0" encoding="utf-8" ?>
2<project name="rk-init">
3
4 <!-- CHECK PRE-CONDITIONS -->
5 <target name="init">
6
7 <!-- load in static properties from build.properties -->
8 <property file="${rk.name}-build.properties" />
9
10 <!-- load environment properties -->
11 <property environment="env"/>
12
13 <!-- CONSTANTS (overridable in build.properties) -->
14
15 <!-- svn root -->
16 <property name="svn.root" value="http://svn.greenstone.org" />
17
18 <!-- the minimum version of java which the installer should be run with (this gets used in search4j) -->
19 <property name="java.min.version" value="1.4.0_00"/>
20
21 <!-- create a localised basedir property -->
22 <path id="basedir.path"><pathelement location="${basedir}"/></path>
23 <property name="basedir.local" refid="basedir.path"/>
24
25 <!-- size of resource chunks (windows wrapper) -->
26 <property name="resources.chunksize" value="8388608"/>
27
28 <!-- the extra space for the dmg image in KB (mac wrapper) -->
29 <property name="dmg.overhead" value="2048"/>
30
31 <!-- current date and time -->
32 <tstamp>
33 <format property="current.month" pattern="MMM"/>
34 <format property="current.year" pattern="yyyy"/>
35 <format property="date" pattern="yyyy.MM.dd"/>
36 </tstamp>
37
38 <!-- BUNDLED JAVA INFO -->
39 <!-- the bundled javas are kept in shared/linux/wrapper and shared/windows/wrapper in the repository -->
40 <!-- change this info when the bundled version changes -->
41 <property name="java.extracted" value="jre"/> <!-- set this to the name of the top level directory in the above archive -->
42
43 <!-- linux -->
44 <property name="linux-java.installer" value="jre_bin"/>
45 <property name="bundled.version.linux-java" value="1.6.0_05"/> <!-- set this to the version number of java in the above archive -->
46 <property name="component.bytesize.linux-java" value="101245987"/> <!-- set this to the size of the extract archive -->
47
48 <!-- windows -->
49 <property name="windows-java.installer" value="jre.exe"/>
50 <property name="bundled.version.windows-java" value="1.6.0_07"/> <!-- set this to the version number of java in the above archive -->
51 <property name="component.bytesize.windows-java" value="75000000"/> <!-- set this to the size of the extract archive -->
52
53 <!-- version numbers of other bundled things -->
54 <property name="bundled.version.imagemagick" value="6.4.3"/>
55 <property name="bundled.version.ghostscript" value="8.63"/>
56 <property name="bundled.version.tomcat" value="6.0.20"/>
57
58 <!-- CLASSPATH -->
59 <path id="project.classpath">
60
61 <!-- our classes -->
62 <fileset dir="${rk.home}/shared/core">
63 <include name="ant-tasks/antelope/AntelopeTasks_3.4.2.jar"/>
64 <include name="ant-tasks/orangevolt/roxes-win32forjava-1.1.1.jar"/>
65 <include name="ant-tasks/orangevolt/orangevolt-ant-tasks-1.3.8.jar"/>
66 <include name="ant-tasks/greenstone/anttasks.jar"/>
67 <include name="ant-tasks/7z-ant/7z.jar"/>
68 <include name="lib/crypt.jar"/>
69 <include name="lib/serializer.jar"/>
70 <include name="lib/xalan.jar"/>
71 <include name="lib/xercesImpl.jar"/>
72 <include name="lib/xml-apis.jar"/>
73 <include name="ant-installer/lib/ant-installer-ext.jar"/>
74 <include name="ant-installer/lib/ant-installer.jar"/>
75 </fileset>
76
77 </path>
78
79 <!-- SELF DEFINED TASKS AND TYPES -->
80 <taskdef name="if" classname="ise.antelope.tasks.IfTask" classpathref="project.classpath"/>
81 <taskdef name="try" classname="ise.antelope.tasks.TryTask" classpathref="project.classpath"/>
82 <taskdef name="math" classname="ise.antelope.tasks.MathTask" classpathref="project.classpath"/>
83 <taskdef name="sevenzip" classname="org.apache.tools.ant.SevenZip" classpathref="project.classpath"/>
84 <taskdef name="installer" classname="org.tp23.antinstaller.taskdefs.Installer" classpathref="project.classpath"/>
85 <typedef name="iuv" classname="org.greenstone.anttasks.InsertUniqueValue" classpathref="project.classpath"/>
86 <typedef name="rsr" classname="org.greenstone.anttasks.RegexSearchReplace" classpathref="project.classpath"/>
87 <typedef name="dcff" classname="org.greenstone.anttasks.DeleteChunkFromFile" classpathref="project.classpath"/>
88 <typedef name="rsplit" classname="org.greenstone.anttasks.SplitResource" classpathref="project.classpath"/>
89 <typedef name="get-property-value" classname="org.greenstone.anttasks.GetPropertyValue" classpathref="project.classpath"/>
90
91 <!-- default revision and branch path -->
92 <property name="branch.revision" value="HEAD" />
93 <property name="branch.tag.name" value="trunk" />
94 <property name="branch.tag.version" value="" />
95
96 <if><bool><equals arg1="${branch.tag.name}" arg2="trunk" /></bool>
97
98 <property name="branch.path" value="${branch.tag.name}" />
99
100 <else>
101 <if>
102 <bool>
103 <not><equals arg1="${branch.tag.version}" arg2="" /></not>
104 </bool>
105 <property name="branch.path" value="${branch.tag.name}/${branch.tag.version}" />
106 <else>
107 <fail>Cannot use use a branch.tag.name that is not 'trunk' without also defining branch.tag.version</fail>
108 </else>
109 </if>
110 </else>
111 </if>
112
113 <!-- DATES IN DIFFERENT LANGUAGES -->
114 <get-property-value propertiesFile="${rk.home}/shared/core/lib/dates.properties" propertyName="ar.Dates.${current.month}" outputProperty="month.ar"/>
115 <get-property-value propertiesFile="${rk.home}/shared/core/lib/dates.properties" propertyName="ca.Dates.${current.month}" outputProperty="month.ca"/>
116 <get-property-value propertiesFile="${rk.home}/shared/core/lib/dates.properties" propertyName="el.Dates.${current.month}" outputProperty="month.el"/>
117 <get-property-value propertiesFile="${rk.home}/shared/core/lib/dates.properties" propertyName="es.Dates.${current.month}" outputProperty="month.es"/>
118 <get-property-value propertiesFile="${rk.home}/shared/core/lib/dates.properties" propertyName="fr.Dates.${current.month}" outputProperty="month.fr"/>
119 <get-property-value propertiesFile="${rk.home}/shared/core/lib/dates.properties" propertyName="lv.Dates.${current.month}" outputProperty="month.lv"/>
120 <get-property-value propertiesFile="${rk.home}/shared/core/lib/dates.properties" propertyName="mr.Dates.${current.month}" outputProperty="month.mr"/>
121 <get-property-value propertiesFile="${rk.home}/shared/core/lib/dates.properties" propertyName="ro.Dates.${current.month}" outputProperty="month.ro"/>
122 <get-property-value propertiesFile="${rk.home}/shared/core/lib/dates.properties" propertyName="ru.Dates.${current.month}" outputProperty="month.ru"/>
123 <get-property-value propertiesFile="${rk.home}/shared/core/lib/dates.properties" propertyName="vi.Dates.${current.month}" outputProperty="month.vi"/>
124 <get-property-value propertiesFile="${rk.home}/shared/core/lib/dates.properties" propertyName="zh.Dates.${current.month}" outputProperty="month.zh"/>
125 <get-property-value propertiesFile="${rk.home}/shared/core/lib/dates.properties" propertyName="default.Dates.${current.month}" outputProperty="month.default"/>
126
127
128 <!-- version number -->
129 <if><bool><not><isset property="version"/></not></bool>
130 <fail>Version number not set. Check that the file '${rk.name}-build.properties' exists and defines property 'version'.</fail>
131 </if>
132 <property name="app.version" value="${version}"/>
133
134 <!-- work out rk.os -->
135 <if>
136 <bool>
137 <or>
138 <equals arg1="${rk.os}" arg2="linux"/>
139 <equals arg1="${rk.os}" arg2="mac"/>
140 <equals arg1="${rk.os}" arg2="windows"/>
141 </or>
142 </bool>
143 <echo>Using user-specified value for rk.os: '${rk.os}'</echo>
144
145 <else><if>
146 <bool><equals arg1="${os.name}" arg2="Linux"/></bool>
147 <property name="rk.os" value="linux"/>
148
149 <else><if>
150 <bool><equals arg1="${os.name}" arg2="Mac OS X"/></bool>
151 <property name="rk.os" value="mac"/>
152
153 <else><if>
154 <bool>
155 <or>
156 <equals arg1="${os.name}" arg2="Windows 95"/>
157 <equals arg1="${os.name}" arg2="Windows 98"/>
158 <equals arg1="${os.name}" arg2="Windows 2000"/>
159 <equals arg1="${os.name}" arg2="Windows XP"/>
160 <equals arg1="${os.name}" arg2="Windows NT"/>
161 <equals arg1="${os.name}" arg2="Windows ME"/>
162 <equals arg1="${os.name}" arg2="Windows Vista"/>
163 <equals arg1="${os.name}" arg2="Windows 7"/>
164 </or>
165 </bool>
166 <property name="rk.os" value="windows"/>
167
168 <else>
169 <fail>Can't work out what to set rk.os to. Please report this to [email protected] . In the mean time, manually set rk.os to 'windows', 'mac', or 'linux' by reinvoking the release kit with, for example, '-Drk.os=windows'</fail>
170
171 </else></if></else></if></else></if></else></if>
172
173 <!-- set os.suffix and os.shell -->
174 <if><bool><equals arg1="${rk.os}" arg2="mac"/></bool>
175 <property name="os.suffix" value="MacOS-intel"/>
176 <property name="os.shell" value="darwin"/>
177 </if>
178 <property name="os.suffix" value="${rk.os}"/>
179 <property name="os.shell" value="${rk.os}"/>
180
181 <!-- set os.script.format -->
182 <if><bool><or><equals arg1="${rk.os}" arg2="linux"/><equals arg1="${rk.os}" arg2="mac"/></or></bool>
183 <property name="os.script.format" value="sh"/>
184 <else><if><bool><equals arg1="${rk.os}" arg2="windows"/></bool>
185 <property name="os.script.format" value="bat"/>
186 </if></else></if>
187
188 <!-- show important properties -->
189 <echo level="info">Version (version): ${version}</echo>
190 <echo level="info">Major Version (version.major): ${version.major}</echo>
191 <echo level="info">Branch Path (branch.path): ${branch.path}</echo>
192 <echo level="info">Date (date): ${date}</echo>
193 <echo level="info">Current Month (current.month): ${current.month}</echo>
194 <echo level="info">Current Year (current.year): ${current.year}</echo>
195 <echo level="info">Operating System (rk.os): ${rk.os}</echo>
196 <echo level="info">Operating System Suffix (os.suffix): ${os.suffix}</echo>
197 <echo level="info">Operating System Script format (os.script.format): ${os.script.format}</echo>
198 <echo level="info">Operating System Shell (os.shell): ${os.shell}</echo>
199 <!--
200 <echo level="info">Current Date</echo>
201 <echo level="info">ar: ${month.ar} ${current.year}</echo>
202 <echo level="info">ca: ${month.el} ${current.year}</echo>
203 <echo level="info">el: ${month.el} ${current.year}</echo>
204 <echo level="info">es: ${month.es} ${current.year}</echo>
205 <echo level="info">fr: ${month.fr} ${current.year}</echo>
206 <echo level="info">lv: ${month.lv} ${current.year}</echo>
207 <echo level="info">mr: ${month.mr} ${current.year}</echo>
208 <echo level="info">ro: ${month.ro} ${current.year}</echo>
209 <echo level="info">ru: ${month.ru} ${current.year}</echo>
210 <echo level="info">vi: ${month.vi} ${current.year}</echo>
211 <echo level="info">zh: ${month.zh} ${current.year}</echo>
212 <echo level="info">default: (${month.default} ${current.year})</echo>
213 -->
214 </target>
215
216 <!-- show the core properties of all release-kits -->
217 <target name="core-properties">
218 <echo>version (required) the version string for the release</echo>
219 <echo>branch.path (optional) the branch of Greenstone to make a release of. Eg: tags/2.81. Default: trunk.</echo>
220 <echo>branch.revision (optional) the revision of Greenstone to make a release of. Eg: 18273. Default: HEAD.</echo>
221 </target>
222
223 <!-- a target to strip any directory of .svn folders -->
224 <target name="strip-svn-dirs">
225 <delete includeemptydirs="true">
226 <fileset dir="${dir}" defaultexcludes="false">
227 <include name="**/.svn/**" />
228 <include name="**/.svn/" />
229 <include name=".svn/**" />
230 <include name=".svn/" />
231 </fileset>
232 </delete>
233 </target>
234
235 <!-- target to insert the uninstaller into 'compiled' and compile it -->
236 <target name="insert-and-compile-uninstaller">
237
238 <!-- create working build directory -->
239 <mkdir dir="compiled/uninstaller/build/resources" />
240
241 <!-- copile to build -->
242 <javac
243 srcdir="${rk.home}/shared/core/uninstaller"
244 destdir="compiled/uninstaller/build" />
245
246 <!-- copy language bundle into place -->
247 <native2ascii
248 implementation="sun"
249 src="${rk.home}/shared/core/language-strings"
250 dest="compiled/uninstaller/build/resources"/>
251
252 <!-- jar it all up -->
253 <jar
254 destfile="compiled/uninst.jar"
255 manifest="${rk.home}/shared/core/uninstaller/manifest.mf"
256 basedir="compiled/uninstaller/build" />
257
258 <!-- clean up build directory -->
259 <delete dir="compiled/uninstaller"/>
260
261 <!-- put the associated script in place -->
262 <copy file="${rk.home}/shared/core/uninstaller/Uninstall.${os.script.format}" todir="compiled"/>
263
264 </target>
265
266 <!-- target to set all the version numbers in a greenstone2 or gs2build directory -->
267 <target name="gsdl-set-version-numbers">
268
269 <if><bool><available file="${gsdl.basedir}/common-src/src/lib/gsdlconf.h"/></bool>
270 <rsr file="${gsdl.basedir}/common-src/src/lib/gsdlconf.h" pattern="(#define GSDL_VERSION) &quot;.*&quot;" replacement="$1 &quot;${version}&quot;" />
271 </if>
272
273 <if><bool><available file="${gsdl.basedir}/etc/VERSION"/></bool>
274 <rsr file="${gsdl.basedir}/etc/VERSION" pattern="(gsdl version: ).*" replacement="$1${version}" />
275 </if>
276
277 <if><bool><available file="${gsdl.basedir}/lib/java/server.properties"/></bool>
278 <rsr file="${gsdl.basedir}/lib/java/server.properties" pattern="^(Server2Control.Version[:=]).*" replacement="$1${version}" />
279 </if>
280
281 <if><bool><available file="${gsdl.basedir}/lib/java/log4j.properties.in"/></bool>
282 <rsr file="${gsdl.basedir}/lib/java/log4j.properties.in" pattern="^(log4j.category.org.greenstone.server[:=].*)INFO(.*)" replacement="$1WARN$2" />
283 </if>
284
285 <antcall target="gsdl-set-dates-in-readmes"><param name="gsdl.basedir" value="${gsdl.basedir}"/></antcall>
286
287 </target>
288
289 <!-- target to set dates in readme files -->
290 <target name="gsdl-set-dates-in-readmes">
291
292 <!-- en -->
293 <if><bool><available file="${gsdl.basedir}/READMEen.txt"/></bool>
294 <rsr file="${gsdl.basedir}/READMEen.txt">
295 <job pattern="^(Date\s*)(.*)" replacement="$1${month.default} ${current.year}" />
296 <job pattern="^(Version\s*)(.*)" replacement="$1${version}" />
297 </rsr>
298 </if>
299
300 <!-- ar -->
301 <if><bool><available file="${gsdl.basedir}/READMEar.txt"/></bool>
302 <rsr file="${gsdl.basedir}/READMEar.txt">
303 <job pattern="(التاريخ : \s*)(.*)" replacement="$1${month.ar} ${current.year}"/>
304 <job pattern="(النسخه : \s*)(.*)" replacement="$1${version}"/>
305 </rsr>
306 </if>
307
308 <!-- es -->
309 <if><bool><available file="${gsdl.basedir}/READMEes.txt"/></bool>
310 <rsr file="${gsdl.basedir}/READMEes.txt">
311 <job pattern="^(Fecha\s*)(.*)" replacement="$1${month.es} de ${current.year}"/>
312 <job pattern="^(Versi.?n\s*)(.*)" replacement="$1${version}"/>
313 </rsr>
314 </if>
315
316 <!-- fr -->
317 <if><bool><available file="${gsdl.basedir}/READMEfr.txt"/></bool>
318 <rsr file="${gsdl.basedir}/READMEfr.txt">
319 <job pattern="^(Date\s*)(.*)" replacement="$1${month.fr} ${current.year}"/>
320 <job pattern="^(Version\s*)(.*)" replacement="$1${version}"/>
321 </rsr>
322 </if>
323
324 <!-- ru -->
325 <if><bool><available file="${gsdl.basedir}/READMEru.txt"/></bool>
326 <rsr file="${gsdl.basedir}/READMEru.txt">
327 <job pattern="^(Дата\s*)(.*)" replacement="$1${month.ru} ${current.year}"/>
328 <job pattern="^(ВерсОя\s*)(.*)" replacement="$1${version}"/>
329 </rsr>
330 </if>
331
332 </target>
333
334 <!-- target to set version numbers in gli -->
335 <target name="gli-set-version-numbers">
336
337 <!-- DICTIOANRY FILES (AboutDialog.Date) -->
338 <echo level="info">Changing AboutDialog.Date in all dictionaries</echo>
339
340 <rsr file="${glibasedir}/classes/dictionary_ar.properties" pattern="AboutDialog.Date:.*" replacement="AboutDialog.Date:(${month.ar} ${current.year})" />
341 <rsr file="${glibasedir}/classes/dictionary_ca.properties" pattern="AboutDialog.Date:.*" replacement="AboutDialog.Date:(${month.ca} de ${current.year})" />
342 <rsr file="${glibasedir}/classes/dictionary_el.properties" pattern="AboutDialog.Date:.*" replacement="AboutDialog.Date:(${month.el} ${current.year})" />
343 <rsr file="${glibasedir}/classes/dictionary_es.properties" pattern="AboutDialog.Date:.*" replacement="AboutDialog.Date:(${month.es} ${current.year})" />
344 <rsr file="${glibasedir}/classes/dictionary_fr.properties" pattern="AboutDialog.Date:.*" replacement="AboutDialog.Date:(${month.fr} ${current.year})" />
345 <rsr file="${glibasedir}/classes/dictionary_lv.properties" pattern="AboutDialog.Date:.*" replacement="AboutDialog.Date:(${month.lv} ${current.year})" />
346 <rsr file="${glibasedir}/classes/dictionary_mr.properties" pattern="AboutDialog.Date:.*" replacement="AboutDialog.Date:(${month.mr} ${current.year})" />
347 <rsr file="${glibasedir}/classes/dictionary_ro.properties" pattern="AboutDialog.Date:.*" replacement="AboutDialog.Date:(${month.ro} ${current.year})" />
348 <rsr file="${glibasedir}/classes/dictionary_ru.properties" pattern="AboutDialog.Date:.*" replacement="AboutDialog.Date:(${month.ru} ${current.year})" />
349 <rsr file="${glibasedir}/classes/dictionary_vi.properties" pattern="AboutDialog.Date:.*" replacement="AboutDialog.Date:(${month.vi} ${current.year})" />
350 <rsr file="${glibasedir}/classes/dictionary_zh.properties" pattern="AboutDialog.Date:.*" replacement="AboutDialog.Date:(${month.zh} ${current.year})" />
351 <rsr file="${glibasedir}/classes/dictionary.properties" pattern="AboutDialog.Date:.*" replacement="AboutDialog.Date:(${month.default} ${current.year})" />
352
353 <!-- GLI GATHERER -->
354 <echo level="info">Changing version number in gli Gatherer</echo>
355 <rsr file="${glibasedir}/src/org/greenstone/gatherer/Gatherer.java" pattern="^(.*)String\s*PROGRAM_VERSION\s*=\s*&quot;(.*)&quot;" replacement="$1String PROGRAM_VERSION = &quot;${version}&quot;"/>
356
357 <!-- CONFIG XML FILES -->
358 <echo level="info">Changing configuration version in classes/xml/config.xml</echo>
359 <rsr file="${glibasedir}/classes/xml/config.xml" pattern="^(\s*&lt;Configuration.* version=&quot;)[^&quot;]*(&quot;.*&gt;)" replacement="$1${version}$2"/>
360
361 <echo level="info">Changing configuration version in gli/classes/xml/configRemote.xml</echo>
362 <rsr file="${glibasedir}/classes/xml/configRemote.xml" pattern="^(\s*&lt;Configuration.* version=&quot;)[^&quot;]*(&quot;.*&gt;)" replacement="$1${version}$2"/>
363
364 </target>
365
366 <!-- target to tidy gli up for distribution -->
367 <target name="gli-tidy-for-dist">
368 <!-- delete unneeded things -->
369 <delete file="${glibasedir}/.greenstonestore"/>
370 <delete dir="${glibasedir}/classes/META-INF"/>
371 <delete dir="${glibasedir}/classes/org"/>
372 <delete dir="${glibasedir}/classes/images"/>
373 <delete dir="${glibasedir}/jar"/>
374 </target>
375
376
377 <!-- target to archive and compress a given component -->
378 <target name="create-component">
379 <mkdir dir="components"/>
380
381 <zip destfile="components/${component}.comp" compress="false">
382 <zipfileset dir="compiled">
383 <patternset refid="greenstone${version.major}.${component}.component"/>
384 </zipfileset>
385 </zip>
386
387 <!-- windows -->
388 <if><bool><equals arg1="${rk.os}" arg2="windows"/></bool>
389 <exec executable="${rk.home}/shared/windows/7za/7za.exe" dir="components"><arg line="a -t7z -mx=9 ${component}.lzma ${component}.comp"/></exec>
390
391 <!-- linux, mac -->
392 <else><if><bool><or><equals arg1="${rk.os}" arg2="linux"/><equals arg1="${rk.os}" arg2="mac"/></or></bool>
393 <sevenzip task="encode" input="components/${component}.comp" output="components/${component}.lzma" dictionnary="26"/>
394
395 <!-- else warn -->
396 <else>
397 <fail>this target does not support this os (was a new release-kit os added?)</fail>
398
399 </else></if></else></if>
400 </target>
401
402</project>
Note: See TracBrowser for help on using the repository browser.