]> git.evergreen-ils.org Git - Evergreen.git/blob - install.sh
fixed some typos, logic errors
[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";
131
132                 case "$target" in
133         
134                         # OpenSRF ---                   
135
136                         "opensrf_all")
137                                 if building;    then $MAKE -C "$OPENSRF_DIR" all; fi;
138                                 if installing; then $MAKE -C "$OPENSRF_DIR" install; fi;
139                                 ;;
140
141                         "opensrf_jserver" )
142                                 if building;    then $MAKE -C "$OPENSRF_DIR" "jserver"; fi;
143                                 if installing; then $MAKE -C "$OPENSRF_DIR" "jserver-install"; fi;
144                                 ;;      
145
146                         "opensrf_router" ) 
147                                 if building;    then $MAKE -C "$OPENSRF_DIR" "router"; fi;
148                                 if installing; then $MAKE -C "$OPENSRF_DIR" "router-install"; fi;
149                                 ;;
150
151                         "opensrf_gateway" )
152                                 if building;    then $MAKE -C "$OPENSRF_DIR" "gateway"; fi;
153                                 if installing; then $MAKE -C "$OPENSRF_DIR" "gateway-install"; fi;
154                                 ;;
155
156                         "opensrf_srfsh" ) 
157                                 if building;    then $MAKE -C "$OPENSRF_DIR" "srfsh"; fi;
158                                 if installing; then $MAKE -C "$OPENSRF_DIR" "srfsh-install"; fi;
159                                 ;;
160
161                         "opensrf_core" )
162                                 if installing; then $MAKE -C "$OPENSRF_DIR" "perl-install"; fi;
163                                 ;;
164
165
166                         # OpenILS ---                   
167
168                         "openils_all" )
169                                 if building;    then $MAKE -C "$OPENILS_DIR" all; fi;
170                                 if installing; then $MAKE -C "$OPENILS_DIR" install; fi;
171                                 ;;
172
173                         "openils_core" )
174                                 if installing; then 
175                                         $MAKE -C "$OPENILS_DIR" "perl-install"; 
176                                         $MAKE -C "$OPENILS_DIR" "string-templates-install"; 
177                                 fi;
178                                 ;;
179
180                         "openils_web" )
181                                 if installing; then 
182                                         $MAKE -C "$OPENILS_DIR" "javascript-install"; 
183                                         $MAKE -C "$OPENILS_DIR" "web-templates-install"; 
184                                 fi;
185                                 ;;
186
187                         "openils_marcdumper" )
188                                 if building;    then $MAKE -C "$OPENILS_DIR" "marcdumper"; fi;
189                                 if installing; then $MAKE -C "$OPENILS_DIR" "marcdumper-install"; fi;
190                                 ;;
191
192
193                         # Evergreen ---                         
194
195                         "evergreen_xul_client" )
196                                 if building;    then $MAKE -C "$EVERGREEN_DIR" xul; fi;
197                                 ;;
198
199
200                         *) fail "Unknown target: $target";;
201
202                 esac
203
204         done
205 }
206
207
208 # --------------------------------------------------------------------
209 # Checks command line parameters for special behavior
210 # Supported params are:
211 # clean - cleans all build files
212 # build - builds the specified sources
213 # install - installs the specified sources
214 # --------------------------------------------------------------------
215 function checkParams {
216
217         if [ -z "$1" ]; then return; fi;
218
219         for arg in "$@"; do
220
221                 lastArg="$arg";
222
223                 case "$arg" in
224
225                         "clean") 
226                                 cleanMe;;
227
228                         "build")
229                                 BUILDING="1";;
230
231                         "install")
232                                 INSTALLING="1";;
233
234                         *) fail "Unknown command line argument: $arg";;
235                 esac
236         done
237
238         if [ "$lastArg" = "clean" ]; then exit 0; fi;
239 }
240
241
242 function cleanMe {
243         loadConfig;
244         make -C "$OPENSRF_DIR" clean;
245         make -C "$OPENILS_DIR"  clean;
246         make -C "$EVERGREEN_DIR" clean;
247 }
248
249 checkParams "$@";
250
251
252 if building; then echo "Building..."; fi;
253 if installing; then echo "Installing..."; fi;
254
255
256 # --------------------------------------------------------------------
257 # Kick it off...
258 # --------------------------------------------------------------------
259 loadConfig;
260 mkInstallDirs;
261 runInstall;
262
263
264