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
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"/>
[17468]17 <taskdef name="sevenzip" classname="org.apache.tools.ant.SevenZip" classpathref="project.classpath"/>
[14982]18
[17754]19 <condition property="bundled.java.exists">
20 <available file="../@linux-java.extracted@/bin/java"/>
21 </condition>
[14982]22
[17764]23 <target name="Initialise" if="bundled.java.exists">
[17754]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
[17764]31 <target name="Installing Core System">
[17754]32
[14982]33 <!-- create the installation directory -->
34 <mkdir dir="${installDir}"/>
35
[16686]36 <!-- install files -->
[17155]37 <echo>Installing Core Files</echo>
[17446]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
[17123]44 <echo>Setting Binaries to Executable</echo>
[14982]45 <chmod dir="${installDir}" includes="*.sh" perm="775"/>
46 <chmod dir="${installDir}/bin/script" includes="*" perm="775"/>
[15142]47 <chmod dir="${installDir}/bin" includes="*" perm="775"/>
[14982]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
[17123]53 <echo>Changing tomcat ports in build.properties</echo>
[14982]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
[17123]57 <echo>Setting up global properties</echo>
[14982]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
[17123]63 <echo>Setting up log4j properties</echo>
[14982]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
[17257]67 <echo>Creating installation properties file</echo>
68 <echo file="${installDir}/installation.properties">#this file is just a placeholder for now</echo>
69
[17123]70 <echo>Finished</echo>
[15142]71
[14982]72 </target>
73
[17652]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
[14982]100 <!-- Source -->
[17596]101 <target name="Installing Source Code" depends="">
[17123]102
[17257]103 <echo>Installing Source Code</echo>
[17446]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
[17646]110 </target>
[17446]111
[17646]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"/>
[17699]120 <echo>Setting Binaries to Executable</echo>
121 <chmod dir="${installDir}/gs2build/bin/linux/imagemagick/bin" includes="*" perm="775"/>
[14982]122 </target>
123
[17646]124
[17596]125 <target name="Installing Tomcat">
[17123]126 <echo>Installing Tomcat (packages/tomcat)</echo>
[17446]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
[17123]134 <echo>Changing tomcat ports tomcat's server.xml</echo>
[15973]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
[17123]139 <echo>Copying greenstone3.xml to tomcat directory</echo>
[15973]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
[17123]143 <echo>Setting tomcat binaries to executable</echo>
[15973]144 <chmod dir="${installDir}/packages/tomcat/bin" includes="*.sh" perm="775"/>
145 <echo/>
[15142]146 </target>
[15205]147
[17596]148 <target name="Installing Ant">
[17123]149 <echo>Installing Ant (packages/ant)</echo>
[17446]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
[17123]157 <echo>Setting ant binaries to executable</echo>
[15973]158 <chmod dir="${installDir}/packages/ant/bin" includes="*" perm="775"/>
159 <echo/>
[15205]160 </target>
161
[14982]162</project>
Note: See TracBrowser for help on using the repository browser.