source: release-kits/wirk2/installer/build.xml@ 18980

Last change on this file since 18980 was 18980, checked in by oranfry, 15 years ago

create the english gli dictionary at install

File size: 8.7 KB
RevLine 
[15023]1<?xml version="1.0"?>
2<!--
3This is the build.xml run by AntInstaller for the installer
4-->
5
[16087]6<project name="Installation">
[15023]7
[16931]8 <!-- classpath -->
9 <path id="project.classpath"><pathelement path="${antinstaller.jar}"/></path>
[15023]10
11 <!-- custom tasks -->
[16633]12 <taskdef name="shortcut" classname="com.orangevolt.tools.ant.Win32ShortcutTask" classpathref="project.classpath"/>
13 <taskdef name="winprops" classname="com.orangevolt.tools.ant.Win32PropertiesTask" classpathref="project.classpath"/>
[17107]14 <typedef name="rsr" classname="org.greenstone.anttasks.RegexSearchReplace" classpathref="project.classpath"/>
15 <typedef name="getfreepath" classname="org.greenstone.anttasks.GetFreePath" classpathref="project.classpath"/>
16 <typedef name="adduser" classname="org.greenstone.anttasks.AddGreenstoneUserToDatabase" classpathref="project.classpath"/>
[17478]17
[16931]18 <!-- pick up the properties generated during the install pages -->
19 <property file="${basedir}/ant.install.properties"/>
20
21 <!-- determine if there is an existing installation in the installDir-->
22 <available file="${installDir}\etc\installation.properties" property="is.overinstall"/>
[15023]23
[16633]24 <!-- load windows properties -->
25 <winprops/>
[16931]26
27 <!-- create a local installDir String -->
28 <path id="installDir.path"><pathelement location="${installDir}"/></path>
29 <property name="installDir.local" refid="installDir.path"/>
30
[17583]31 <target name="Looking For Previous Installation" if="is.overinstall">
[16931]32 <property file="${installDir}\etc\installation.properties"/>
[17638]33 <delete dir="${installed.startmenu.path}" failonerror="false"/>
[16931]34 </target>
[16087]35
[17583]36 <target name="Installing Core System">
[16087]37
[17652]38 <!-- figure out the start menu path -->
[17125]39 <getfreepath path="${win32.personal.programs_menu}\Greenstone-@version@" property="startmenu.path"/>
[17638]40 <path id="startmenu.path.path" path="${startmenu.path}"/>
41 <pathconvert targetos="unix" property="startmenu.path.unix" refid="startmenu.path.path"/>
42
[15023]43 <echo>basedir: ${basedir}</echo>
44 <echo>installDir: ${installDir}</echo>
45 <echo>antinstaller.jar: ${antinstaller.jar}</echo>
[17125]46 <echo>startmenu.path: ${startmenu.path}</echo>
[16087]47
48 <!-- create the installation directory -->
49 <echo message="Creating Installation directory"/>
[15023]50 <mkdir dir="${installDir}"/>
[17413]51
[17381]52 <!-- extract 7za tool -->
53 <unzip src="${antinstaller.jar}" dest="${basedir}">
54 <patternset><include name="7za.exe"/></patternset>
[15023]55 </unzip>
[17413]56
[17381]57 <!-- install files -->
58 <echo message="Installing Core Component"/>
59 <unzip src="${antinstaller.jar}" dest="${basedir}"><patternset><include name="core.lzma"/></patternset></unzip>
60 <exec dir="${basedir}" executable="${basedir}/7za.exe"><arg line="x core.lzma"/></exec>
[17413]61 <!--<sevenzip task="decode" input="${basedir}/core.lzma" output="${basedir}/core.comp"/>-->
[17381]62 <delete file="core.lzma"/>
63 <unzip src="${basedir}/core.comp" dest="${installDir}"/>
64 <delete file="core.comp"/>
[17444]65
66 <!-- jre -->
67 <mkdir dir="${installDir}/packages"/>
[17583]68 <copy todir="${installDir}/packages/jre" failonerror="false">
[17444]69 <fileset dir="../@windows-java.extracted@"/>
[17470]70 </copy>
[17381]71
[17107]72 <echo message="Creating admin and demo users"/>
[17311]73 <adduser
74 txt2db="${installDir}/bin/windows/txt2db"
[17107]75 usersDb="${installDir}/etc/users.db"
76 username="admin"
77 password="${admin.password}"
78 groups="administrator,colbuilder"
79 comment="created at install time"/>
80 <adduser
[17119]81 txt2db="${installDir}/bin/windows/txt2db"
[17107]82 usersDb="${installDir}/etc/users.db"
83 username="demo"
84 password="demo"
85 groups="demo"
86 comment="Dummy 'demo' user with password 'demo' for authen-e collection"/>
87
[18976]88 <echo>Correcting perl shebangs in perl scripts</echo>
89 <property name="perl.executable" value="${installDir.local}\bin\windows\perl\perl.exe"/>
90 <rsr file="${installDir}/cgi-bin/gliserver.pl" pattern="^#!.*" replacement="#!${perl.executable} -w" lines="1"/>
91
[18980]92 <echo>Creating the english dictionary</echo>
93 <copy file="${installDir}/gli/classes/dictionary.properties" tofile="${installDir}/gli/classes/dictionary_en.properties"/>
94 <echo/>
95
[16948]96 <echo message="Creating installation properties file"/>
[17638]97 <echo file="${installDir}\etc\installation.properties">installed.startmenu.path:${startmenu.path.unix}</echo>
[17125]98
[16087]99 <echo message="Finished"/>
[16633]100
[15023]101 </target>
102
[17583]103 <target name="Installing ImageMagick">
[17381]104 <echo message="Installing ImageMagick"/>
105 <unzip src="${antinstaller.jar}" dest="${basedir}"><patternset><include name="imagemagick.lzma"/></patternset></unzip>
106 <exec dir="${basedir}" executable="${basedir}/7za.exe"><arg line="x imagemagick.lzma"/></exec>
[17413]107 <!--<sevenzip task="decode" input="${basedir}/imagemagick.lzma" output="${basedir}/imagemagick.comp"/>-->
[17381]108 <delete file="imagemagick.lzma"/>
109 <unzip src="${basedir}/imagemagick.comp" dest="${installDir}/bin/windows"/>
110 <delete file="imagemagick.comp"/>
111 </target>
112
[17576]113 <target name="Installing Ghostscript">
[17381]114 <echo message="Installing GhostScript"/>
115 <unzip src="${antinstaller.jar}" dest="${basedir}"><patternset><include name="ghostscript.lzma"/></patternset></unzip>
116 <exec dir="${basedir}" executable="${basedir}/7za.exe"><arg line="x ghostscript.lzma"/></exec>
[17413]117 <!--<sevenzip task="decode" input="${basedir}/ghostscript.lzma" output="${basedir}/ghostscript.comp"/>-->
[17381]118 <delete file="ghostscript.lzma"/>
119 <unzip src="${basedir}/ghostscript.comp" dest="${installDir}/bin/windows"/>
120 <delete file="ghostscript.comp"/>
121 </target>
122
[16633]123 <!-- Start menu shortcuts -->
[17576]124 <target name="Installing Start Menu Shortcuts">
[15023]125
[16917]126 <mkdir dir="${startmenu.path}\Documentation"/>
127
[16633]128 <shortcut
[18059]129 file="${startmenu.path}\Greenstone Server.lnk"
[16774]130 execute="${installDir}\server.exe"
[16633]131 workingDirectory="${installDir}"
[18047]132 iconFile="${installDir}\images\serverico.ico"
[16633]133 iconIndex="0" />
[17814]134
[16633]135 <shortcut
[18047]136 file="${startmenu.path}\Librarian Interface (GLI).lnk"
[16633]137 execute="${installDir}\gli\gli.bat"
138 workingDirectory="${installDir}\gli"
139 iconFile="${installDir}\images\icon.ico"
140 iconIndex="0" />
[17814]141
[16633]142 <shortcut
[18059]143 file="${startmenu.path}\Metadata Set Editor (GEMS).lnk"
[17381]144 execute="${installDir}\gli\gems.bat"
[16633]145 workingDirectory="${installDir}\gli"
[18047]146 iconFile="${installDir}\images\gems.ico"
[16633]147 iconIndex="0" />
[17814]148
[16633]149 <shortcut
[17257]150 file="${startmenu.path}\Uninstall.lnk"
[17436]151 execute="${installDir}\Uninstall.bat"
[17257]152 workingDirectory="${installDir}"
[18047]153 iconFile="${installDir}\images\uninstall.ico"
[17257]154 iconIndex="0" />
[17814]155
[17257]156 <shortcut
[16917]157 file="${startmenu.path}\Documentation\READMEen.lnk"
[16633]158 execute="${installDir}\READMEen.txt" />
[17814]159
[16633]160 <shortcut
[18067]161 file="${startmenu.path}\Documentation\Greenstone Wiki.url"
162 url="http://wiki.greenstone.org" />
163
164 <shortcut
165 file="${startmenu.path}\Documentation\Greenstone Website.url"
166 url="http://www.greenstone.org" />
167
168<!--
169 <shortcut
[16917]170 file="${startmenu.path}\Documentation\READMEes.lnk"
[16633]171 execute="${installDir}\READMEes.txt" />
[17814]172
[16633]173 <shortcut
[16917]174 file="${startmenu.path}\Documentation\READMEar.lnk"
[16633]175 execute="${installDir}\READMEar.txt" />
[17814]176
[16633]177 <shortcut
[16917]178 file="${startmenu.path}\Documentation\READMEfr.lnk"
[16633]179 execute="${installDir}\READMEfr.txt" />
[17814]180
[16633]181 <shortcut
[16917]182 file="${startmenu.path}\Documentation\READMEru.lnk"
[16633]183 execute="${installDir}\READMEru.txt" />
[18067]184 -->
[17814]185
[15023]186 </target>
[16633]187
[17815]188 <target name="Source Release" depends="">
189
190 <!-- create the installation directory -->
191 <echo message="Creating Installation directory"/>
192 <mkdir dir="${installDir}"/>
193
194 <!-- extract 7za tool -->
195 <unzip src="${antinstaller.jar}" dest="${basedir}">
196 <patternset><include name="7za.exe"/></patternset>
197 </unzip>
198
199 <echo>Installing Source Release</echo>
200 <unzip src="${antinstaller.jar}" dest="${basedir}"><patternset><include name="source-release.lzma"/></patternset></unzip>
201 <exec dir="${basedir}" executable="${basedir}/7za.exe"><arg line="x source-release.lzma"/></exec>
202 <delete file="source-release.lzma"/>
203 <unzip src="${basedir}/source-release.comp" dest="${installDir}"/>
204 <delete file="source-release.comp"/>
205
206 <!-- figure out the start menu path -->
207 <getfreepath path="${win32.personal.programs_menu}\Greenstone-@version@" property="startmenu.path"/>
208 <path id="startmenu.path.path" path="${startmenu.path}"/>
209 <pathconvert targetos="unix" property="startmenu.path.unix" refid="startmenu.path.path"/>
210
211 <echo message="Filling in concrete values in config files"/>
212 <rsr file="${installDir}/setup.bat" pattern="\*\*GSDLHOME\*\*" replacement="${installDir}"/>
213 <rsr file="${installDir}/cgi-bin/gsdlsite.cfg">
214 <job pattern="\*\*GSDLHOME\*\*" replacement="${installDir}"/>
215 <job pattern="^(#?httpprefix).*" replacement="$1 /gsdl"/>
216 <job pattern="^(#?httpimg).*" replacement="$1 /gsdl/images"/>
217 </rsr>
218
219 <echo>Create usage.txt</echo>
220 <echo file="${installDir}/etc/usage.txt"></echo>
221
222 <echo message="Creating installation properties file"/>
223 <echo file="${installDir}\etc\installation.properties">installed.startmenu.path:${startmenu.path.unix}</echo>
224
225 <echo message="Finished"/>
226
227 </target>
228
229
[15023]230</project>
Note: See TracBrowser for help on using the repository browser.