]> git.evergreen-ils.org Git - Evergreen.git/blob - install.sh
3513170d9ad2616da29f0c7929d7562de0da4a75
[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 verifyInstallPaths {
38
39         cat <<-WORDS
40
41         -----------------------------------------------------------------------
42         Verify the following install directories are sane.
43         Note: * indicates that you must have write privelages for the location
44         -----------------------------------------------------------------------
45
46         -----------------------------------------------------------------------
47         Install prefix            [$PREFIX]*
48         Temporary files directory [$TMP]*
49         Apache2 apxs binary       [$APXS2]
50         Apache2 header directory  [$APACHE2_HEADERS]
51         Libxml2 header directory  [$LIBXML2_HEADERS]
52         Building targets          [${TARGETS[@]:0}];
53         -----------------------------------------------------------------------
54
55         If these are not OK, use control-c to break out and fix the variables 
56         in install.config.  Otherwise, type enter.
57
58         To disable this message, run "./install.sh force".
59
60         WORDS
61         read OK;
62 }
63
64 #function postMessage {
65
66 #cat <<-WORDS
67 #       --------------------------------------------------------------------
68
69
70 #}
71
72 # --------------------------------------------------------------------
73 # Makes sure the install directories exist and are writable
74 # --------------------------------------------------------------------
75 function mkInstallDirs {
76
77         mkdir -p "$PREFIX";
78         if [ "$?" != "0" ]; then
79                 fail "Error creating $PREFIX";
80         fi
81
82         mkdir -p "$TMP";
83         if [ "$?" != "0" ]; then
84                 fail "Error creating $TMP";
85         fi
86
87         if [ ! -w "$PREFIX" ]; then
88                 fail "We don't have write access to $PREFIX";
89         fi
90
91         if [ ! -w "$TMP" ]; then
92                 fail "We don't have write access to $TMP";
93         fi
94
95 }
96
97 # --------------------------------------------------------------------
98 # Loads the config file.  If it can't fine CONFIG_FILE, it attempts to
99 # use DEFAULT_CONFIG_FILE.  If it can't find that, it fails.
100 # --------------------------------------------------------------------
101 function loadConfig {
102         if [ ! -f "$CONFIG_FILE" ]; then
103                 if [ -f "$DEFAULT_CONFIG_FILE" ]; then
104                         cp "$DEFAULT_CONFIG_FILE" "$CONFIG_FILE";
105                 else
106                         fail "config file \"$CONFIG_FILE\" cannot be found";
107                 fi
108         fi
109         source "$CONFIG_FILE";
110 }
111
112
113 function runInstall {
114
115
116         loadConfig;
117         #[ -z "$FORCE" ] && verifyInstallPaths;
118         mkInstallDirs;
119
120         # pass the collected variables to make
121         for target in ${TARGETS[@]:0}; do
122
123                 cat <<-MSG
124
125                 --------------------------------------------------------------------
126                 Building $target
127                 --------------------------------------------------------------------
128
129                 MSG
130
131                 MAKE="make APXS2=$APXS2 PREFIX=$PREFIX TMP=$TMP APACHE2_HEADERS=$APACHE2_HEADERS LIBXML2_HEADERS=$LIBXML2_HEADERS"; 
132
133                 echo "Passing to sub-makes: $VARS"
134                         
135                 case "$target" in
136                         
137                         "jserver" | "router" | "gateway" | "srfsh" ) $MAKE -C "$OPENSRF_DIR" "$target" "$target-install";;
138
139                         *) fail "Unknown target: $target";;
140
141                 esac
142
143         done
144 }
145
146
147 # --------------------------------------------------------------------
148 # Checks command line parameters for special behavior
149 # Supported params are:
150 # clean - cleans all build files
151 # force - forces build without the initial message
152 # --------------------------------------------------------------------
153 function checkParams {
154
155         if [ -z "$1" ]; then return; fi;
156
157         for arg in "$@"; do
158
159                 lastArg="$arg";
160
161                 case "$arg" in
162
163                         "clean") 
164                                 make -C OpenSRF/src clean
165                                 make -C Open-ILS/src clean
166                                 make -C Evergreen/src clean;;
167
168                         "force")
169                                 FORCE="1";;
170
171                         *) fail "Unknown command line argument: $arg";;
172                 esac
173         done
174
175         echo "LAST $lastArg";
176         if [ "$lastArg" = "clean" ]; then exit 0; fi;
177 }
178
179 # if user passes in the word 'clean' as the first shell arg, clean all
180 checkParams "$@";
181
182
183 # Kick it off...
184 runInstall;
185
186
187