source: main/trunk/greenstone2/build-src/packages/configure@ 30886

Last change on this file since 30886 was 30886, checked in by ak19, 8 years ago

Corrections to previous commit

  • Property svn:executable set to *
File size: 7.5 KB
Line 
1#! /bin/sh
2
3PACKAGES=`pwd`
4cd ../..
5GSDLHOME=`pwd`
6cd $PACKAGES
7
8GSDLOS=`uname -s |tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'`
9# check for running bash under cygwin
10if test "`echo $GSDLOS | sed 's/cygwin//'`" != "$GSDLOS" ;
11then
12 GSDLOS=windows
13fi
14if test "x$crossOS" != "x" ; then
15 # Override derived value with value explicitly provided in crossOS
16 GSDLOS=$crossOS
17fi
18
19prefix=""
20bindir=""
21HOSTTARGETFLAGS=""
22
23# only some of the packages can take environment variables as options to
24# configure
25# format is VAR=value, e.g "LDFLAGS=-static"
26ENVIRONMENT=""
27
28# WVWARE compilation enabled by default, can switch it off with --disable-wvware
29USE_WVWARE=true
30# GDBM compilation enabled by default, can switch it off with --disable-gdbm
31USE_GDBM=true
32# JDBM compilation enabled by default, can switch it off with --disable-jdbm
33USE_JDBM=true
34# SQLite support enabled by default, can switch it off with --disable-sqlite
35USE_SQLITE=true
36# yaz compilation enabled by default, can switch it off with --disable-yaz
37USE_YAZ=true
38# z3950 server disabled by default, switch it on with --enable-z3950
39USE_Z3950=false
40# CORBA support disabled by default, switch it on with --enable-corba
41USE_CORBA=false
42MICO_DIR=default
43
44# parse any arguments given from toplevel configure
45while test $# -ne 0; do
46 case "$1" in
47 --cache-file=*)
48 cache_filename=`echo $1 | sed s/--cache-file=//`
49 # turn relative path into an absolute path
50 cache_dir=`echo $cache_filename | sed 's@/[^/]*$@@'`
51 cache_dir=`cd $cache_dir 2>/dev/null && pwd`
52
53 cache_basefile=`echo $cache_filename | sed 's@.*/@@'`
54 cache_file="$cache_dir/$cache_basefile"
55 if test ! -f "$cache_file"; then
56 CACHE_FILE=""
57 else
58 CACHE_FILE="--cache-file=$cache_file"
59 fi
60 ;;
61 --disable-wvware)
62 USE_WVWARE=false
63 ;;
64 --disable-gdbm)
65 USE_GDBM=false
66 ;;
67 --disable-jdbm)
68 USE_JDBM=false
69 ;;
70 --disable-sqlite)
71 USE_SQLITE=false
72 ;;
73 --disable-yaz)
74 USE_YAZ=false
75 ;;
76 --enable-z3950)
77 USE_Z3950=true
78 ;;
79 --enable-corba)
80 USE_CORBA=true
81 ;;
82 --with-micodir=*)
83 if test $1 = ""; then
84 $1 = "default"
85 fi
86 MICO_DIR=$1
87 ;;
88 --prefix=*)
89 prefix=`echo $1 | sed s/--prefix=//`
90 ;;
91 --bindir=*)
92 # where to install binaries to
93 bindir=`echo $1 | sed s/--bindir=//`
94 # turn relative path into an absolute path
95 if test -d "$bindir" ; then
96 bindir=`cd "$bindir" ; pwd `
97 cd "$PACKAGES"
98 elif test -z `echo $bindir | sed '/^\// p;D'` ; then
99 rel_bindir="`echo $bindir | sed s@/.*@@`"
100 cd "$rel_bindir"
101 bindir="`pwd`/`echo $bindir | sed s@^[^/]*/@@`"
102 cd "$PACKAGES"
103 else
104 # bindir doesn't exist, and isn't relative
105 true
106 fi
107 ;;
108 --host=* | --target=* | --build=*)
109 HOSTTARGETFLAGS="$HOSTTARGETFLAGS $1"
110 ;;
111 *)
112 # ignore all other options for now
113 ;;
114 esac
115 shift
116done
117
118# note! Our GSDL package currently always installs into it's source
119# directory, ignoring any --prefix given to configure.
120# When this is fixed, uncomment the relevant lines below...
121
122##if test -z "$prefix" ; then
123prefix="${GSDLHOME}"
124##fi
125
126##if test -z "$bindir" ; then
127bindir="${prefix}/bin/$GSDLOS"
128##fi
129
130libdir="${prefix}/lib/$GSDLOS"
131
132# This loads the top configure's cache file, with variables already set.
133if test -f "$cache_file" ; then
134 . $cache_file
135fi
136
137# we assume that gzip and tar are on the search path.
138# non-GNU versions of tar don't take the -z option.
139
140
141# configure the wvWare Word document converter
142echo ""
143echo "Configuring wvWare"
144echo ""
145
146# datadir flag is for default location of wvHtml.xml config file
147if test x$USE_WVWARE = xtrue ;
148then
149
150 # Look to see if gnome-lib extension is present and if so, source its devel.bash file
151 if [ -d ../../ext/gnome-lib ] ; then
152 pushd ../../ext/gnome-lib
153 source ./devel.bash
154 popd
155 fi
156
157 cd "$PACKAGES/wv"
158 OLD_LD="$LDFLAGS"
159 if [ "x$GSDLOS" = "xdarwin" ]; then
160 export LDFLAGS="$LDFLAGS -framework CoreFoundation -framework Carbon"
161 fi
162 gzip -dc wv-1.2.4-gs.tar.gz | tar -xf -
163 cd wv-gs && \
164 ./configure $CACHE_FILE --prefix=$PACKAGES/wv --bindir="$bindir" --libdir="$libdir" --datadir="$prefix/etc/packages" $HOSTTARGETFLAGS --disable-shared --enable-static LDFLAGS="$LDFLAGS"
165 export LDFLAGS="$OLD_LD"
166else
167 echo "wvWare support disabled."
168 echo " add '--enable-wvware' to the configure command to include wvWare support."
169 echo ""
170fi
171
172if test x$? = x1 ;
173then
174 echo "Configuration of wvWare failed."
175 exit 1
176fi
177
178# configure the pdftohtml converter
179echo ""
180echo "Configuring pdftohtml"
181echo ""
182
183cd "$PACKAGES/pdftohtml"
184gzip -dc pdftohtml_0_36_gs.tar.gz | tar -xf -
185cd pdftohtml_gs && \
186./configure $CACHE_FILE --prefix="$prefix" --bindir="$bindir" $HOSTTARGETFLAGS $ENVIRONMENT
187
188if test x$? = x1 ;
189then
190 echo "Configuration of pdftohtml failed."
191 exit 1
192fi
193
194# rtftohtml converter
195echo ""
196echo "Configuring rtftohtml"
197echo ""
198
199cd "$PACKAGES/rtftohtml"
200gzip -dc rtftohtml-gs.tar.gz | tar -xf -
201cd rtftohtml_src && \
202./configure $CACHE_FILE --prefix="$prefix" --bindir="$bindir" $HOSTTARGETFLAGS
203
204if test x$? = x1 ;
205then
206 echo "Configuration of rtftohtml failed."
207 exit 1
208fi
209
210# configure wget
211echo ""
212echo "Configuring wget"
213echo ""
214cd "$PACKAGES/wget"
215gzip -dc wget-1.15-gs.tar.gz | tar -xf -
216if test x$crossOS = "xandroid" ;
217then
218 wget_extraargs="gl_cv_header_working_stdint_h=yes ac_cv_func_getopt_long_only=no"
219else
220 wget_extraargs=
221fi
222
223cd "$PACKAGES/wget/wget-1.15-gs" && \
224#./configure $CACHE_FILE --prefix=$PACKAGES/wget --with-ssl=openssl --bindir="$bindir" -disable-nls $HOSTTARGETFLAGS $wget_extraargs
225./configure $CACHE_FILE --prefix=$PACKAGES/wget --without-ssl --bindir="$bindir" -disable-nls $HOSTTARGETFLAGS $wget_extraargs
226
227if test x$? = x1 ;
228then
229 echo "Configuration of wget failed."
230 exit 1
231fi
232
233# configure XML::Parser perl module
234echo ""
235echo "Configuring XML::Parser"
236echo ""
237cd "$PACKAGES/cpan"
238
239perl_dir=`echo 'my $vn = sprintf("%vd", $^V); $vn =~ s/\.\d+?$//; print "perl-$vn";' | perl`
240
241gzip -dc XML-Parser-2.41.tar.gz | tar -xf -
242cd "$PACKAGES/cpan/XML-Parser-2.41" && \
243
244perl Makefile.PL \
245 PREFIX="$GSDLHOME/perllib/cpan/XML" \
246 INSTALLSITELIB="$GSDLHOME/perllib/cpan/$perl_dir" \
247 INSTALLSITEARCH="$GSDLHOME/perllib/cpan/$perl_dir" \
248 INSTALLMAN1DIR="$GSDLHOME/perllib/cpan/$perl_dir" \
249 INSTALLMAN3DIR="$GSDLHOME/perllib/cpan/$perl_dir" \
250 SITEPREFIX="$GSDLHOME/perllib/cpan" \
251 EXPATINCPATH="$GSDLHOME/common-src/packages/expat/include" \
252 EXPATLIBPATH="$GSDLHOME/common-src/packages/expat/lib"
253
254if test x$? = x1 ;
255then
256 echo "Configuration of XML-Parser failed."
257 exit 1
258fi
259
260# configure powerpoint converter
261echo ""
262echo "Configuring xlhtml (powerpoint & excel converter)"
263echo ""
264cd "$PACKAGES/xlhtml"
265gzip -dc xlhtml-0.4.9.0-gs.tar.gz | tar -xf -
266cd xlhtml-0.4.9.0 && \
267./configure $CACHE_FILE --prefix="$prefix" --bindir="$bindir" $HOSTTARGETFLAGS
268
269if test x$? = x1 ;
270then
271 echo "Configuration of xlhtml failed."
272 exit 1
273fi
274
275# configure IsisGdl program
276echo ""
277echo "Configuring IsisGdl (CDS/ISIS database reader)"
278echo ""
279cd "$PACKAGES/isis-gdl" && \
280./configure $CACHE_FILE --prefix="$prefix" --bindir="$bindir" $HOSTTARGETFLAGS $ENVIRONMENT
281
282if test x$? = x1 ;
283then
284 echo "Configuration of IsisGdl failed."
285 exit 1
286fi
287
288# configure HTMLTidy program
289echo ""
290echo "Configuring HTMLTidy"
291echo ""
292cd "$PACKAGES/html-tidy"
293gzip -dc tidy.tgz | tar -xf -
294cd "$PACKAGES/html-tidy/tidy" && \
295./configure $CACHE_FILE --prefix="$prefix" --bindir="$bindir" $HOSTTARGETFLAGS $ENVIRONMENT
296
297if test x$? = x1 ;
298then
299 echo "Configuration of HTMLTidy failed."
300 exit 1
301fi
Note: See TracBrowser for help on using the repository browser.