]> git.evergreen-ils.org Git - working/Evergreen.git/blob - install.sh
use the functions in mw.
[working/Evergreen.git] / install.sh
1 #!/bin/bash
2 # --------------------------------------------------------------------
3 # Copyright (C) 2005  Georgia Public Library Service 
4 # Bill Erickson <highfalutin@gmail.com>
5 #
6 # This program is free software; you can redistribute it and/or
7 # modify it under the terms of the GNU General Public License
8 # as published by the Free Software Foundation; either version 2
9 # of the License, or (at your option) any later version.
10 #
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15 # --------------------------------------------------------------------
16
17
18 # --------------------------------------------------------------------
19 # ILS install script
20 # --------------------------------------------------------------------
21 CONFIG_FILE="install.conf";
22 DEFAULT_CONFIG_FILE="install.conf.default";
23
24
25 # --------------------------------------------------------------------
26 # Loads all of the path information from the user setting 
27 # install variables as it goes
28 # --------------------------------------------------------------------
29
30 function fail {
31         MSG="$1";
32         echo "A build error occured: $MSG";
33         exit 99;
34 }
35
36
37 #function postMessage {
38
39 #cat <<-WORDS
40 #       --------------------------------------------------------------------
41
42
43 #}
44
45
46
47 # --------------------------------------------------------------------
48 # Makes sure the install directories exist and are writable
49 # --------------------------------------------------------------------
50 function mkInstallDirs {
51
52         if installing; then
53
54                 mkdir -p "$PREFIX";
55                 if [ "$?" != "0" ]; then
56                         fail "Error creating $PREFIX";
57                 fi
58
59                 if [ ! -w "$PREFIX" ]; then
60                         fail "We don't have write access to $PREFIX";
61                 fi
62
63         fi
64
65         if building; then
66
67                 mkdir -p "$TMP";
68                 if [ "$?" != "0" ]; then
69                         fail "Error creating $TMP";
70                 fi
71
72                 if [ ! -w "$TMP" ]; then
73                         fail "We don't have write access to $TMP";
74                 fi
75         fi
76
77         
78
79 }
80
81 function installing {
82         if [ -z "$INSTALLING" ]; then return 1; fi;
83         return 0;
84 }
85
86 function building {
87         if [ -z "$BUILDING" ]; then return 1; fi;
88         return 0;
89 }
90
91
92
93 # --------------------------------------------------------------------
94 # Loads the config file.  If it can't fine CONFIG_FILE, it attempts to
95 # use DEFAULT_CONFIG_FILE.  If it can't find that, it fails.
96 # --------------------------------------------------------------------
97 function loadConfig {
98         if [ ! -f "$CONFIG_FILE" ]; then
99                 if [ -f "$DEFAULT_CONFIG_FILE" ]; then
100                         echo "+ + + Copying $DEFAULT_CONFIG_FILE to $CONFIG_FILE and using its settings...";
101                         cp "$DEFAULT_CONFIG_FILE" "$CONFIG_FILE";
102                 else
103                         fail "config file \"$CONFIG_FILE\" cannot be found";
104                 fi
105         fi
106         source "$CONFIG_FILE";
107 }
108
109
110
111
112 function runInstall {
113
114
115
116         # pass the collected variables to make
117         for target in ${TARGETS[@]:0}; do
118
119                 cat <<-MSG
120
121                 --------------------------------------------------------------------
122                 Building $target
123                 --------------------------------------------------------------------
124
125                 MSG
126
127                 MAKE="make APXS2=$APXS2 PREFIX=$PREFIX TMP=$TMP \
128                         APACHE2_HEADERS=$APACHE2_HEADERS LIBXML2_HEADERS=$LIBXML2_HEADERS \
129                         BINDIR=$BINDIR LIBDIR=$LIBDIR PERLDIR=$PERLDIR INCLUDEDIR=$INCLUDEDIR \
130                         WEBDIR=$WEBDIR TEMPLATEDIR=$TEMPLATEDIR ETCDIR=$ETCDIR \
131                         OPENSRFDIR=$OPENSRFDIR OPENILSDIR=$OPENILSDIR EVERGREENDIR=$EVERGREENDIR\
132                         CGIDIR=$CGIDIR DBDRVR=$DBDRVR DBHOST=$DBHOST DBNAME=$DBNAME DBUSER=$DBUSER DBPW=$DBPW";
133
134
135                 case "$target" in
136         
137                         # OpenSRF ---                   
138
139                         "opensrf_all")
140                                 if building;    then $MAKE -C "$OPENSRFDIR" all; fi;
141                                 if installing; then $MAKE -C "$OPENSRFDIR" install; fi;
142                                 ;;
143
144                         "opensrf_jserver" )
145                                 if building;    then $MAKE -C "$OPENSRFDIR" "jserver"; fi;
146                                 if installing; then $MAKE -C "$OPENSRFDIR" "jserver-install"; fi;
147                                 ;;      
148
149                         "opensrf_router" ) 
150                                 if building;    then $MAKE -C "$OPENSRFDIR" "router"; fi;
151                                 if installing; then $MAKE -C "$OPENSRFDIR" "router-install"; fi;
152                                 ;;
153
154                         "opensrf_gateway" )
155                                 if building;    then $MAKE -C "$OPENSRFDIR" "gateway"; fi;
156                                 if installing; then $MAKE -C "$OPENSRFDIR" "gateway-install"; fi;
157                                 ;;
158
159                         "opensrf_srfsh" ) 
160                                 if building;    then $MAKE -C "$OPENSRFDIR" "srfsh"; fi;
161                                 if installing; then $MAKE -C "$OPENSRFDIR" "srfsh-install"; fi;
162                                 ;;
163
164                         "opensrf_core" )
165                                 if installing; then $MAKE -C "$OPENSRFDIR" "perl-install"; fi;
166                                 ;;
167
168
169                         # OpenILS ---                   
170
171                         "openils_all" )
172                                 if building;    then $MAKE -C "$OPENILSDIR" all; fi;
173                                 if installing; then $MAKE -C "$OPENILSDIR" install; fi;
174                                 ;;
175
176                         "openils_core" )
177                                 if installing; then 
178                                         $MAKE -C "$OPENILSDIR" "perl-install"; 
179                                         $MAKE -C "$OPENILSDIR" "string-templates-install"; 
180                                 fi;
181                                 ;;
182
183                         "openils_web" )
184                                 if installing; then 
185                                         $MAKE -C "$OPENILSDIR" "javascript-install"; 
186                                         $MAKE -C "$OPENILSDIR" "web-templates-install"; 
187                                 fi;
188                                 ;;
189
190                         "openils_marcdumper" )
191                                 if building;    then $MAKE -C "$OPENILSDIR" "marcdumper"; fi;
192                                 if installing; then $MAKE -C "$OPENILSDIR" "marcdumper-install"; fi;
193                                 ;;
194
195                         "openils_db" )
196                                 if installing; then 
197                                         $MAKE -C "$OPENILSDIR" "storage-bootstrap"; 
198                                 fi;
199                                 ;;
200
201
202                         # Evergreen ---                         
203
204                         "evergreen_xul_client" )
205                                 if building;    then $MAKE -C "$EVERGREEN_DIR" xul; fi;
206                                 ;;
207
208
209                         *) fail "Unknown target: $target";;
210
211                 esac
212
213         done
214 }
215
216
217 # --------------------------------------------------------------------
218 # Checks command line parameters for special behavior
219 # Supported params are:
220 # clean - cleans all build files
221 # build - builds the specified sources
222 # install - installs the specified sources
223 # --------------------------------------------------------------------
224 function checkParams {
225
226         if [ -z "$1" ]; then return; fi;
227
228         for arg in "$@"; do
229
230                 lastArg="$arg";
231
232                 case "$arg" in
233
234                         "clean") 
235                                 cleanMe;;
236
237                         "build")
238                                 BUILDING="1";;
239
240                         "install")
241                                 INSTALLING="1";;
242
243                         *) fail "Unknown command line argument: $arg";;
244                 esac
245         done
246
247         if [ "$lastArg" = "clean" ]; then exit 0; fi;
248 }
249
250
251 function cleanMe {
252         loadConfig;
253         make -C "$OPENSRFDIR" clean;
254         make -C "$OPENILSDIR"  clean;
255         make -C "$EVERGREENDIR" clean;
256 }
257
258 checkParams "$@";
259
260
261 if building; then echo "Building..."; fi;
262 if installing; then echo "Installing..."; fi;
263
264
265 # --------------------------------------------------------------------
266 # Kick it off...
267 # --------------------------------------------------------------------
268 loadConfig;
269 mkInstallDirs;
270 runInstall;
271
272
273