]> git.evergreen-ils.org Git - Evergreen.git/blob - install.sh
added copy_ids argument to spawn_batch_copy_editor
[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                         CIRCRULESDIR=$CIRCRULESDIR CGIDIR=$CGIDIR DBDRVR=$DBDRVR DBHOST=$DBHOST \
133                         DBNAME=$DBNAME DBUSER=$DBUSER DBPW=$DBPW XSLDIR=$XSLDIR NEW_OPAC_URL=$NEW_OPAC_URL \
134                         NEW_XUL_PACKAGE_NAME=$NEW_XUL_PACKAGE_NAME NEW_XUL_PACKAGE_LABEL=$NEW_XUL_PACKAGE_LABEL";
135
136
137                 case "$target" in
138         
139                         # OpenSRF ---                   
140
141                         "opensrf_all")
142                                 if building;    then $MAKE -C "$OPENSRFDIR" all; fi;
143                                 if installing; then $MAKE -C "$OPENSRFDIR" install; fi;
144                                 ;;
145
146                         "opensrf_jserver" )
147                                 if building;    then $MAKE -C "$OPENSRFDIR" "jserver"; fi;
148                                 if installing; then $MAKE -C "$OPENSRFDIR" "jserver-install"; fi;
149                                 ;;      
150
151                         "opensrf_router" ) 
152                                 if building;    then $MAKE -C "$OPENSRFDIR" "router"; fi;
153                                 if installing; then $MAKE -C "$OPENSRFDIR" "router-install"; fi;
154                                 ;;
155
156                         "opensrf_gateway" )
157                                 if building;    then $MAKE -C "$OPENSRFDIR" "gateway"; fi;
158                                 if installing; then $MAKE -C "$OPENSRFDIR" "gateway-install"; fi;
159                                 ;;
160
161                         "opensrf_srfsh" ) 
162                                 if building;    then $MAKE -C "$OPENSRFDIR" "srfsh"; fi;
163                                 if installing; then $MAKE -C "$OPENSRFDIR" "srfsh-install"; fi;
164                                 ;;
165
166                         "opensrf_core" )
167                                 if installing; then $MAKE -C "$OPENSRFDIR" "perl-install"; fi;
168                                 ;;
169
170
171                         # OpenILS ---                   
172
173                         "openils_all" )
174                                 if building;    then $MAKE -C "$OPENILSDIR" all; fi;
175                                 if installing; then $MAKE -C "$OPENILSDIR" install; fi;
176                                 ;;
177
178                         "openils_core" )
179                                 if installing; then 
180                                         $MAKE -C "$OPENILSDIR" "perl-install"; 
181                                         $MAKE -C "$OPENILSDIR" "string-templates-install"; 
182                                         $MAKE -C "$OPENILSDIR" "xsl-install"; 
183                                 fi;
184                                 ;;
185
186                         "openils_web" )
187                                 if installing; then $MAKE -C "$OPENILSDIR" "web-install"; 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_core" )
205                                 if installing;  then $MAKE -C "$EVERGREENDIR" "images-install"; fi;
206                                 if installing;  then $MAKE -C "$EVERGREENDIR" "circ-install"; fi;
207                                 if installing;  then $MAKE -C "$EVERGREENDIR" "css-install"; fi;
208                                 ;;      
209
210                         "evergreen_xul_client" )
211                                 if building;    then $MAKE -C "$EVERGREENDIR" xul; fi;
212                                 ;;
213
214
215                         *) fail "Unknown target: $target";;
216
217                 esac
218
219         done
220 }
221
222
223 # --------------------------------------------------------------------
224 # Checks command line parameters for special behavior
225 # Supported params are:
226 # clean - cleans all build files
227 # build - builds the specified sources
228 # install - installs the specified sources
229 # --------------------------------------------------------------------
230 function checkParams {
231
232         if [ -z "$1" ]; then return; fi;
233
234         for arg in "$@"; do
235
236                 lastArg="$arg";
237
238                 case "$arg" in
239
240                         "clean") 
241                                 cleanMe;;
242
243                         "build")
244                                 BUILDING="1";;
245
246                         "install")
247                                 INSTALLING="1";;
248
249                         *) fail "Unknown command line argument: $arg";;
250                 esac
251         done
252
253         if [ "$lastArg" = "clean" ]; then exit 0; fi;
254 }
255
256
257 function cleanMe {
258         loadConfig;
259         make -C "$OPENSRFDIR" clean;
260         make -C "$OPENILSDIR"  clean;
261         make -C "$EVERGREENDIR" clean;
262 }
263
264 checkParams "$@";
265
266
267 if building; then echo "Building..."; fi;
268 if installing; then echo "Installing..."; fi;
269
270
271 # --------------------------------------------------------------------
272 # Kick it off...
273 # --------------------------------------------------------------------
274 loadConfig;
275 mkInstallDirs;
276 runInstall;
277
278
279