]> git.evergreen-ils.org Git - Evergreen.git/blob - config.sh
changed lame code to smarter code -> dumping document element instead of
[Evergreen.git] / config.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 # Prompts the user for config settings and writes a custom config
20 # file based on these settings
21 # --------------------------------------------------------------------
22
23
24 CONFIG_FILE="install.conf";
25 DEFAULT_CONFIG_FILE="install.conf.default";
26
27 function buildConfig {
28
29 #       if [ -f "$CONFIG_FILE" ]; then
30 #               echo "";
31 #               echo "Using existing config file \"$CONFIG_FILE\""; 
32 #               echo "To generate a new config, remove \"$CONFIG_FILE\"";
33 #               echo "";
34 #               sleep 3;        
35 #               exit 0;
36 #       fi
37
38
39         if [ -f "$DEFAULT_CONFIG_FILE" ]; then
40                 source "$DEFAULT_CONFIG_FILE";
41         fi;
42
43
44         echo "";
45         echo "-----------------------------------------------------------------------";
46         echo "Type Enter to select the default"
47         echo "-----------------------------------------------------------------------";
48
49         prompt "Install prefix [$PREFIX] ";
50         read X;
51         if [ ! -z "$X" ]; then 
52                 PREFIX="$X"; 
53                 BINDIR="$PREFIX/bin/";
54                 LIBDIR="$PREFIX/lib/";
55                 PERLDIR="$LIBDIR/perl5/";
56                 INCLUDEDIR="$PREFIX/include/";
57         fi
58
59         prompt "Executables directory [$BINDIR] "
60         read X;
61         if [ ! -z "$X" ]; then BINDIR="$X"; fi;
62
63         prompt "Lib directory [$LIBDIR] "
64         read X;
65         if [ ! -z "$X" ]; then LIBDIR="$X"; fi;
66
67         prompt "Perl directory [$PERLDIR] "
68         read X;
69         if [ ! -z "$X" ]; then PERLDIR="$X"; fi;
70
71         prompt "Include files directory [$INCLUDEDIR] "
72         read X;
73         if [ ! -z "$X" ]; then INCLUDEDIR="$X"; fi;
74
75         prompt "Temporary files directory [$TMP] "
76         read X;
77         if [ ! -z "$X" ]; then TMP="$X"; fi;
78
79         prompt "Apache2 apxs binary [$APXS2] "
80         read X;
81         if [ ! -z "$X" ]; then APXS2="$X"; fi;
82
83         prompt "Apache2 headers directory [$APACHE2_HEADERS] "
84         read X;
85         if [ ! -z "$X" ]; then APACHE2_HEADERS="$X"; fi;
86
87         prompt "Libxml2 headers directory [$LIBXML2_HEADERS] "
88         read X;
89         if [ ! -z "$X" ]; then LIBXML2_HEADERS="$X"; fi;
90
91         prompt "Build targets [${TARGETS[@]:0}] "
92         read X;
93         if [ ! -z "$X" ]; then TARGETS=("$X"); fi;
94
95
96         cat <<-WORDS
97
98         -----------------------------------------------------------------------
99         Verify the following install directories are sane.
100         Note: * indicates that you must have write privelages for the location
101         -----------------------------------------------------------------------
102
103         -----------------------------------------------------------------------
104         Install prefix             [$PREFIX]*
105         Temporary files directory  [$TMP]*
106         Apache2 apxs binary        [$APXS2]
107         Apache2 headers directory  [$APACHE2_HEADERS]
108         Libxml2 headers directory  [$LIBXML2_HEADERS]
109         Build targets              [${TARGETS[@]:0}]
110         -----------------------------------------------------------------------
111
112         If these are not OK, use control-c to break out rerun this script.
113         Otherwise, type enter.
114
115         WORDS
116
117         read OK;
118
119         writeConfig;
120 }
121
122 function prompt { echo ""; echo -n "$*"; }
123
124 function writeConfig {
125
126         rm -f "$CONFIG_FILE";
127         echo "Writing config to $CONFIG_FILE...";
128
129         _write "PREFIX=\"$PREFIX\"";
130         _write "BINDIR=\"$BINDIR\"";
131         _write "LIBDIR=\"$LIBDIR\"";
132         _write "PERLDIR=\"$PERLDIR\"";
133         _write "INCLUDEDIR=\"$INCLUDEDIR\"";
134
135         _write "TMP=\"$TMP\"";
136         _write "APXS2=\"$APXS2\"";
137         _write "APACHE2_HEADERS=\"$APACHE2_HEADERS\"";
138         _write "LIBXML2_HEADERS=\"$LIBXML2_HEADERS\"";
139
140         # print out the targets
141         STR="TARGETS=(";
142         for target in ${TARGETS[@]:0}; do
143                 STR="$STR \"$target\"";
144         done;
145         STR="$STR)";
146         _write "$STR";
147
148         _write "OPENSRF_DIR=\"OpenSRF/src/\"";
149         _write "OPENILS_DIR=\"Open-ILS/src/\"";
150         _write "EVERGREEN_DIR=\"Evergreen/\"";
151
152 }
153
154 function _write {
155         echo "$*" >> "$CONFIG_FILE";
156 }
157
158
159
160 buildConfig;