source: release-kits/lirk3/installer/build.xml@ 17764

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

made the target tree look nicer

File size: 7.9 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 <path id="project.classpath">
12 <pathelement path="${antinstaller.jar}"/>
13 </path>
14
15 <!-- custom tasks -->
16 <typedef name="rsr" classname="org.greenstone.anttasks.RegexSearchReplace" classpathref="project.classpath"/>
17 <taskdef name="sevenzip" classname="org.apache.tools.ant.SevenZip" classpathref="project.classpath"/>
18
19 <condition property="bundled.java.exists">
20 <available file="../@linux-java.extracted@/bin/java"/>
21 </condition>
22
23 <target name="Initialise" if="bundled.java.exists">
24 <mkdir dir="${installDir}"/>
25 <copy todir="${installDir}/packages/jre" failonerror="false">
26 <fileset dir="../@linux-java.extracted@"/>
27 </copy>
28 <chmod dir="${installDir}/packages/jre/bin" includes="*" perm="775"/>
29 </target>
30
31 <target name="Installing Core System">
32
33 <!-- create the installation directory -->
34 <mkdir dir="${installDir}"/>
35
36 <!-- install files -->
37 <echo>Installing Core Files</echo>
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"/>
43
44 <echo>Setting Binaries to Executable</echo>
45 <chmod dir="${installDir}" includes="*.sh" perm="775"/>
46 <chmod dir="${installDir}/bin/script" includes="*" perm="775"/>
47 <chmod dir="${installDir}/bin" includes="*" perm="775"/>
48 <chmod dir="${installDir}/gs2build/bin/linux" includes="*" perm="775"/>
49 <chmod dir="${installDir}/gs2build/bin/script" includes="**/*" perm="775"/>
50 <chmod dir="${installDir}/gli" includes="*.sh" perm="775"/>
51 <echo/>
52
53 <echo>Changing tomcat ports in build.properties</echo>
54 <rsr file="${installDir}/build.properties" pattern="(tomcat.port[=:]).*" replacement="$1${tomcat.port}" />
55 <rsr file="${installDir}/build.properties" pattern="(tomcat.shutdown.port[=:]).*" replacement="$1${tomcat.shutdown.port}" />
56
57 <echo>Setting up global properties</echo>
58 <copy file="${installDir}/resources/java/global.properties.in" tofile="${installDir}/web/WEB-INF/classes/global.properties" overwrite="true"/>
59 <rsr file="${installDir}/web/WEB-INF/classes/global.properties" pattern="(.*)@gsdl3home@(.*)" replacement="$1${installDir}/web$2" />
60 <rsr file="${installDir}/web/WEB-INF/classes/global.properties" pattern="(.*)@tomcat.server@(.*)" replacement="$1localhost$2" />
61 <rsr file="${installDir}/web/WEB-INF/classes/global.properties" pattern="(.*)@tomcat.port@(.*)" replacement="$1${tomcat.port}$2" />
62
63 <echo>Setting up log4j properties</echo>
64 <copy file="${installDir}/resources/java/log4j.properties.in" tofile="${installDir}/web/WEB-INF/classes/log4j.properties" overwrite="true"/>
65 <rsr file="${installDir}/web/WEB-INF/classes/log4j.properties" pattern="(.*)@gsdl3home@(.*)" replacement="$1${installDir}/web$2" />
66
67 <echo>Creating installation properties file</echo>
68 <echo file="${installDir}/installation.properties">#this file is just a placeholder for now</echo>
69
70 <echo>Finished</echo>
71
72 </target>
73
74 <!-- sourcecode core system -->
75 <target name="Installing Source Code Core">
76
77 <echo>Installing Source Code Core</echo>
78 <unzip src="${antinstaller.jar}" dest="${basedir}"><patternset><include name="sourcecode-core.lzma"/></patternset></unzip>
79 <sevenzip task="decode" input="${basedir}/sourcecode-core.lzma" output="${basedir}/sourcecode-core.comp"/>
80 <delete file="sourcecode-core.lzma"/>
81 <unzip src="${basedir}/sourcecode-core.comp" dest="${installDir}"/>
82 <delete file="sourcecode-core.comp"/>
83
84 <echo>Setting up global properties</echo>
85 <copy file="${installDir}/resources/java/global.properties.in" tofile="${installDir}/web/WEB-INF/classes/global.properties" overwrite="true"/>
86 <rsr file="${installDir}/web/WEB-INF/classes/global.properties" pattern="(.*)@gsdl3home@(.*)" replacement="$1${installDir}/web$2" />
87 <rsr file="${installDir}/web/WEB-INF/classes/global.properties" pattern="(.*)@tomcat.server@(.*)" replacement="$1localhost$2" />
88 <rsr file="${installDir}/web/WEB-INF/classes/global.properties" pattern="(.*)@tomcat.port@(.*)" replacement="$1${tomcat.port}$2" />
89
90 <echo>Setting up log4j properties</echo>
91 <copy file="${installDir}/resources/java/log4j.properties.in" tofile="${installDir}/web/WEB-INF/classes/log4j.properties" overwrite="true"/>
92 <rsr file="${installDir}/web/WEB-INF/classes/log4j.properties" pattern="(.*)@gsdl3home@(.*)" replacement="$1${installDir}/web$2" />
93
94 <echo>Creating installation properties file</echo>
95 <echo file="${installDir}/installation.properties">#this file is just a placeholder for now</echo>
96
97 </target>
98
99
100 <!-- Source -->
101 <target name="Installing Source Code" depends="">
102
103 <echo>Installing Source Code</echo>
104 <unzip src="${antinstaller.jar}" dest="${basedir}"><patternset><include name="sourcecode.lzma"/></patternset></unzip>
105 <sevenzip task="decode" input="${basedir}/sourcecode.lzma" output="${basedir}/sourcecode.comp"/>
106 <delete file="sourcecode.lzma"/>
107 <unzip src="${basedir}/sourcecode.comp" dest="${installDir}"/>
108 <delete file="sourcecode.comp"/>
109
110 </target>
111
112 <!-- imagemagick -->
113 <target name="Installing ImageMagick">
114 <echo>Installing ImageMagick</echo>
115 <unzip src="${antinstaller.jar}" dest="${basedir}"><patternset><include name="imagemagick.lzma"/></patternset></unzip>
116 <sevenzip task="decode" input="${basedir}/imagemagick.lzma" output="${basedir}/imagemagick.comp"/>
117 <delete file="imagemagick.lzma"/>
118 <unzip src="${basedir}/imagemagick.comp" dest="${installDir}/gs2build/bin/linux"/>
119 <delete file="imagemagick.comp"/>
120 <echo>Setting Binaries to Executable</echo>
121 <chmod dir="${installDir}/gs2build/bin/linux/imagemagick/bin" includes="*" perm="775"/>
122 </target>
123
124
125 <target name="Installing Tomcat">
126 <echo>Installing Tomcat (packages/tomcat)</echo>
127 <mkdir dir="packages"/>
128 <unzip src="${antinstaller.jar}" dest="${basedir}"><patternset><include name="tomcat.lzma"/></patternset></unzip>
129 <sevenzip task="decode" input="${basedir}/tomcat.lzma" output="${basedir}/tomcat.comp"/>
130 <delete file="tomcat.lzma"/>
131 <unzip src="${basedir}/tomcat.comp" dest="${installDir}/packages"/>
132 <delete file="tomcat.comp"/>
133
134 <echo>Changing tomcat ports tomcat's server.xml</echo>
135 <copy file="${installDir}/resources/tomcat/server.xml" tofile="${installDir}/packages/tomcat/conf/server.xml" overwrite="true"/>
136 <rsr file="${installDir}/packages/tomcat/conf/server.xml" pattern="(.*)@port@(.*)" replacement="$1${tomcat.port}$2" />
137 <rsr file="${installDir}/packages/tomcat/conf/server.xml" pattern="(.*)@shutdown-port@(.*)" replacement="$1${tomcat.shutdown.port}$2" />
138
139 <echo>Copying greenstone3.xml to tomcat directory</echo>
140 <copy file="${installDir}/resources/tomcat/greenstone3.xml" tofile="${installDir}/packages/tomcat/conf/Catalina/localhost/greenstone3.xml" overwrite="true"/>
141 <rsr file="${installDir}/packages/tomcat/conf/Catalina/localhost/greenstone3.xml" pattern="(.*)@gsdl3webhome@(.*)" replacement="$1${installDir}/web$2" />
142
143 <echo>Setting tomcat binaries to executable</echo>
144 <chmod dir="${installDir}/packages/tomcat/bin" includes="*.sh" perm="775"/>
145 <echo/>
146 </target>
147
148 <target name="Installing Ant">
149 <echo>Installing Ant (packages/ant)</echo>
150 <mkdir dir="packages"/>
151 <unzip src="${antinstaller.jar}" dest="${basedir}"><patternset><include name="ant.lzma"/></patternset></unzip>
152 <sevenzip task="decode" input="${basedir}/ant.lzma" output="${basedir}/ant.comp"/>
153 <delete file="ant.lzma"/>
154 <unzip src="${basedir}/ant.comp" dest="${installDir}/packages"/>
155 <delete file="ant.comp"/>
156
157 <echo>Setting ant binaries to executable</echo>
158 <chmod dir="${installDir}/packages/ant/bin" includes="*" perm="775"/>
159 <echo/>
160 </target>
161
162</project>
Note: See TracBrowser for help on using the repository browser.