source: release-kits/lirk2/installer/build.xml@ 18840

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

changes to get apache into the release and working

File size: 7.1 KB
RevLine 
[14982]1<?xml version="1.0"?>
2<!--
3This is the build.xml run by AntInstaller for the installer
4-->
5
[15205]6<project name="Installation">
[14982]7
8 <!-- this is required to pick up the properties generated during the install pages -->
9 <property file="${basedir}/ant.install.properties"/>
10
11 <path id="project.classpath">
12 <pathelement path="${antinstaller.jar}"/>
13 </path>
14
15 <!-- custom tasks -->
[17107]16 <typedef name="rsr" classname="org.greenstone.anttasks.RegexSearchReplace" classpathref="project.classpath"/>
17 <typedef name="adduser" classname="org.greenstone.anttasks.AddGreenstoneUserToDatabase" classpathref="project.classpath"/>
[17396]18 <taskdef name="sevenzip" classname="org.apache.tools.ant.SevenZip" classpathref="project.classpath"/>
[14982]19
[15142]20 <condition property="bundled.java.exists">
[17396]21 <available file="../@linux-java.extracted@/bin/java"/>
[15142]22 </condition>
23
[17765]24 <target name="Initialising" if="bundled.java.exists">
[17754]25 <mkdir dir="${installDir}"/>
26 <copy todir="${installDir}/packages/jre" failonerror="false">
27 <fileset dir="../@linux-java.extracted@"/>
28 </copy>
29 <chmod dir="${installDir}/packages/jre/bin" includes="*" perm="775"/>
30 </target>
[15142]31
[17576]32 <!-- core system -->
[17764]33 <target name="Installing Core System">
[14982]34
35 <mkdir dir="${installDir}"/>
36
[17152]37 <echo>Installing Core Files</echo>
[17396]38 <unzip src="${antinstaller.jar}" dest="${basedir}"><patternset><include name="core.lzma"/></patternset></unzip>
39 <sevenzip task="decode" input="${basedir}/core.lzma" output="${basedir}/core.comp"/>
40 <delete file="core.lzma"/>
41 <unzip src="${basedir}/core.comp" dest="${installDir}"/>
42 <delete file="core.comp"/>
[14982]43
[18840]44 <echo>Installing Servers</echo>
[18703]45 <copy tofile="${installDir}/cgi-bin/oaiserver.cgi" file="${installDir}/bin/linux/oaiserver.cgi"/>
46 <copy tofile="${installDir}/cgi-bin/library.cgi" file="${installDir}/bin/linux/library.cgi"/>
[17437]47
[17152]48 <echo>Setting Binaries to Executable</echo>
[15980]49 <chmod dir="${installDir}" includes="*.sh,*.bash" perm="775"/>
50 <chmod dir="${installDir}/bin/linux" includes="*" perm="775"/>
[18513]51 <chmod dir="${installDir}/bin/linux/wv/bin" includes="*" perm="775"/>
[17470]52 <chmod dir="${installDir}/bin" includes="*" perm="775"/>
[15980]53 <chmod dir="${installDir}/cgi-bin" includes="*" perm="775"/>
54 <chmod dir="${installDir}/bin/script" includes="**/*" perm="775"/>
[14982]55 <chmod dir="${installDir}/gli" includes="*.sh" perm="775"/>
[18666]56 <chmod dir="${installDir}/apache-httpd/linux/bin" includes="*" perm="775"/>
[14982]57 <echo/>
58
[17152]59 <echo>Filling in concrete values in config files</echo>
[17830]60 <rsr file="${installDir}/cgi-bin/gsdlsite.cfg">
61 <job pattern="\*\*GSDLHOME\*\*" replacement="${installDir}"/>
62 <job pattern="^(#?httpprefix).*" replacement="$1 /gsdl"/>
63 <job pattern="^(#?httpimg).*" replacement="$1 /gsdl/images"/>
64 </rsr>
[16832]65 <echo/>
66
[17152]67 <echo>Creating admin and demo users</echo>
[17107]68 <adduser txt2db="${installDir}/bin/linux/txt2db"
69 usersDb="${installDir}/etc/users.db"
70 username="admin"
71 password="${admin.password}"
72 groups="administrator,colbuilder"
73 comment="created at install time"/>
74 <adduser
75 txt2db="${installDir}/bin/linux/txt2db"
76 usersDb="${installDir}/etc/users.db"
77 username="demo"
78 password="demo"
79 groups="demo"
80 comment="Dummy 'demo' user with password 'demo' for authen-e collection"/>
81
[17152]82 <echo>Set the installation locale in config files</echo>
83 <rsr file="${installDir}/setup.bash" pattern="^gsdllang=.*" replacement="gsdllang=${language}"/>
84 <rsr file="${installDir}/gli/gli.sh" pattern="^glilang=.*" replacement="glilang=${language}"/>
85 <rsr file="${installDir}/gli/gems.sh" pattern="^glilang=.*" replacement="glilang=${language}"/>
86
87 <rsr
88 file="${installDir}/gli/classes/xml/config.xml"
89 pattern="(&lt;Argument name=&quot;general.locale&quot;&gt;).*(&lt;/Argument&gt;)"
90 replacement="$1${language}$2"/>
91
92 <echo file="${installDir}/etc/main.cfg" append="true"
93 >cgiarg shortname=l argdefault=${language}</echo>
94
95 <rsr file="${installDir}/etc/main.cfg" pattern="^status .*" replacement="status enabled"/>
96
[18840]97 <echo>Setting up apache web server</echo>
98 <exec dir="${installDir}" executable="${installDir}/apache-httpd/linux/install-bindist.sh">
99 <arg value="${installDir}/apache-httpd/linux"/>
100 </exec>
101
[17257]102 <echo>Creating installation properties file</echo>
103 <echo file="${installDir}/etc/installation.properties">#this file is just a placeholder for now</echo>
104
[15142]105 <echo message="Finished"/>
106
[14982]107 </target>
108
[17786]109 <!-- imagemagick -->
110 <target name="Installing ImageMagick">
111 <echo>Installing ImageMagick</echo>
112 <unzip src="${antinstaller.jar}" dest="${basedir}"><patternset><include name="imagemagick.lzma"/></patternset></unzip>
113 <sevenzip task="decode" input="${basedir}/imagemagick.lzma" output="${basedir}/imagemagick.comp"/>
114 <delete file="imagemagick.lzma"/>
115 <unzip src="${basedir}/imagemagick.comp" dest="${installDir}/bin/linux"/>
116 <delete file="imagemagick.comp"/>
117
118 <echo>Setting ImageMagick Binaries to Executable</echo>
119 <chmod dir="${installDir}/bin/linux/imagemagick/bin" includes="*" perm="775"/>
120
121 </target>
[17650]122
[17786]123 <!-- source release -->
124 <target name="Source Release">
[17650]125
[17786]126 <echo>Installing Source Release</echo>
127 <unzip src="${antinstaller.jar}" dest="${basedir}"><patternset><include name="source-release.lzma"/></patternset></unzip>
128 <sevenzip task="decode" input="${basedir}/source-release.lzma" output="${basedir}/source-release.comp"/>
129 <delete file="source-release.lzma"/>
130 <unzip src="${basedir}/source-release.comp" dest="${installDir}"/>
131 <delete file="source-release.comp"/>
132
[17812]133 <echo>Setting Binaries to Executable</echo>
134 <chmod dir="${installDir}" includes="*.sh,*.bash,**/configure" perm="775"/>
135 <chmod dir="${installDir}/bin/linux" includes="*" perm="775"/>
136 <chmod dir="${installDir}/bin" includes="*" perm="775"/>
137 <chmod dir="${installDir}/cgi-bin" includes="*" perm="775"/>
138 <chmod dir="${installDir}/bin/script" includes="**/*" perm="775"/>
139 <chmod dir="${installDir}/gli" includes="*.sh" perm="775"/>
140 <echo/>
141
[17830]142 <echo>Filling in concrete values in config files</echo>
143 <rsr file="${installDir}/cgi-bin/gsdlsite.cfg">
144 <job pattern="\*\*GSDLHOME\*\*" replacement="${installDir}"/>
145 <job pattern="^(#?httpprefix).*" replacement="$1 /gsdl"/>
146 <job pattern="^(#?httpimg).*" replacement="$1 /gsdl/images"/>
147 </rsr>
148 <echo/>
149
[17650]150 <echo>Set the installation locale in config files</echo>
151 <rsr file="${installDir}/setup.bash" pattern="^gsdllang=.*" replacement="gsdllang=${language}"/>
152 <rsr file="${installDir}/gli/gli.sh" pattern="^glilang=.*" replacement="glilang=${language}"/>
153 <rsr file="${installDir}/gli/gems.sh" pattern="^glilang=.*" replacement="glilang=${language}"/>
154
155 <rsr
156 file="${installDir}/gli/classes/xml/config.xml"
157 pattern="(&lt;Argument name=&quot;general.locale&quot;&gt;).*(&lt;/Argument&gt;)"
158 replacement="$1${language}$2"/>
159
160 <echo file="${installDir}/etc/main.cfg" append="true"
161 >cgiarg shortname=l argdefault=${language}</echo>
162
163 <rsr file="${installDir}/etc/main.cfg" pattern="^status .*" replacement="status enabled"/>
164
[17812]165 <echo>Create usage.txt</echo>
166 <echo file="${installDir}/etc/usage.txt"></echo>
167
[17650]168 <echo>Creating installation properties file</echo>
169 <echo file="${installDir}/etc/installation.properties">#this file is just a placeholder for now</echo>
170
171 </target>
172
[14982]173</project>
Note: See TracBrowser for help on using the repository browser.