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

Last change on this file since 21608 was 21608, checked in by oranfry, 14 years ago

moving things around for simplicity

File size: 23.7 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 <!-- CONSTANTS (overridable in build.properties) -->
11
12 <!-- svn root -->
13 <property name="svn.root" value="http://svn.greenstone.org" />
14
15 <!-- default revision and branch path -->
16 <property name="branch.path" value="trunk" />
17 <property name="branch.revision" value="HEAD" />
18
19 <!-- the minimum version of java which the installer should be run with (this gets used in search4j) -->
20 <property name="java.min.version" value="1.4.0_00"/>
21
22 <!-- create a localised basedir property -->
23 <path id="basedir.path"><pathelement location="${basedir}"/></path>
24 <property name="basedir.local" refid="basedir.path"/>
25
26 <!-- size of resource chunks (windows wrapper) -->
27 <property name="resources.chunksize" value="8388608"/>
28
29 <!-- the extra space for the dmg image in KB (mac wrapper) -->
30 <property name="dmg.overhead" value="2048"/>
31
32 <!-- current date and time -->
33 <tstamp>
34 <format property="current.month" pattern="MMM"/>
35 <format property="current.year" pattern="yyyy"/>
36 <format property="date" pattern="yyyy.MM.dd"/>
37 </tstamp>
38
39 <!-- BUNDLED JAVA INFO -->
40 <!-- the bundled javas are kept in shared/linux/wrapper and shared/windows/wrapper in the repository -->
41 <!-- change this info when the bundled version changes -->
42 <property name="java.extracted" value="jre"/> <!-- set this to the name of the top level directory in the above archive -->
43
44 <!-- linux -->
45 <property name="linux-java.installer" value="jre_bin"/>
46 <property name="bundled.version.linux-java" value="1.6.0_05"/> <!-- set this to the version number of java in the above archive -->
47 <property name="component.bytesize.linux-java" value="101245987"/> <!-- set this to the size of the extract archive -->
48
49 <!-- windows -->
50 <property name="windows-java.installer" value="jre.exe"/>
51 <property name="bundled.version.windows-java" value="1.6.0_07"/> <!-- set this to the version number of java in the above archive -->
52 <property name="component.bytesize.windows-java" value="75000000"/> <!-- set this to the size of the extract archive -->
53
54 <!-- version numbers of other bundled things -->
55 <property name="bundled.version.imagemagick" value="6.4.3"/>
56 <property name="bundled.version.ghostscript" value="8.63"/>
57 <property name="bundled.version.tomcat" value="6.0.20"/>
58
59 <!-- CLASSPATH -->
60 <path id="project.classpath">
61
62 <!-- our classes -->
63 <fileset dir="${rk.home}/shared/core">
64 <include name="ant-tasks/antelope/AntelopeTasks_3.4.2.jar"/>
65 <include name="ant-tasks/orangevolt/roxes-win32forjava-1.1.1.jar"/>
66 <include name="ant-tasks/orangevolt/orangevolt-ant-tasks-1.3.8.jar"/>
67 <include name="ant-tasks/svnant/lib/ganymed.jar"/>
68 <include name="ant-tasks/svnant/lib/svnClientAdapter.jar"/>
69 <include name="ant-tasks/svnant/lib/svnant.jar"/>
70 <include name="ant-tasks/svnant/lib/svnjavahl.jar"/>
71 <include name="ant-tasks/svnant/lib/svnkit.jar"/>
72 <include name="ant-tasks/greenstone/anttasks.jar"/>
73 <include name="ant-tasks/7z-ant/7z.jar"/>
74 <include name="lib/crypt.jar"/>
75 <include name="lib/serializer.jar"/>
76 <include name="lib/xalan.jar"/>
77 <include name="lib/xercesImpl.jar"/>
78 <include name="lib/xml-apis.jar"/>
79 <include name="ant-installer/lib/ant-installer-ext.jar"/>
80 <include name="ant-installer/lib/ant-installer.jar"/>
81 </fileset>
82
83 </path>
84
85 <!-- SELF DEFINED TASKS AND TYPES -->
86 <taskdef name="if" classname="ise.antelope.tasks.IfTask" classpathref="project.classpath"/>
87 <taskdef name="try" classname="ise.antelope.tasks.TryTask" classpathref="project.classpath"/>
88 <taskdef name="math" classname="ise.antelope.tasks.MathTask" classpathref="project.classpath"/>
89 <taskdef name="svn" classname="org.tigris.subversion.svnant.SvnTask" classpathref="project.classpath"/>
90 <taskdef name="sevenzip" classname="org.apache.tools.ant.SevenZip" classpathref="project.classpath"/>
91 <taskdef name="installer" classname="org.tp23.antinstaller.taskdefs.Installer" classpathref="project.classpath"/>
92 <typedef name="rsr" classname="org.greenstone.anttasks.RegexSearchReplace" classpathref="project.classpath"/>
93 <typedef name="dcff" classname="org.greenstone.anttasks.DeleteChunkFromFile" classpathref="project.classpath"/>
94 <typedef name="rsplit" classname="org.greenstone.anttasks.SplitResource" classpathref="project.classpath"/>
95 <typedef name="get-property-value" classname="org.greenstone.anttasks.GetPropertyValue" classpathref="project.classpath"/>
96
97 <!-- DATES IN DIFFERENT LANGUAGES -->
98 <get-property-value propertiesFile="${rk.home}/shared/core/lib/dates.properties" propertyName="ar.Dates.${current.month}" outputProperty="month.ar"/>
99 <get-property-value propertiesFile="${rk.home}/shared/core/lib/dates.properties" propertyName="ca.Dates.${current.month}" outputProperty="month.ca"/>
100 <get-property-value propertiesFile="${rk.home}/shared/core/lib/dates.properties" propertyName="el.Dates.${current.month}" outputProperty="month.el"/>
101 <get-property-value propertiesFile="${rk.home}/shared/core/lib/dates.properties" propertyName="es.Dates.${current.month}" outputProperty="month.es"/>
102 <get-property-value propertiesFile="${rk.home}/shared/core/lib/dates.properties" propertyName="fr.Dates.${current.month}" outputProperty="month.fr"/>
103 <get-property-value propertiesFile="${rk.home}/shared/core/lib/dates.properties" propertyName="lv.Dates.${current.month}" outputProperty="month.lv"/>
104 <get-property-value propertiesFile="${rk.home}/shared/core/lib/dates.properties" propertyName="mr.Dates.${current.month}" outputProperty="month.mr"/>
105 <get-property-value propertiesFile="${rk.home}/shared/core/lib/dates.properties" propertyName="ro.Dates.${current.month}" outputProperty="month.ro"/>
106 <get-property-value propertiesFile="${rk.home}/shared/core/lib/dates.properties" propertyName="ru.Dates.${current.month}" outputProperty="month.ru"/>
107 <get-property-value propertiesFile="${rk.home}/shared/core/lib/dates.properties" propertyName="vi.Dates.${current.month}" outputProperty="month.vi"/>
108 <get-property-value propertiesFile="${rk.home}/shared/core/lib/dates.properties" propertyName="zh.Dates.${current.month}" outputProperty="month.zh"/>
109 <get-property-value propertiesFile="${rk.home}/shared/core/lib/dates.properties" propertyName="default.Dates.${current.month}" outputProperty="month.default"/>
110 <!--
111 <echo level="info">Current Date</echo>
112 <echo level="info">ar: ${month.ar} ${current.year}</echo>
113 <echo level="info">ca: ${month.el} ${current.year}</echo>
114 <echo level="info">el: ${month.el} ${current.year}</echo>
115 <echo level="info">es: ${month.es} ${current.year}</echo>
116 <echo level="info">fr: ${month.fr} ${current.year}</echo>
117 <echo level="info">lv: ${month.lv} ${current.year}</echo>
118 <echo level="info">mr: ${month.mr} ${current.year}</echo>
119 <echo level="info">ro: ${month.ro} ${current.year}</echo>
120 <echo level="info">ru: ${month.ru} ${current.year}</echo>
121 <echo level="info">vi: ${month.vi} ${current.year}</echo>
122 <echo level="info">zh: ${month.zh} ${current.year}</echo>
123 <echo level="info">default: (${month.default} ${current.year})</echo>
124 -->
125
126 <!-- version number -->
127 <if>
128 <bool>
129 <not><isset property="version"/></not>
130 </bool>
131 <fail>Version number not set.
132Check that the file '${rk.name}-build.properties' exists and defines property 'version'.</fail>
133 </if>
134 <property name="app.version" value="${version}"/>
135
136 <!-- work out rk.os -->
137 <if>
138 <bool>
139 <or>
140 <equals arg1="${rk.os}" arg2="linux"/>
141 <equals arg1="${rk.os}" arg2="mac"/>
142 <equals arg1="${rk.os}" arg2="windows"/>
143 </or>
144 </bool>
145 <echo>Using user-specified value for rk.os: '${rk.os}'</echo>
146
147 <else><if>
148 <bool><equals arg1="${os.name}" arg2="Linux"/></bool>
149 <property name="rk.os" value="linux"/>
150
151 <else><if>
152 <bool><equals arg1="${os.name}" arg2="Mac OS X"/></bool>
153 <property name="rk.os" value="mac"/>
154
155 <else><if>
156 <bool>
157 <or>
158 <equals arg1="${os.name}" arg2="Windows 95"/>
159 <equals arg1="${os.name}" arg2="Windows 98"/>
160 <equals arg1="${os.name}" arg2="Windows 2000"/>
161 <equals arg1="${os.name}" arg2="Windows XP"/>
162 <equals arg1="${os.name}" arg2="Windows NT"/>
163 <equals arg1="${os.name}" arg2="Windows ME"/>
164 <equals arg1="${os.name}" arg2="Windows Vista"/>
165 </or>
166 </bool>
167 <property name="rk.os" value="windows"/>
168
169 <else>
170 <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>
171
172 </else></if></else></if></else></if></else></if>
173
174 <!-- set os.suffix and os.shell -->
175 <if><bool><equals arg1="${rk.os}" arg2="mac"/></bool>
176 <property name="os.suffix" value="MacOS-intel"/>
177 <property name="os.shell" value="darwin"/>
178 </if>
179 <property name="os.suffix" value="${rk.os}"/>
180 <property name="os.shell" value="${rk.os}"/>
181
182 <!-- show important properties -->
183 <echo level="info">Version (version): ${version}</echo>
184 <echo level="info">Major Version (version.major): ${version.major}</echo>
185 <echo level="info">Branch Path (branch.path): ${branch.path}</echo>
186 <echo level="info">Date (date): ${date}</echo>
187 <echo level="info">Current Month (current.month): ${current.month}</echo>
188 <echo level="info">Current Year (current.year): ${current.year}</echo>
189 <echo level="info">Operating System (rk.os): ${rk.os}</echo>
190 <echo level="info">Operating System Suffix (os.suffix): ${os.suffix}</echo>
191
192 </target>
193
194 <target name="strip-svn-dirs">
195 <delete includeemptydirs="true">
196 <fileset dir="${dir}" defaultexcludes="false">
197 <include name="**/.svn/**" />
198 <include name="**/.svn/" />
199 <include name=".svn/**" />
200 <include name=".svn/" />
201 </fileset>
202 </delete>
203 </target>
204
205 <target name="compile-binary-installer">
206
207 <copy file="installer/antinstall-config.xml" tofile="installer/antinstall-config-binary.xml" overwrite="true"/>
208 <dcff file="installer/antinstall-config-binary.xml" startTag=".*&lt;!-- start cdrom --&gt;.*" endTag=".*&lt;!-- end cdrom --&gt;.*" />
209
210 <copy file="installer/build.xml" tofile="installer/build-binary.xml" overwrite="true"/>
211 <dcff file="installer/build-binary.xml" startTag=".*&lt;!-- start cdrom --&gt;.*" endTag=".*&lt;!-- end cdrom --&gt;.*" />
212
213 <installer file="installer/Greenstone-${version}-${os.suffix}.jar"
214 compress="true"
215 extractType="NonExtractor"
216 installConfig="installer/antinstall-config-binary.xml"
217 buildFile="installer/build-binary.xml"
218 antInstallLib="${rk.home}/shared/core/ant-installer/lib"
219 antLib="${ant.home}/lib"
220 validateConfig="true"
221 icons="bluecurve">
222
223 <zipfileset dir="installer/classes" includes="**/*" />
224 <zipfileset dir="components" includes="*.lzma"/>
225
226 </installer>
227
228 </target>
229
230 <target name="compile-cdrom-installer">
231
232 <copy file="installer/antinstall-config.xml" tofile="installer/antinstall-config-cdrom.xml"/>
233 <dcff file="installer/antinstall-config-cdrom.xml" startTag=".*&lt;!-- start web --&gt;.*" endTag=".*&lt;!-- end web --&gt;.*" />
234
235 <copy file="installer/build.xml" tofile="installer/build-cdrom.xml"/>
236 <dcff file="installer/build-cdrom.xml" startTag=".*&lt;!-- start web --&gt;.*" endTag=".*&lt;!-- end web --&gt;.*" />
237
238 <installer file="installer/cdrom.jar"
239 compress="true"
240 extractType="NonExtractor"
241 installConfig="installer/antinstall-config-cdrom.xml"
242 buildFile="installer/build-cdrom.xml"
243 antInstallLib="${rk.home}/shared/core/ant-installer/lib"
244 antLib="${ant.home}/lib"
245 validateConfig="true"
246 icons="bluecurve">
247 <zipfileset dir="installer/classes" includes="**/*" />
248 </installer>
249
250 </target>
251
252 <target name="copy-main-installer-files">
253
254 <mkdir dir="${basedir}/installer/classes"/>
255
256 <!-- the language bundle -->
257 <native2ascii
258 implementation="sun"
259 encoding="UTF-8"
260 src="${rk.home}/shared/core/language-strings"
261 dest="${basedir}/installer/classes/resources"/>
262
263 <!-- other installer classes -->
264 <copy todir="${basedir}/installer/classes" overwrite="true">
265 <fileset dir="${rk.home}/kits/rk${version.major}/installer-classes" erroronmissingdir="false"/>
266 <fileset dir="${rk.home}/shared/${rk.os}/installer-classes" erroronmissingdir="false"/>
267 </copy>
268
269 </target>
270
271 <target name="make-installer-files-concrete">
272
273 <!-- calculate the size of components -->
274 <echo>Calculating the size of some components</echo>
275
276 <!-- core -->
277 <length property="component.bytesize.core-without-jre" mode="all"><fileset file="${basedir}/components/core.comp"/></length>
278 <if><bool><equals arg1="${rk.os}" arg2="windows"/></bool>
279 <math result="component.bytesize.core" operand1="${component.bytesize.core-without-jre}" operation="+" operand2="${component.bytesize.windows-java}" datatype="int"/>
280 <else><if><bool><equals arg1="${rk.os}" arg2="linux"/></bool>
281 <math result="component.bytesize.core" operand1="${component.bytesize.core-without-jre}" operation="+" operand2="${component.bytesize.linux-java}" datatype="int"/>
282 <else>
283 <property name="component.bytesize.core" value="${component.bytesize.core-without-jre}"/>
284 </else></if></else></if>
285 <math result="component.megabytesize.core" operand1="${component.bytesize.core}" operation="/" operand2="1048576" datatype="int"/>
286 <property name="component.size.core" value="${component.megabytesize.core} MB"/>
287
288 <!-- imagemagick -->
289 <length property="component.bytesize.imagemagick" mode="all"><fileset file="${basedir}/components/imagemagick.comp"/></length>
290 <math result="component.megabytesize.imagemagick" operand1="${component.bytesize.imagemagick}" operation="/" operand2="1048576" datatype="int"/>
291 <property name="component.size.imagemagick" value="${component.megabytesize.imagemagick} MB"/>
292
293 <!-- ghostscript -->
294 <length property="component.bytesize.ghostscript" mode="all"><fileset file="${basedir}/components/ghostscript.comp"/></length>
295 <math result="component.megabytesize.ghostscript" operand1="${component.bytesize.ghostscript}" operation="/" operand2="1048576" datatype="int"/>
296 <property name="component.size.ghostscript" value="${component.megabytesize.ghostscript} MB"/>
297
298 <!-- tomcat -->
299 <length property="component.bytesize.tomcat" mode="all"><fileset file="${basedir}/components/tomcat.comp"/></length>
300 <math result="component.megabytesize.tomcat" operand1="${component.bytesize.tomcat}" operation="/" operand2="1048576" datatype="int"/>
301 <property name="component.size.tomcat" value="${component.megabytesize.tomcat} MB"/>
302
303 <!-- make the installer descriptors relevant to the current os -->
304 <dcff file="installer/antinstall-config.xml" startTag="&lt;!--\s*if\s*(?!.*${rk.os})[^ ]+\s*--&gt;" endTag="&lt;!--\s*/if\s*--&gt;" />
305 <dcff file="installer/build.xml" startTag="&lt;!--\s*if\s*(?!.*${rk.os})[^ ]+\s*--&gt;" endTag="&lt;!--\s*/if\s*--&gt;" />
306
307 <!-- put the concrete values of things in the config -->
308 <rsr>
309 <fileset dir="${basedir}/installer" includes="*.xml"/>
310 <job pattern="@version@" replacement="${version}"/>
311 <job pattern="@component.size.core@" replacement="${component.size.core}"/>
312 <job pattern="@component.size.tomcat@" replacement="${component.size.tomcat}"/>
313 <job pattern="@component.size.imagemagick@" replacement="${component.size.imagemagick}"/>
314 <job pattern="@component.size.ghostscript@" replacement="${component.size.ghostscript}"/>
315 <job pattern="@java.min.version@" replacement="${java.min.version}"/>
316 <job pattern="@java.extracted@" replacement="${java.extracted}"/>
317 </rsr>
318
319 <!-- put the concrete values of things in the text -->
320 <rsr>
321 <fileset dir="${basedir}/installer/classes/resources" includes="*.properties"/>
322 <job pattern="@version@" replacement="${version}"/>
323 <job pattern="@version.major@" replacement="${version.major}"/>
324 <job pattern="@java.min.version@" replacement="${java.min.version}"/>
325 <job pattern="@bundled.version.imagemagick@" replacement="${bundled.version.imagemagick}"/>
326 <job pattern="@bundled.version.ghostscript@" replacement="${bundled.version.ghostscript}"/>
327 <job pattern="@bundled.version.tomcat@" replacement="${bundled.version.tomcat}"/>
328 <job pattern="@bundled.version.windows-java@" replacement="${bundled.version.windows-java}"/>
329 <job pattern="@bundled.version.linux-java@" replacement="${bundled.version.linux-java}"/>
330 </rsr>
331
332 </target>
333
334 <!-- shared target to compile the uninstaller -->
335 <target name="compile-uninstaller">
336 <echo>Compiling Uninstaller</echo>
337
338 <!-- create working build directory -->
339 <mkdir dir="${basedir}/compiled/uninstaller/build/resources" />
340
341 <!-- copile to build -->
342 <javac
343 srcdir="${rk.home}/shared/core/uninstaller"
344 destdir="${basedir}/compiled/uninstaller/build" />
345
346 <!-- copy language bundle into place -->
347 <native2ascii
348 implementation="sun"
349 src="${rk.home}/shared/core/language-strings"
350 dest="${basedir}/compiled/uninstaller/build/resources"/>
351
352 <!-- jar it all up -->
353 <jar
354 destfile="${basedir}/compiled/uninst.jar"
355 manifest="${rk.home}/shared/core/uninstaller/manifest.mf"
356 basedir="${basedir}/compiled/uninstaller/build" />
357
358 </target>
359
360 <!-- copy the uninstaller script from the rk to web distribution -->
361 <target name="insert-uninstaller">
362
363 <!-- linux and mac -->
364 <if><bool><or><equals arg1="${rk.os}" arg2="linux"/><equals arg1="${rk.os}" arg2="mac"/></or></bool>
365 <copy file="${rk.home}/shared/core/uninstaller/Uninstall.sh" todir="distributions/web"/>
366
367 <!-- windows -->
368 <else><if><bool><equals arg1="${rk.os}" arg2="windows"/></bool>
369 <copy file="${rk.home}/shared/core/uninstaller/Uninstall.bat" todir="distributions/web"/>
370
371 <!-- else fail -->
372 <else>
373 <fail>this target does not support the current os</fail>
374
375 </else></if></else></if>
376 </target>
377
378 <!-- unzip windows perl into bin/windows of the given gsdl or gs2build -->
379 <target name="insert-windows-perl">
380 <mkdir dir="${todir}"/>
381 <delete dir="${todir}/perl"/>
382 <unzip src="${rk.home}/shared/windows/perl.zip" dest="${todir}"/>
383 </target>
384
385 <target name="copy-compiled-to-dist">
386
387 <!-- windows -->
388 <if><bool><equals arg1="${rk.os}" arg2="windows"/></bool>
389 <delete dir="distributions/web"/>
390 <mkdir dir="distributions"/>
391 <copy todir="distributions/web">
392 <fileset dir="compiled" includes="**/*"/>
393 </copy>
394
395 <!-- linux, mac -->
396 <else><if><bool><or><equals arg1="${rk.os}" arg2="linux"/><equals arg1="${rk.os}" arg2="mac"/></or></bool>
397 <delete dir="distributions/web"/>
398 <mkdir dir="distributions"/>
399 <if><bool><equals arg1="${rk.os}" arg2="mac"/></bool>
400 <exec executable="cp" failonerror="true"><arg line="-R compiled distributions/web"/></exec>
401 <else>
402 <exec executable="cp" failonerror="true"><arg line="-r compiled distributions/web"/></exec>
403 </else></if>
404
405 <!-- else fail -->
406 <else>
407 <fail>this target does not support the current os</fail>
408
409 </else></if></else></if>
410
411 </target>
412
413 <target name="gsdl-set-version-numbers">
414
415 <if><bool><available file="${gsdl.basedir}/common-src/src/lib/gsdlconf.h"/></bool>
416 <echo level="info">Setting version in common-src/src/lib/gsdlconf.h</echo>
417 <rsr file="${gsdl.basedir}/common-src/src/lib/gsdlconf.h" pattern="(#define GSDL_VERSION) &quot;.*&quot;" replacement="$1 &quot;${version}&quot;" />
418 <else>
419 <echo message="skipping gsdlconf.h"/>
420 </else></if>
421
422 <if><bool><available file="${gsdl.basedir}/etc/VERSION"/></bool>
423 <echo level="info">Setting version in etc/VERSION</echo>
424 <rsr file="${gsdl.basedir}/etc/VERSION" pattern="(gsdl version: ).*" replacement="$1${version}" />
425 <else>
426 <echo message="skipping VERSION"/>
427 </else></if>
428
429 <if><bool><available file="${gsdl.basedir}/lib/java/server.properties"/></bool>
430 <echo level="info">Setting version in server.properties</echo>
431 <rsr file="${gsdl.basedir}/lib/java/server.properties" pattern="^(Server2Control.Version[:=]).*" replacement="$1${version}" />
432 <else>
433 <echo message="skipping server.properties"/>
434 </else></if>
435
436 <if><bool><available file="${gsdl.basedir}/lib/java/log4j.properties.in"/></bool>
437 <echo level="info">Sneakily changing some log4j stuff</echo>
438 <rsr file="${gsdl.basedir}/lib/java/log4j.properties.in" pattern="^(log4j.category.org.greenstone.server[:=].*)INFO(.*)" replacement="$1WARN$2" />
439 <else>
440 <echo message="skipping log4j.properties.in"/>
441 </else></if>
442
443 <antcall target="gsdl-set-dates-in-readmes"><param name="gsdl.basedir" value="${gsdl.basedir}"/></antcall>
444
445 </target>
446
447 <target name="gsdl-set-dates-in-readmes">
448 <echo level="info">Changing date and version in the docs</echo>
449
450 <!-- en -->
451 <if><bool><available file="${gsdl.basedir}/READMEen.txt"/></bool>
452 <rsr file="${gsdl.basedir}/READMEen.txt">
453 <job pattern="^(Date\s*)(.*)" replacement="$1${month.default} ${current.year}" />
454 <job pattern="^(Version\s*)(.*)" replacement="$1${version}" />
455 </rsr>
456 </if>
457
458 <!-- ar -->
459 <if><bool><available file="${gsdl.basedir}/READMEar.txt"/></bool>
460 <rsr file="${gsdl.basedir}/READMEar.txt">
461 <job pattern="(التاريخ : \s*)(.*)" replacement="$1${month.ar} ${current.year}"/>
462 <job pattern="(النسخه : \s*)(.*)" replacement="$1${version}"/>
463 </rsr>
464 </if>
465
466 <!-- es -->
467 <if><bool><available file="${gsdl.basedir}/READMEes.txt"/></bool>
468 <rsr file="${gsdl.basedir}/READMEes.txt">
469 <job pattern="^(Fecha\s*)(.*)" replacement="$1${month.es} de ${current.year}"/>
470 <job pattern="^(Versi.?n\s*)(.*)" replacement="$1${version}"/>
471 </rsr>
472 </if>
473
474 <!-- fr -->
475 <if><bool><available file="${gsdl.basedir}/READMEfr.txt"/></bool>
476 <rsr file="${gsdl.basedir}/READMEfr.txt">
477 <job pattern="^(Date\s*)(.*)" replacement="$1${month.fr} ${current.year}"/>
478 <job pattern="^(Version\s*)(.*)" replacement="$1${version}"/>
479 </rsr>
480 </if>
481
482 <!-- ru -->
483 <if><bool><available file="${gsdl.basedir}/READMEru.txt"/></bool>
484 <rsr file="${gsdl.basedir}/READMEru.txt">
485 <job pattern="^(Дата\s*)(.*)" replacement="$1${month.ru} ${current.year}"/>
486 <job pattern="^(ВерсОя\s*)(.*)" replacement="$1${version}"/>
487 </rsr>
488 </if>
489
490 </target>
491
492 <!-- prepare the component named in ${component} -->
493 <target name="prepare-component">
494 <mkdir dir="components"/>
495 <zip destfile="components/${component}.comp" compress="false">
496 <zipfileset dir="distributions/web">
497 <patternset refid="greenstone${version.major}.${component}.component"/>
498 </zipfileset>
499 </zip>
500 </target>
501
502 <!-- compress the component named in ${component} -->
503 <target name="compress-component">
504 <!-- windows -->
505 <if><bool><equals arg1="${rk.os}" arg2="windows"/></bool>
506 <exec executable="${rk.home}/shared/windows/7za/7za.exe" dir="components"><arg line="a -t7z -mx=9 ${component}.lzma ${component}.comp"/></exec>
507
508 <!-- linux, mac -->
509 <else><if><bool><or><equals arg1="${rk.os}" arg2="linux"/><equals arg1="${rk.os}" arg2="mac"/></or></bool>
510 <sevenzip task="encode" input="components/${component}.comp" output="components/${component}.lzma" dictionnary="26"/>
511
512 <!-- else warn -->
513 <else>
514 <fail>this target does not support this os (was a new release-kit os added?)</fail>
515
516 </else></if></else></if>
517 </target>
518
519
520 <target name="create-minimal-distribution">
521
522 <property name="dist.name" value="Greenstone-${version}-${os.suffix}-minimal"/>
523
524 <!-- unzip the core component to a temporary space -->
525 <mkdir dir="minimal-dist/${dist.name}"/>
526 <unzip src="components/core.comp" dest="minimal-dist/${dist.name}"/>
527
528 <!-- under windows, create zip-->
529 <if><bool><equals arg1="${rk.os}" arg2="windows"/></bool>
530 <zip destfile="products/${dist.name}.zip" basedir="minimal-dist"/>
531
532 <!-- under unix, create tar.gz -->
533 <else><if><bool><or><equals arg1="${rk.os}" arg2="linux"/><equals arg1="${rk.os}" arg2="mac"/></or></bool>
534 <exec dir="." executable="tar">
535 <arg value="-czf"/><arg value="products/${dist.name}.tar.gz"/>
536 <arg value="minimal-dist"/>
537 </exec>
538
539 </if></else></if>
540
541 </target>
542
543
544</project>
Note: See TracBrowser for help on using the repository browser.