]> git.evergreen-ils.org Git - Evergreen.git/blob - install.sh
pass in the session and some column tweaks
[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 verbose="-s" #clear this to get full build output
24
25
26 # --------------------------------------------------------------------
27 # Loads all of the path information from the user setting 
28 # install variables as it goes
29 # --------------------------------------------------------------------
30
31 function fail {
32         MSG="$1";
33         echo "A build error occured: $MSG";
34         exit 99;
35 }
36
37
38 #function postMessage {
39
40 #cat <<-WORDS
41 #       --------------------------------------------------------------------
42
43
44 #}
45
46
47
48 # --------------------------------------------------------------------
49 # Makes sure the install directories exist and are writable
50 # --------------------------------------------------------------------
51
52 function mkDir {
53         mkdir -p "$1";
54         [ "$?" != "0" ] && fail "Error creating $1";
55         [ ! -w "$1" ] && fail "We don't have write access to $1";
56 }
57
58 function mkInstallDirs {
59
60         installing      && mkDir "$PREFIX";
61         building        && mkDir "$TMP";
62         installing      && mkDir "$SOCK";
63         installing      && mkDir "$PID";
64         installing      && mkDir "$LOG";
65
66
67         # add the opensrf user and group
68          if installing; then
69                 if [ ! $(grep "^opensrf:" /etc/group) ]; then groupadd opensrf; fi
70                 if [ ! $(grep "^opensrf:" /etc/passwd) ]; then useradd -g opensrf opensrf; fi
71                 # add opensrf to the opensrf group
72                 gpasswd -a opensrf opensrf
73         fi;
74
75 }
76
77 function installing {
78         if [ -z "$INSTALLING" ]; then return 1; fi;
79         return 0;
80 }
81
82 function building {
83         if [ -z "$BUILDING" ]; then return 1; fi;
84         return 0;
85 }
86
87
88
89 # --------------------------------------------------------------------
90 # Loads the config file.  If it can't fine CONFIG_FILE, it attempts to
91 # use DEFAULT_CONFIG_FILE.  If it can't find that, it fails.
92 # --------------------------------------------------------------------
93 function loadConfig {
94         if [ ! -f "$CONFIG_FILE" ]; then
95                 if [ -f "$DEFAULT_CONFIG_FILE" ]; then
96                         echo "+ + + Copying $DEFAULT_CONFIG_FILE to $CONFIG_FILE and using its settings...";
97                         cp "$DEFAULT_CONFIG_FILE" "$CONFIG_FILE";
98                 else
99                         fail "config file \"$CONFIG_FILE\" cannot be found";
100                 fi
101         fi
102         source "$CONFIG_FILE";
103 }
104
105
106
107
108 function runInstall {
109
110
111
112         # pass the collected variables to make
113         for target in ${TARGETS[@]:0}; do
114
115                 echo ""
116                 echo "-------------- [ $target ] -------------------------------------------";
117                 echo ""
118
119                 MAKE="make $verbose APXS2=$APXS2 PREFIX=$PREFIX TMP=$TMP APR_HEADERS=$APR_HEADERS \
120                         APACHE2_HEADERS=$APACHE2_HEADERS LIBXML2_HEADERS=$LIBXML2_HEADERS \
121                         BINDIR=$BINDIR LIBDIR=$LIBDIR PERLDIR=$PERLDIR INCLUDEDIR=$INCLUDEDIR \
122                         WEBDIR=$WEBDIR TEMPLATEDIR=$TEMPLATEDIR ETCDIR=$ETCDIR REPORTERDIR=$REPORTERDIR\
123                         OPENSRFDIR=$OPENSRFDIR OPENILSDIR=$OPENILSDIR EVERGREENDIR=$EVERGREENDIR \
124                         CIRCRULESDIR=$CIRCRULESDIR CGIDIR=$CGIDIR DBDRVR=$DBDRVR DBHOST=$DBHOST DATADIR=$DATADIR\
125                         DBNAME=$DBNAME DBUSER=$DBUSER DBPW=$DBPW XSLDIR=$XSLDIR NEW_OPAC_URL=$NEW_OPAC_URL \
126                         NEW_XUL_PACKAGE_NAME=$NEW_XUL_PACKAGE_NAME NEW_XUL_PACKAGE_LABEL=$NEW_XUL_PACKAGE_LABEL";
127
128
129                 case "$target" in
130         
131                         # OpenSRF ---                   
132
133                         "opensrf_all")
134                                 if building;    then $MAKE -C "$OPENSRFDIR" all; fi;
135                                 if installing; then $MAKE -C "$OPENSRFDIR" install; fi;
136                                 ;;
137
138                         "opensrf_jserver" )
139                                 if building;    then $MAKE -C "$OPENSRFDIR" "jserver"; fi;
140                                 if installing; then $MAKE -C "$OPENSRFDIR" "jserver-install"; fi;
141                                 ;;      
142
143                         "opensrf_router" ) 
144                                 if building;    then $MAKE -C "$OPENSRFDIR" "router"; fi;
145                                 if installing; then $MAKE -C "$OPENSRFDIR" "router-install"; fi;
146                                 ;;
147
148                         "opensrf_gateway" )
149                                 if building; then $MAKE -C "$OPENSRFDIR" "gateway"; fi;
150                                 if installing; then $MAKE -C "$OPENSRFDIR" "gateway-install"; fi;
151                                 ;;
152
153                         "opensrf_srfsh" ) 
154                                 if building;    then $MAKE -C "$OPENSRFDIR" "srfsh"; fi;
155                                 if installing; then $MAKE -C "$OPENSRFDIR" "srfsh-install"; fi;
156                                 ;;
157
158                         "opensrf_core" )
159                                 if building; then $MAKE -C "$OPENSRFDIR" libstack/opensrf; fi;
160                                 if installing; then $MAKE -C "$OPENSRFDIR" "perl-install"; fi;
161                                 ;;
162
163
164                         # OpenILS ---                   
165
166                         "openils_all" )
167                                 if building;    then $MAKE -C "$OPENILSDIR" all; fi;
168                                 if installing; then $MAKE -C "$OPENILSDIR" install; fi;
169                                 ;;
170
171                         "openils_core" )
172                                 if building; then $MAKE -C "$OPENILSDIR" "c_apps"; fi;
173                                 if installing; then 
174                                         $MAKE -C "$OPENILSDIR" "perl-install"; 
175                                         $MAKE -C "$OPENILSDIR" "string-templates-install"; 
176                                         $MAKE -C "$OPENILSDIR" "xsl-install"; 
177                                         $MAKE -C "$OPENILSDIR" "c_apps-install"; 
178                                 fi;
179                                 ;;
180
181                         "openils_web" )
182                                 if building; then $MAKE -C "$OPENILSDIR" "mod_xmlbuilder"; fi;
183                                 if building; then $MAKE -C "$OPENILSDIR" "mod_ils_rest_gateway"; fi;
184                                 if installing; then
185                                         $MAKE -C "$OPENILSDIR" "web-install";
186                                         $MAKE -C "$OPENILSDIR" "cgi-bootstrap";
187                                         $MAKE -C "$OPENILSDIR" "reporter-install";
188                                 fi;
189                                 ;;
190
191                         "openils_marcdumper" )
192                                 if building;    then $MAKE -C "$OPENILSDIR" "marcdumper"; fi;
193                                 if installing; then $MAKE -C "$OPENILSDIR" "marcdumper-install"; fi;
194                                 ;;
195
196                         "openils_db" )
197                                 if installing; then 
198                                         $MAKE -C "$OPENILSDIR" "storage-bootstrap"; 
199                                 fi;
200                                 ;;
201
202                         "openils_reporter" )
203                                 if installing; then 
204                                         $MAKE -C "$OPENILSDIR" "reporter-install";
205                                 fi;
206                                 ;;
207
208                         # Evergreen ---                         
209
210                         "evergreen_core" )
211                                 if installing;  then $MAKE -C "$EVERGREENDIR" "circ-install"; fi;
212                                 if installing;  then $MAKE -C "$EVERGREENDIR" "iplist-install"; fi;
213                                 ;;      
214
215                         "evergreen_xul_client" )
216                                 if building;    then $MAKE -C "$EVERGREENDIR" xul; fi;
217                                 ;;
218
219
220                         *) fail "Unknown target: $target";;
221
222                 esac
223
224         done
225
226         if installing; then
227                 echo -e "\nNow run: chown -R opensrf:opensrf $PREFIX"
228         fi
229 }
230
231
232 # --------------------------------------------------------------------
233 # Checks command line parameters for special behavior
234 # Supported params are:
235 # clean - cleans all build files
236 # build - builds the specified sources
237 # install - installs the specified sources
238 # --------------------------------------------------------------------
239 function checkParams {
240
241         if [ -z "$1" ]; then usage; fi;
242
243         for arg in "$@"; do
244
245                 lastArg="$arg";
246
247                 case "$arg" in
248
249                         "clean") 
250                                 cleanMe;;
251
252                         "build")
253                                 BUILDING="1";;
254
255                         "install")
256                                 INSTALLING="1";;
257                         
258                         "verbose")
259                                 verbose="";;
260
261                         *) fail "Unknown option => $arg";
262                 esac
263         done
264
265         if [ "$lastArg" = "clean" ]; then exit 0; fi;
266 }
267
268
269 function cleanMe {
270         loadConfig;
271         make "TMP=$TMP" -s -C "$OPENSRFDIR" clean;
272         make "TMP=$TMP" -s -C "$OPENILSDIR"  clean;
273         make "TMP=$TMP" -s -C "$EVERGREENDIR" clean;
274 }
275
276 function usage {
277         echo "usage: $0 [ build | install | clean ]";
278         exit;
279 }
280
281 checkParams "$@";
282
283 if building; then echo "Building..."; fi;
284 if installing; then echo "Installing..."; fi;
285
286
287 # --------------------------------------------------------------------
288 # Kick it off...
289 # --------------------------------------------------------------------
290 loadConfig;
291 mkInstallDirs;
292 runInstall;
293
294
295