source: main/trunk/release-kits/kits/rk3/installer/build.xml@ 27379

Last change on this file since 27379 was 27379, checked in by ak19, 11 years ago

Release kit needs to set up the mac shortcuts (.app)

File size: 16.8 KB
Line 
1<?xml version="1.0"?>
2<!--
3This is the build.xml run by AntInstaller for the installer
4-->
5<project name="Installation">
6
7 <!-- this is required to pick up the properties generated during the install pages -->
8 <property file="${basedir}/ant.install.properties"/>
9
10 <!-- custom tasks -->
11 <path id="project.classpath"><pathelement path="${antinstaller.jar}"/></path>
12
13 <typedef name="rsr" classname="org.greenstone.anttasks.RegexSearchReplace" classpathref="project.classpath"/>
14 <!--<typedef name="adduser" classname="org.greenstone.anttasks.AddGreenstone3UserToDatabase" classpathref="project.classpath"/>-->
15 <!-- if linux|mac -->
16 <taskdef name="sevenzip" classname="org.apache.tools.ant.SevenZip" classpathref="project.classpath"/>
17 <!-- /if -->
18 <!-- if windows -->
19 <taskdef name="shortcut" classname="com.orangevolt.tools.ant.Win32ShortcutTask" classpathref="project.classpath"/>
20 <taskdef name="winprops" classname="com.orangevolt.tools.ant.Win32PropertiesTask" classpathref="project.classpath"/>
21 <typedef name="getfreepath" classname="org.greenstone.anttasks.GetFreePath" classpathref="project.classpath"/>
22 <!-- /if -->
23
24 <!-- set some properties to keep track of the OS -->
25 <!-- if windows -->
26 <property name="rk.os" value="windows"/>
27 <property name="shell.name" value="windows"/>
28 <!-- /if -->
29 <!-- if linux -->
30 <property name="rk.os" value="linux"/>
31 <property name="shell.name" value="linux"/>
32 <!-- /if -->
33 <!-- if mac -->
34 <property name="rk.os" value="mac"/>
35 <property name="shell.name" value="darwin"/>
36 <!-- /if -->
37
38
39 <!-- create a local and strictly unix installDir String -->
40 <path id="installDir.path"><pathelement location="${installDir}"/></path>
41 <property name="installDir.local" refid="installDir.path"/>
42 <pathconvert targetos="unix" property="installDir.unix" refid="installDir.path"/>
43
44 <!-- if windows -->
45 <!-- load windows properties -->
46 <winprops/>
47 <!-- /if -->
48
49 <!-- work out whether a jre is bundled with this installer -->
50 <available file="../jre/bin" property="bundled.java.exists"/>
51
52 <!-- determine if there is an existing installation in the installDir-->
53 <available file="${installDir}\installation.properties" property="is.overinstall"/>
54
55 <!-- target to copy the bundled jre into place -->
56 <target name="Initialising" if="bundled.java.exists">
57 <mkdir dir="${installDir}"/>
58 <copy todir="${installDir}/packages/jre" failonerror="false">
59 <fileset dir="../jre"/>
60 </copy>
61 <chmod dir="${installDir}/packages/jre/bin" includes="*" perm="775"/>
62 </target>
63
64 <!-- target to load in the messages left by the last installation -->
65 <target name="Looking For Previous Installation" if="is.overinstall">
66 <property file="${installDir}\installation.properties"/>
67 <delete dir="${installed.startmenu.path}" failonerror="false"/>
68 </target>
69
70 <target name="Installing Core System">
71
72 <!-- rip out build.xml to the temp dir so we can fake and <antcall> with <ant> -->
73 <unzip src="${antinstaller.jar}" dest="${basedir}"><patternset><include name="build.xml"/></patternset></unzip>
74
75
76 <!-- if windows -->
77 <echo>Figuring out the start menu path</echo>
78 <getfreepath path="${win32.personal.programs_menu}\Greenstone-@version@" property="startmenu.path"/>
79 <path id="startmenu.path.path" path="${startmenu.path}"/>
80 <pathconvert targetos="unix" property="startmenu.path.unix" refid="startmenu.path.path"/>
81
82 <echo>Extracting 7za tool</echo>
83 <unzip src="${antinstaller.jar}" dest="${basedir}">
84 <patternset><include name="7za.exe"/></patternset>
85 </unzip>
86 <!-- /if -->
87
88 <echo>Extracting core component</echo>
89 <unzip src="${antinstaller.jar}" dest="${basedir}"><patternset><include name="core.lzma"/></patternset></unzip>
90 <!-- if windows --><exec dir="${basedir}" executable="${basedir}/7za.exe"><arg line="x core.lzma"/></exec><!-- /if -->
91 <!-- if linux|mac --><sevenzip task="decode" input="${basedir}/core.lzma" output="${basedir}/core.comp"/><!-- /if -->
92 <delete file="core.lzma"/>
93 <unzip src="${basedir}/core.comp" dest="${installDir}"/>
94 <delete file="core.comp"/>
95
96 <echo>Setting binaries to executable</echo>
97 <chmod dir="${installDir}" includes="*.sh" perm="775"/>
98 <chmod dir="${installDir}/bin/script" includes="*" perm="775"/>
99 <chmod dir="${installDir}/bin" includes="*" perm="775"/>
100 <!-- if linux -->
101 <chmod dir="${installDir}/gs2build/bin/linux" includes="*" perm="775"/>
102 <chmod dir="${installDir}/gs2build/bin/linux/wv/bin" includes="*" perm="775"/>
103 <!-- /if -->
104 <!-- if mac -->
105 <chmod dir="${installDir}/gs2build/bin/darwin" includes="**/*" excludes="ghostscript/** imagemagick/**" perm="775"/>
106 <!-- /if -->
107 <chmod dir="${installDir}/gs2build/bin/script" includes="**/*" perm="775"/>
108 <!-- GLI START -->
109 <chmod dir="${installDir}/gli" includes="*.sh" perm="775"/>
110 <!-- GLI END -->
111
112 <chmod file="${installDir}/packages/ant/bin/ant" perm="775"/>
113 <!--
114 source is not included for now
115 <chmod dir="${installDir}/gs2build" includes="**/configure" perm="775"/>
116 <chmod dir="${installDir}/gs2build/common-src/packages/gdbm/gdbm-1.8.3" includes="mkinstalldirs" perm="775"/>
117 <chmod file="${installDir}/src/packages/javagdbm/configure" perm="775"/>
118 -->
119
120
121 <echo>Correcting perl shebangs in perl scripts</echo>
122 <!-- if linux|mac -->
123 <exec executable="which" outputproperty="perl.executable"><arg value="perl"/></exec>
124 <rsr file="${installDir}/web/WEB-INF/cgi/gliserver.pl" pattern="^#!.*" replacement="#!${perl.executable} -w" lines="1"/>
125 <rsr file="${installDir}/web/WEB-INF/cgi/metadata-server.pl" pattern="^#!.*" replacement="#!${perl.executable} -w" lines="1"/>
126 <!-- /if -->
127 <!-- if windows -->
128 <property name="perl.executable" value="${installDir.local}\gs2build\bin\windows\perl\bin\perl.exe"/>
129 <rsr file="${installDir}/web/WEB-INF/cgi/gliserver.pl" pattern="^#!.*" replacement="#!${perl.executable} -w" lines="1"/>
130 <rsr file="${installDir}/web/WEB-INF/cgi/metadata-server.pl" pattern="^#!.*" replacement="#!${perl.executable} -w" lines="1"/>
131 <!-- /if -->
132
133
134 <echo>Setting tomcat ports</echo>
135 <property name="tomcat.server" value="localhost"/>
136 <property name="tomcat.port" value="8383"/>
137 <property name="tomcat.shutdown.port" value="8305"/>
138 <rsr file="${installDir}/build.properties">
139 <job pattern="^(tomcat\.server[=:]).*" replacement="$1${tomcat.server}" />
140 <job pattern="^(tomcat\.port[=:]).*" replacement="$1${tomcat.port}" />
141 <job pattern="^(tomcat\.shutdown.port[=:]).*" replacement="$1${tomcat.shutdown.port}" />
142 </rsr>
143
144 <echo>Setting up global properties</echo>
145 <copy file="${installDir}/resources/java/global.properties.in" tofile="${installDir}/web/WEB-INF/classes/global.properties" overwrite="true"/>
146 <rsr file="${installDir}/web/WEB-INF/classes/global.properties">
147 <job pattern="^(gsdl3\.home[:=]).*" replacement="$1${installDir.unix}/web" />
148 <job pattern="^(tomcat.server[:=]).*" replacement="$1${tomcat.server}" />
149 <job pattern="^(tomcat\.port[:=]).*" replacement="$1${tomcat.port}" />
150 </rsr>
151
152 <echo>Setting up log4j properties</echo>
153 <copy file="${installDir}/resources/java/log4j.properties.in" tofile="${installDir}/web/WEB-INF/classes/log4j.properties" overwrite="true"/>
154 <rsr file="${installDir}/web/WEB-INF/classes/log4j.properties" pattern="@gsdl3home@" replacement="${installDir.unix}/web" />
155
156 <!-- if windows -->
157 <echo message="Setting GSDLHOME in gs2build\setup.bat"/>
158 <!-- No quotes around GSDLHOME filepath in setup.bat. since the set operations of batchfiles don't want spaces in their assignments, and where quotes are needed in setup.bat, setup.bat handles this itself -->
159 <rsr file="${installDir}/gs2build/setup.bat" pattern="&quot;?\*\*GSDLHOME\*\*&quot;?" replacement="${installDir.local}\gs2build" />
160 <!-- /if -->
161
162 <!-- GLI START -->
163 <echo>Creating the english dictionary</echo>
164 <copy file="${installDir}/gli/classes/dictionary.properties" tofile="${installDir}/gli/classes/dictionary_en.properties"/>
165 <!-- GLI END -->
166
167 <echo>Creating usage.txt</echo>
168 <echo file="${installDir}/gs2build/etc/usage.txt"></echo>
169
170 <echo>Creating installation properties file</echo>
171 <echo file="${installDir}\installation.properties">installed.startmenu.path:${startmenu.path.unix}</echo>
172
173 <echo>Finished</echo>
174
175 </target>
176
177 <target name="Installing ImageMagick">
178
179 <echo>Installing ImageMagick</echo>
180 <unzip src="${antinstaller.jar}" dest="${basedir}"><patternset><include name="imagemagick.lzma"/></patternset></unzip>
181 <!-- if windows --><exec dir="${basedir}" executable="${basedir}/7za.exe"><arg line="x imagemagick.lzma"/></exec><!-- /if -->
182 <!-- if linux|mac --><sevenzip task="decode" input="${basedir}/imagemagick.lzma" output="${basedir}/imagemagick.comp"/><!-- /if -->
183 <delete file="imagemagick.lzma"/>
184 <unzip src="${basedir}/imagemagick.comp" dest="${installDir}"/>
185 <delete file="imagemagick.comp"/>
186
187 <echo>Setting binaries to executable</echo>
188 <!-- if linux -->
189 <chmod dir="${installDir}/gs2build/bin/linux/imagemagick/bin" includes="*" perm="775"/>
190 <!-- /if -->
191 <!-- if mac -->
192 <chmod dir="${installDir}/gs2build/bin/darwin/imagemagick/bin" includes="*" perm="775"/>
193 <!-- /if -->
194
195 </target>
196
197 <!-- NO FLAX START -->
198
199 <target name="Installing Ghostscript">
200
201 <echo>Installing Ghostscript</echo>
202 <unzip src="${antinstaller.jar}" dest="${basedir}"><patternset><include name="ghostscript.lzma"/></patternset></unzip>
203 <!-- if windows --><exec dir="${basedir}" executable="${basedir}/7za.exe"><arg line="x ghostscript.lzma"/></exec><!-- /if -->
204 <!-- if linux|mac --><sevenzip task="decode" input="${basedir}/ghostscript.lzma" output="${basedir}/ghostscript.comp"/><!-- /if -->
205 <delete file="ghostscript.lzma"/>
206 <unzip src="${basedir}/ghostscript.comp" dest="${installDir}"/>
207 <delete file="ghostscript.comp"/>
208
209 <echo>Setting binaries to executable</echo>
210 <!-- if linux -->
211 <chmod dir="${installDir}/gs2build/bin/linux/ghostscript/bin" includes="*" perm="775"/>
212 <!-- /if -->
213 <!-- if mac -->
214 <chmod dir="${installDir}/gs2build/bin/darwin/ghostscript/bin" includes="*" perm="775"/>
215 <!-- /if -->
216
217 </target>
218
219 <!-- NO FLAX END -->
220
221 <!-- start amp -->
222
223 <target name="Installing AMP">
224 <echo>Installing Apache, MySQL and PHP</echo>
225 <unzip src="${antinstaller.jar}" dest="${basedir}"><patternset><include name="amp.lzma"/></patternset></unzip>
226 <!-- if windows --><exec dir="${basedir}" executable="${basedir}/7za.exe"><arg line="x amp.lzma"/></exec><!-- /if -->
227 <!-- if linux|mac --><sevenzip task="decode" input="${basedir}/amp.lzma" output="${basedir}/amp.comp"/><!-- /if -->
228 <delete file="amp.lzma"/>
229 <unzip src="${basedir}/amp.comp" dest="${installDir}/ext/amp"/>
230 <delete file="amp.comp"/>
231
232 <!-- if linux|mac -->
233 <echo>Setting binaries to executable</echo>
234 <chmod dir="${installDir}/ext/amp" includes="*" perm="775"/>
235 <!-- /if -->
236 </target>
237
238 <!-- end amp -->
239
240 <target name="Installing Tomcat">
241
242 <echo>Installing Tomcat (packages/tomcat)</echo>
243 <mkdir dir="packages"/>
244 <unzip src="${antinstaller.jar}" dest="${basedir}"><patternset><include name="tomcat.lzma"/></patternset></unzip>
245 <!-- if windows --><exec dir="${basedir}" executable="${basedir}/7za.exe"><arg line="x tomcat.lzma"/></exec><!-- /if -->
246 <!-- if linux|mac --><sevenzip task="decode" input="${basedir}/tomcat.lzma" output="${basedir}/tomcat.comp"/><!-- /if -->
247 <delete file="tomcat.lzma"/>
248 <unzip src="${basedir}/tomcat.comp" dest="${installDir}"/>
249 <delete file="tomcat.comp"/>
250
251
252 <echo>Changing tomcat ports tomcat's server.xml</echo>
253 <copy file="${installDir}/resources/tomcat/server_tomcat7.xml" tofile="${installDir}/packages/tomcat/conf/server.xml" overwrite="true"/>
254 <rsr file="${installDir}/packages/tomcat/conf/server.xml">
255 <job pattern="@port@" replacement="${tomcat.port}"/>
256 <job pattern="@shutdown-port@" replacement="${tomcat.shutdown.port}"/>
257 </rsr>
258
259 <echo>Copying greenstone3.xml to tomcat directory</echo>
260 <copy file="${installDir}/resources/tomcat/greenstone3.xml" tofile="${installDir}/packages/tomcat/conf/Catalina/localhost/greenstone3.xml" overwrite="true"/>
261 <rsr file="${installDir}/packages/tomcat/conf/Catalina/localhost/greenstone3.xml" pattern="@gsdl3webhome@" replacement="${installDir.local}${file.separator}web" />
262 <rsr file="${installDir}/packages/tomcat/conf/Catalina/localhost/greenstone3.xml" pattern="@privilegedattribute@" replacement="privileged='true'" />
263
264 <!-- FLAX START -->
265 <rsr file="${installDir}/packages/tomcat/conf/Catalina/localhost/greenstone3.xml" pattern="localsite" replacement="flax" />
266 <!-- FLAX END -->
267
268 <echo>Set binaries to executable</echo>
269 <chmod dir="${installDir}/packages/tomcat/bin" includes="*.sh" perm="775"/>
270
271 </target>
272
273 <target name="Installing Start Menu Shortcuts">
274
275 <echo>Installing Start Menu Shortcuts</echo>
276
277 <!-- NO FLAX START -->
278
279 <mkdir dir="${startmenu.path}\Documentation"/>
280
281 <shortcut
282 file="${startmenu.path}\Greenstone3 Server.lnk"
283 execute="${installDir}\gs3-server.bat"
284 workingDirectory="${installDir}"
285 iconFile="${installDir}\resources\images\server.ico"
286 iconIndex="0" />
287
288 <shortcut
289 file="${startmenu.path}\Greenstone Librarian Interface (GLI).lnk"
290 execute="${installDir}\gli\gli.bat"
291 workingDirectory="${installDir}\gli"
292 iconFile="${installDir}\resources\images\librarian.ico"
293 iconIndex="0" />
294
295 <shortcut
296 file="${startmenu.path}\Greenstone Editor for Metadata Sets (GEMS).lnk"
297 execute="${installDir}\gli\gems.bat"
298 workingDirectory="${installDir}\gli"
299 iconFile="${installDir}\resources\images\metadata.ico"
300 iconIndex="0" />
301
302 <shortcut
303 file="${startmenu.path}\Uninstall.lnk"
304 execute="${installDir}\uninstall\Uninstall.bat"
305 workingDirectory="${installDir}"
306 iconFile="${installDir}\resources\images\uninstall.ico"
307 iconIndex="0" />
308
309 <shortcut
310 file="${startmenu.path}\Documentation\README.lnk"
311 execute="${installDir}\README.txt" />
312
313 <shortcut
314 file="${startmenu.path}\Documentation\Greenstone3 Users' Guide.lnk"
315 execute="${installDir}\documentation\manual\manual.pdf" />
316
317 <shortcut
318 file="${startmenu.path}\Documentation\Greenstone2 Users' Guide.lnk"
319 execute="${installDir}\documentation\manual\gs2_user_en.pdf" />
320
321 <shortcut
322 file="${startmenu.path}\Documentation\Greenstone Wiki.url"
323 url="http://wiki.greenstone.org" />
324
325 <shortcut
326 file="${startmenu.path}\Documentation\Greenstone Website.url"
327 url="http://www.greenstone.org" />
328
329 <!-- NO FLAX END -->
330
331 <!-- FLAX START -->
332
333 <shortcut
334 file="${startmenu.path}\Start FLAX Server.lnk"
335 execute="${installDir}\gs3-server.bat"
336 workingDirectory="${installDir}"
337 iconFile="${installDir}\resources\images\server.ico"
338 iconIndex="0" />
339
340 <shortcut
341 file="${startmenu.path}\Uninstall.lnk"
342 execute="${installDir}\uninstall\Uninstall.bat"
343 workingDirectory="${installDir}"
344 iconFile="${installDir}\resources\images\uninstall.ico"
345 iconIndex="0" />
346
347 <!-- FLAX END -->
348 </target>
349
350
351 <target name="Configuring Administration Pages" if="enable.admin.pages">
352 <echo>Enabling Admin Pages</echo>
353 <rsr file="${installDir}/web/sites/localsite/siteConfig.xml" pattern="&lt;!--&lt;serviceRack name='Authentication'/&gt;--&gt;" replacement="&lt;serviceRack name='Authentication'/&gt;"/>
354 <echo>Creating admin user</echo>
355 <!--<echo>Creating admin and demo users</echo>-->
356 <ant dir="${installDir}" antfile="build.xml" target="config-admin" inheritAll="false">
357 <property name="admin.password" value="${admin.password}"/>
358 </ant>
359 <!--<adduser txt2db="org.greenstone.gsdl3.util.ChangePwdUsersDB"
360 usersDb="${installDir}/web/sites/localsite/etc/usersDB"
361 username="admin"
362 password="${admin.password}"
363 groups="administrator,colbuilder,all-collections-editor"
364 comment="created at install time"
365 email=""/>
366 <adduser
367 txt2db="org.greenstone.gsdl3.util.ChangePwdUsersDB"
368 usersDb="${installDir}/web/sites/localsite/etc/usersDB"
369 username="demo"
370 password="demo"
371 groups="demo"
372 comment="Dummy 'demo' user with password 'demo' for authen-e collection"
373 email=""/>-->
374 </target>
375
376 <target name="Installing Mac Shortcuts">
377 <echo>Installing Mac Shortcuts</echo>
378 <ant dir="${installDir}" antfile="build.xml" target="gen-mac-shortcuts" inheritAll="false" />
379 </target>
380
381 <!-- util target to extract the given component -->
382 <!-- pass in ${component.name} as a param -->
383 <!-- unused at this time as causes display errors in installer gui!
384 <target name="extract-component">
385 <!- - extract the component into place - ->
386 <unzip src="${antinstaller.jar}" dest="${basedir}"><patternset><include name="${component.name}.lzma"/></patternset></unzip>
387 <!- - if windows - ->
388 <exec dir="${basedir}" executable="${basedir}/7za.exe"><arg line="x ${component.name}.lzma"/></exec>
389 <!- - /if - ->
390 <!- - if linux|mac - ->
391 <sevenzip task="decode" input="${basedir}/${component.name}.lzma" output="${basedir}/${component.name}.comp"/>
392 <!- - /if - ->
393 <delete file="${component.name}.lzma"/>
394 <unzip src="${basedir}/${component.name}.comp" dest="${installDir}"/>
395 <delete file="${component.name}.comp"/>
396 </target>
397 -->
398
399</project>
Note: See TracBrowser for help on using the repository browser.