source: main/trunk/release-kits/kits/rk2/installer/build.xml@ 22325

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

Several upgrades to the release kits have been made including: optional Apache and the ability to create installers with extensions

File size: 13.6 KB
Line 
1<?xml version="1.0"?>
2<!--
3This is the build.xml run by AntInstaller for the installer
4-->
5
6<project name="Installation">
7
8 <!-- this is required to pick up the properties generated during the install pages -->
9 <property file="${basedir}/ant.install.properties"/>
10
11 <!-- set some properties to keep track of the OS -->
12 <!-- if windows -->
13 <property name="rk.os" value="windows"/>
14 <property name="shell.name" value="windows"/>
15 <!-- /if -->
16 <!-- if linux -->
17 <property name="rk.os" value="linux"/>
18 <property name="shell.name" value="linux"/>
19 <!-- /if -->
20 <!-- if mac -->
21 <property name="rk.os" value="mac"/>
22 <property name="shell.name" value="darwin"/>
23 <!-- /if -->
24
25 <!-- classpath -->
26 <path id="project.classpath">
27 <pathelement path="${antinstaller.jar}"/>
28 </path>
29
30 <!-- custom tasks -->
31 <taskdef name="if" classname="ise.antelope.tasks.IfTask" classpathref="project.classpath"/>
32 <typedef name="rsr" classname="org.greenstone.anttasks.RegexSearchReplace" classpathref="project.classpath"/>
33 <typedef name="adduser" classname="org.greenstone.anttasks.AddGreenstoneUserToDatabase" classpathref="project.classpath"/>
34 <!-- if windows -->
35 <taskdef name="shortcut" classname="com.orangevolt.tools.ant.Win32ShortcutTask" classpathref="project.classpath"/>
36 <taskdef name="winprops" classname="com.orangevolt.tools.ant.Win32PropertiesTask" classpathref="project.classpath"/>
37 <typedef name="getfreepath" classname="org.greenstone.anttasks.GetFreePath" classpathref="project.classpath"/>
38 <!-- /if -->
39 <!-- if linux|mac -->
40 <taskdef name="sevenzip" classname="org.apache.tools.ant.SevenZip" classpathref="project.classpath"/>
41 <!-- /if -->
42
43 <!-- determine if a bundled java exists -->
44 <condition property="bundled.java.exists">
45 <or>
46 <available file="../@java.extracted@/bin/java"/>
47 <available file="../@java.extracted@/bin/java.exe"/>
48 </or>
49 </condition>
50
51 <!-- determine if there is an existing installation in the installDir-->
52 <available file="${installDir}\etc\installation.properties" property="is.overinstall"/>
53
54 <!-- create a local installDir String -->
55 <path id="installDir.path"><pathelement location="${installDir}"/></path>
56 <property name="installDir.local" refid="installDir.path"/>
57
58 <!-- if windows -->
59 <!-- load windows properties -->
60 <winprops/>
61 <!-- /if -->
62
63 <!-- load the properties of the previous installation if this is an overinstall -->
64 <target name="Looking For Previous Installation" if="is.overinstall">
65 <property file="${installDir}\etc\installation.properties"/>
66 <delete dir="${installed.startmenu.path}" failonerror="false"/>
67 </target>
68
69 <!-- copy jre -->
70 <target name="Initialising" if="bundled.java.exists">
71 <mkdir dir="${installDir}/packages"/>
72 <copy todir="${installDir}/packages/jre" failonerror="false">
73 <fileset dir="../@java.extracted@"/>
74 </copy>
75 <chmod dir="${installDir}/packages/jre/bin" includes="*" perm="775"/>
76 </target>
77
78 <!-- core system -->
79 <target name="Installing Core System">
80
81 <!-- if windows -->
82 <!-- figure out the start menu path -->
83 <getfreepath path="${win32.personal.programs_menu}\Greenstone-@version@" property="startmenu.path"/>
84 <path id="startmenu.path.path" path="${startmenu.path}"/>
85 <pathconvert targetos="unix" property="startmenu.path.unix" refid="startmenu.path.path"/>
86
87 <!-- extract 7za tool -->
88 <unzip src="${antinstaller.jar}" dest="${basedir}">
89 <patternset><include name="7za.exe"/></patternset>
90 </unzip>
91 <!-- /if -->
92
93 <!-- start web -->
94 <unzip src="${antinstaller.jar}" dest="${basedir}"><patternset><include name="core.lzma"/></patternset></unzip>
95 <!-- if linux|mac --><sevenzip task="decode" input="${basedir}/core.lzma" output="${basedir}/core.comp"/><!-- /if -->
96 <!-- if windows --><exec dir="${basedir}" executable="${basedir}/7za.exe"><arg line="x core.lzma"/></exec><!-- /if -->
97 <delete file="core.lzma"/>
98 <unzip src="${basedir}/core.comp" dest="${installDir}"/>
99 <delete file="core.comp"/>
100 <!-- end web -->
101
102 <!-- start cdrom -->
103 <copy todir="${installDir}">
104 <fileset dir="${orig.dir}/Software/core/all"/>
105 <fileset dir="${orig.dir}/Software/core/${rk.os}"/><!-- /if -->
106 </copy>
107 <!-- if windows -->
108 <copy todir="${installDir}/packages/jre" failonerror="false">
109 <fileset dir="${orig.dir}/Java/Windows/jre"/>
110 </copy>
111 <!-- /if -->
112 <!-- end cdrom -->
113
114 <echo>Setting Binaries to Executable</echo>
115 <chmod dir="${installDir}" includes="*.sh,*.bash" perm="775"/>
116 <chmod dir="${installDir}/bin" includes="*" perm="775"/>
117 <chmod dir="${installDir}/cgi-bin" includes="*" perm="775"/>
118 <chmod dir="${installDir}/bin/script" includes="**/*" perm="775"/>
119 <chmod dir="${installDir}/gli" includes="*.sh" perm="775"/>
120 <!-- if linux|mac -->
121 <chmod dir="${installDir}/bin/${shell.name}" includes="**/*" perm="775"/>
122 <!-- /if -->
123
124 <echo>Filling in concrete values in config files</echo>
125 <copy file="${installDir}/cgi-bin/gsdlsite.cfg.in" tofile="${installDir}/cgi-bin/gsdlsite.cfg"/>
126 <rsr file="${installDir}/cgi-bin/gsdlsite.cfg" pattern="&quot;?\*\*GSDLHOME\*\*&quot;?" replacement="&quot;${installDir.local}&quot;"/>
127
128 <echo>Correcting perl shebangs in perl scripts</echo>
129 <!-- if linux|mac -->
130 <exec executable="which" outputproperty="perl.executable"><arg value="perl"/></exec>
131 <rsr file="${installDir}/cgi-bin/gliserver.pl" pattern="^#!.*" replacement="#!${perl.executable} -w" lines="1"/>
132 <!-- /if -->
133 <!-- if windows -->
134 <property name="perl.executable" value="${installDir.local}\bin\windows\perl\bin\perl.exe"/>
135 <rsr file="${installDir}/cgi-bin/gliserver.pl" pattern="^#!.*" replacement="#!${perl.executable} -w" lines="1"/>
136 <!-- /if -->
137
138 <echo>Creating the english dictionary</echo>
139 <copy file="${installDir}/gli/classes/dictionary.properties" tofile="${installDir}/gli/classes/dictionary_en.properties"/>
140
141 <!-- if linux|mac -->
142 <echo>Set the installation locale in config files</echo>
143 <rsr file="${installDir}/setup.bash" pattern="^gsdllang=.*" replacement="gsdllang=${language}"/>
144 <rsr file="${installDir}/gli/gli.sh" pattern="^glilang=.*" replacement="glilang=${language}"/>
145 <rsr file="${installDir}/gli/gems.sh" pattern="^glilang=.*" replacement="glilang=${language}"/>
146 <!-- /if -->
147 <rsr
148 file="${installDir}/gli/classes/xml/config.xml"
149 pattern="(&lt;Argument name=&quot;general.locale&quot;&gt;).*(&lt;/Argument&gt;)"
150 replacement="$1${language}$2"/>
151
152 <echo file="${installDir}/etc/main.cfg" append="true"
153 >cgiarg shortname=l argdefault=${language}</echo>
154
155 <echo message="Creating installation properties file"/>
156 <!-- if linux|mac -->
157 <echo file="${installDir}/etc/installation.properties">#this file is just a placeholder for now</echo>
158 <!-- /if -->
159 <!-- if windows -->
160 <echo file="${installDir}\etc\installation.properties">installed.startmenu.path:${startmenu.path.unix}</echo>
161 <!-- /if -->
162
163 </target>
164
165 <!-- Apache HTTPD -->
166 <target name="Installing Apache Web Server">
167 <echo>Installing the Apache Web Server</echo>
168
169 <!-- start web -->
170 <unzip src="${antinstaller.jar}" dest="${basedir}">
171 <patternset>
172 <include name="apachehttpd.lzma"/>
173 </patternset>
174 </unzip>
175
176 <!-- if linux|mac -->
177 <sevenzip task="decode" input="${basedir}/apachehttpd.lzma" output="${basedir}/imagemagick.comp"/>
178 <!-- /if -->
179 <!-- if windows -->
180 <exec dir="${basedir}" executable="${basedir}/7za.exe">
181 <arg line="x apachehttpd.lzma"/>
182 </exec>
183 <!-- /if -->
184 <!-- end web -->
185
186 <!-- start cdrom -->
187 <copy todir="${installDir}">
188 <fileset dir="${orig.dir}/Software/apache-httpd"/>
189 </copy>
190 <!-- end cdrom -->
191
192 <!-- if linux|mac -->
193 <chmod dir="${installDir}/apache-httpd/${shell.name}/bin" includes="*" perm="775"/>
194 <chmod dir="${installDir}/apache-httpd/${shell.name}" includes="*.sh" perm="775"/>
195 <echo>Setting up apache web server</echo>
196 <exec dir="${installDir}" executable="${installDir}/apache-httpd/${shell.name}/install-bindist.sh">
197 <arg value="${installDir}/apache-httpd/${shell.name}"/>
198 </exec>
199 <!-- /if -->
200 </target>
201
202 <!-- ImageMagick -->
203 <target name="Installing ImageMagick">
204 <echo>Installing ImageMagick</echo>
205 <!-- start web -->
206 <unzip src="${antinstaller.jar}" dest="${basedir}"><patternset><include name="imagemagick.lzma"/></patternset></unzip>
207 <!-- if linux|mac --><sevenzip task="decode" input="${basedir}/imagemagick.lzma" output="${basedir}/imagemagick.comp"/><!-- /if -->
208 <!-- if windows --><exec dir="${basedir}" executable="${basedir}/7za.exe"><arg line="x imagemagick.lzma"/></exec><!-- /if -->
209 <delete file="imagemagick.lzma"/>
210 <unzip src="${basedir}/imagemagick.comp" dest="${installDir}/bin/${rk.os}"/>
211 <delete file="imagemagick.comp"/>
212 <!-- end web -->
213
214 <!-- start cdrom -->
215 <copy todir="${installDir}/bin/${shell.name}">
216 <fileset dir="${orig.dir}/Software/imagemagick/${rk.os}"/>
217 </copy>
218 <!-- end cdrom -->
219
220 <chmod dir="${installDir}/bin/${shell.name}/imagemagick/bin" includes="*" perm="775"/>
221
222 </target>
223
224 <!-- Ghostscript -->
225 <target name="Installing Ghostscript" depends="">
226 <echo message="Installing Ghostscript"/>
227 <!-- start web -->
228 <unzip src="${antinstaller.jar}" dest="${basedir}"><patternset><include name="ghostscript.lzma"/></patternset></unzip>
229 <!-- if linux|mac --><sevenzip task="decode" input="${basedir}/ghostscript.lzma" output="${basedir}/ghostscript.comp"/><!-- /if -->
230 <!-- if windows --><exec dir="${basedir}" executable="${basedir}/7za.exe"><arg line="x ghostscript.lzma"/></exec><!-- /if -->
231 <delete file="ghostscript.lzma"/>
232 <unzip src="${basedir}/ghostscript.comp" dest="${installDir}/bin/${rk.os}" />
233 <delete file="ghostscript.comp"/>
234 <!-- end web -->
235
236 <!-- start cdrom -->
237 <copy todir="${installDir}/bin/${shell.name}">
238 <fileset dir="${orig.dir}/Software/ghostscript/${rk.os}"/>
239 </copy>
240 <!-- end cdrom -->
241
242 <chmod dir="${installDir}/bin/${shell.name}/ghostscript/bin" includes="*" perm="775"/>
243 </target>
244
245 <!-- Start menu shortcuts -->
246 <target name="Installing Start Menu Shortcuts">
247
248 <mkdir dir="${startmenu.path}\Documentation"/>
249
250 <if>
251 <bool>
252 <available file="${installDir}/web/images/server.ico"/>
253 </bool>
254
255 <shortcut
256 file="${startmenu.path}\Greenstone Server.lnk"
257 execute="${installDir}\server.exe"
258 workingDirectory="${installDir}"
259 iconFile="${installDir}\web\images\server.ico"
260 iconIndex="0" />
261
262 <else>
263 <shortcut
264 file="${startmenu.path}\Greenstone Server.lnk"
265 execute="${installDir}\server.exe"
266 workingDirectory="${installDir}"
267 iconFile="${installDir}\web\images\serverico.ico"
268 iconIndex="0" />
269 </else>
270 </if>
271
272 <if>
273 <bool>
274 <available file="${installDir}/web/images/librarian.ico"/>
275 </bool>
276
277 <shortcut
278 file="${startmenu.path}\Librarian Interface (GLI).lnk"
279 execute="${installDir}\gli\gli.bat"
280 workingDirectory="${installDir}\gli"
281 iconFile="${installDir}\web\images\librarian.ico"
282 iconIndex="0" />
283
284 <shortcut
285 file="${startmenu.path}\Librarian Interface for Remote Server (Client GLI).lnk"
286 execute="${installDir}\gli\client-gli.bat"
287 workingDirectory="${installDir}\gli"
288 iconFile="${installDir}\web\images\librarian.ico"
289 iconIndex="0" />
290
291 <else>
292 <shortcut
293 file="${startmenu.path}\Librarian Interface (GLI).lnk"
294 execute="${installDir}\gli\gli.bat"
295 workingDirectory="${installDir}\gli"
296 iconFile="${installDir}\web\images\icon.ico"
297 iconIndex="0" />
298
299 <shortcut
300 file="${startmenu.path}\Librarian Interface for Remote Server (Client GLI).lnk"
301 execute="${installDir}\gli\client-gli.bat"
302 workingDirectory="${installDir}\gli"
303 iconFile="${installDir}\web\images\icon.ico"
304 iconIndex="0" />
305 </else>
306 </if>
307
308 <if>
309 <bool>
310 <available file="${installDir}/web/images/metadata.ico"/>
311 </bool>
312
313 <shortcut
314 file="${startmenu.path}\Metadata Set Editor (GEMS).lnk"
315 execute="${installDir}\gli\gems.bat"
316 workingDirectory="${installDir}\gli"
317 iconFile="${installDir}\web\images\metadata.ico"
318 iconIndex="0" />
319
320 <else>
321 <shortcut
322 file="${startmenu.path}\Metadata Set Editor (GEMS).lnk"
323 execute="${installDir}\gli\gems.bat"
324 workingDirectory="${installDir}\gli"
325 iconFile="${installDir}\web\images\gems.ico"
326 iconIndex="0" />
327 </else>
328 </if>
329
330 <shortcut
331 file="${startmenu.path}\Uninstall.lnk"
332 execute="${installDir}\Uninstall.bat"
333 workingDirectory="${installDir}"
334 iconFile="${installDir}\web\images\uninstall.ico"
335 iconIndex="0" />
336
337 <shortcut
338 file="${startmenu.path}\Documentation\READMEen.lnk"
339 execute="${installDir}\READMEen.txt" />
340
341 <shortcut
342 file="${startmenu.path}\Documentation\Greenstone Wiki.url"
343 url="http://wiki.greenstone.org" />
344
345 <shortcut
346 file="${startmenu.path}\Documentation\Greenstone Website.url"
347 url="http://www.greenstone.org" />
348
349 </target>
350
351 <target name="Configuring Administration Pages" if="enable.admin.pages">
352 <echo>Enabling Admin Pages</echo>
353 <rsr file="${installDir}/etc/main.cfg" pattern="^\s*status\s+.*" replacement="status enabled"/>
354 <echo>Creating admin and demo users</echo>
355 <adduser txt2db="${installDir}/bin/${shell.name}/txt2db"
356 usersDb="${installDir}/etc/users.gdb"
357 username="admin"
358 password="${admin.password}"
359 groups="administrator,colbuilder,all-collections-editor"
360 comment="created at install time"/>
361 <adduser
362 txt2db="${installDir}/bin/${shell.name}/txt2db"
363 usersDb="${installDir}/etc/users.gdb"
364 username="demo"
365 password="demo"
366 groups="demo"
367 comment="Dummy 'demo' user with password 'demo' for authen-e collection"/>
368 </target>
369
370 <target name="Installing Documented Examples">
371 <copy todir="${installDir}/collect">
372 <fileset dir="${orig.dir}/Documented Examples" includes="documented-examples/**/*"/>
373 </copy>
374 </target>
375
376</project>
Note: See TracBrowser for help on using the repository browser.