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

Last change on this file since 31840 was 31840, checked in by ak19, 7 years ago

Documented the changes required to compile wget-1.19-gs. But it fails compilation on darwin.

  • Property svn:executable set to *
File size: 12.3 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
142# The way common-src compiles up expat during the configure stage itself,
143# configure openssl (needs to be done before wget)
144# and compile openssl during the configure stage itself.
145# Needed by wget for https support
146
147echo ""
148echo "Configuring openssl"
149echo ""
150cd "$PACKAGES/openssl"
151openssl_pkgname=openssl-1.0.2l
152#openssl_pkgname=openssl-1.1.0f
153if test ! -d $openssl_pkgname ;
154then
155 gzip -dc $openssl_pkgname.tar.gz | tar -xf -
156fi
157cd $openssl_pkgname
158
159# configure
160# see the INSTALL file for OpenSSL to see config options for openssl
161# --prefix indicates where the generated lib, include and bin folders will go
162# --openssldir will contain the manuals and other non-essentials
163# BEWARE: The defaults for --prefix and meaning of --openssldir differ between
164# versions of openssl. In the earlier version (1.0.* like 1.0.2l), if
165# --prefix is not supplied then the generated lib, include and bin folders
166# will also go into --openssldir.
167# In the newer version 1.1.* 1.1.0f, if --prefix is not supplied, it will
168# try to install the generated lib, include and bin folders into a system place.
169# So better to provide both --opennssldir and --prefix, for both openssl versions
170# to compile succesfully.
171# If you ever want to have the .a libraries that building openssl generates,
172# then point the --prefix to the $bindir. We currently don't need to put them
173# into $bindir/openssl for wget to use, since wget is built against openssl's
174# static libraries and therefore wget doesn't need these when running.
175
176# for 64 bit Macs, need to run ./Configure with darwin64-x86_64-cc, rather than ./config
177# To overcome an error in openssl's perl script determining the LLVM version, we also need force the
178# compilers to be GNU since Clang comes back with an LLVM version that doesn't work out
179stored_CC=$CC
180stored_CXX=$CXX
181if [[ "x$GSDLOS" == "xdarwin" ]] && [[ `uname -m` == *"64" ]] ; then
182 export CC="gcc"
183 export CXX="g++"
184 echo ./Configure --openssldir=$PACKAGES/openssl no-shared darwin64-x86_64-cc
185 #CC="gcc" CXX="g++" ./Configure --openssldir=$PACKAGES/openssl no-shared darwin64-x86_64-cc
186 ./Configure --openssldir=$PACKAGES/openssl no-shared darwin64-x86_64-cc
187else
188 echo ./config --prefix=$PACKAGES/openssl --openssldir=$PACKAGES/openssl no-shared
189 ./config --prefix=$PACKAGES/openssl --openssldir=$PACKAGES/openssl no-shared
190fi
191# make
192echo make
193make
194# make install
195echo make install
196make install
197# restore the compile flags
198export CC=$stored_CC
199export CXX=$stored_CXX
200
201# now move the include, lib and bin folders to the correct place
202
203# configure the wvWare Word document converter
204echo ""
205echo "Configuring wvWare"
206echo ""
207
208# datadir flag is for default location of wvHtml.xml config file
209if test x$USE_WVWARE = xtrue ;
210then
211
212 # Look to see if gnome-lib extension is present and if so, source its devel.bash file
213 if [ -d ../../ext/gnome-lib ] ; then
214 pushd ../../ext/gnome-lib
215 source ./devel.bash
216 popd
217 fi
218
219 if [ -d ../../../ext/gnome-lib-minimal ] ; then
220 pushd ../../../ext/gnome-lib-minimal
221 source ./devel.bash
222 popd
223 fi
224
225 cd "$PACKAGES/wv"
226 if [ "x$GSDLOS" = "xdarwin" ]; then
227 WV_LDFLAGS="$LDFLAGS -framework CoreFoundation -framework Carbon"
228 else
229 WV_LDFLAGS="$LDFLAGS"
230 fi
231 gzip -dc wv-1.2.4-gs.tar.gz | tar -xf -
232 cd wv-gs && \
233 ./configure $CACHE_FILE --prefix=$PACKAGES/wv --bindir="$bindir" --libdir="$libdir" --datadir="$prefix/etc/packages" $HOSTTARGETFLAGS --disable-shared --enable-static LDFLAGS="$WV_LDFLAGS"
234else
235 echo "wvWare support disabled."
236 echo " add '--enable-wvware' to the configure command to include wvWare support."
237 echo ""
238fi
239
240if test x$? = x1 ;
241then
242 echo "Configuration of wvWare failed."
243 exit 1
244fi
245
246# configure the pdftohtml converter
247echo ""
248echo "Configuring pdftohtml"
249echo ""
250
251cd "$PACKAGES/pdftohtml"
252gzip -dc pdftohtml_0_36_gs.tar.gz | tar -xf -
253cd pdftohtml_gs && \
254./configure $CACHE_FILE --prefix="$prefix" --bindir="$bindir" $HOSTTARGETFLAGS $ENVIRONMENT
255
256if test x$? = x1 ;
257then
258 echo "Configuration of pdftohtml failed."
259 exit 1
260fi
261
262# rtftohtml converter
263echo ""
264echo "Configuring rtftohtml"
265echo ""
266
267cd "$PACKAGES/rtftohtml"
268gzip -dc rtftohtml-gs.tar.gz | tar -xf -
269cd rtftohtml_src && \
270./configure $CACHE_FILE --prefix="$prefix" --bindir="$bindir" $HOSTTARGETFLAGS
271
272if test x$? = x1 ;
273then
274 echo "Configuration of rtftohtml failed."
275 exit 1
276fi
277
278# On darwin, the wget binary that we build (in $GSDLHOME/bin/$GSDLOS/wget)
279# finds a system libiconv, as you'll notice when you run "otool -L wget"
280# That's because we expressly don't compile up libiconv on Macs anymore,
281# as the Mac system will have the right libiconv installed.
282
283# configure wget
284#wget_pkgname=wget-1.15-gs
285wget_pkgname=wget-1.17.1-gs
286#wget_pkgname=wget-1.19-gs
287echo ""
288echo "Configuring wget"
289echo ""
290cd "$PACKAGES/wget"
291gzip -dc $wget_pkgname.tar.gz | tar -xf -
292if test x$crossOS = "xandroid" ;
293then
294 wget_extraargs="gl_cv_header_working_stdint_h=yes ac_cv_func_getopt_long_only=no"
295else
296 wget_extraargs=
297fi
298
299# When compiling wget-1.15-gs without openssl as before:
300#./configure $CACHE_FILE --prefix=$PACKAGES/wget --without-ssl --bindir="$bindir" -disable-nls $HOSTTARGETFLAGS $wget_extraargs
301
302# We weren't compiling up wget statically before either and we still aren't
303# However, to compile up wget (statically or not) with openssl, as we do now to support retrieving from https urls, see
304# https://stackoverflow.com/questions/9817337/compiling-wget-with-static-linking-self-compiled-openssl-library-linking-issu
305# Note: contrary to the instructions at the link, if the cppflags and ldflags are set during the
306# configure stage, as we now do, then the make command needn't additionally set them as well.
307# So just make, make install works thereafter
308
309echo copying "$PACKAGES/wget/wgetrc-gs.in" file to "$bindir/wgetrc"
310cp "$PACKAGES/wget/wgetrc-gs.in" "$bindir/wgetrc"
311echo cd "$PACKAGES/wget/$wget_pkgname"
312
313# for wget-1.15-gs. (can also try adding --localstatedir="$bindir/wget" --enable-iri)
314##echo CPPFLAGS="-I$PACKAGES/openssl/include $CPPFLAGS" LDFLAGS="-L$PACKAGES/openssl/lib $LDFLAGS" ./configure $CACHE_FILE --prefix=$PACKAGES/wget --with-ssl=openssl --bindir="$bindir" -disable-nls $HOSTTARGETFLAGS $wget_extraarg
315##cd "$PACKAGES/wget/$wget_pkgname" && \
316##CPPFLAGS="-I$PACKAGES/openssl/include $CPPFLAGS" LDFLAGS="-L$PACKAGES/openssl/lib $LDFLAGS" ./configure $CACHE_FILE --prefix=$PACKAGES/wget --with-ssl=openssl --bindir="$bindir" -disable-nls $HOSTTARGETFLAGS $wget_extraargs
317
318# for wget-1.17.1-gs and wget-1.19-gs (can also try adding --localstatedir="$bindir/wget" --enable-iri)
319echo OPENSSL_CFLAGS="-I$PACKAGES/openssl/include" OPENSSL_LIBS="-L$PACKAGES/openssl/lib -lssl -lcrypto" ./configure $CACHE_FILE --prefix=$PACKAGES/wget --with-ssl=openssl --with-openssl=auto --with-libssl-prefix="$PACKAGES/openssl" --bindir="$bindir" -disable-nls $HOSTTARGETFLAGS $wget_extraargs
320cd "$PACKAGES/wget/$wget_pkgname" && \
321OPENSSL_CFLAGS="-I$PACKAGES/openssl/include" OPENSSL_LIBS="-L$PACKAGES/openssl/lib -lssl -lcrypto" ./configure $CACHE_FILE --prefix=$PACKAGES/wget --with-ssl=openssl --with-openssl=auto --with-libssl-prefix="$PACKAGES/openssl" --bindir="$bindir" -disable-nls $HOSTTARGETFLAGS $wget_extraargs
322
323
324if test x$? = x1 ;
325then
326 echo "Configuration of wget failed."
327 exit 1
328fi
329
330# configure XML::Parser perl module
331echo ""
332echo "Configuring XML::Parser"
333echo ""
334cd "$PACKAGES/cpan"
335
336perl_dir=`echo 'my $vn = sprintf("%vd", $^V); $vn =~ s/\.\d+?$//; print "perl-$vn";' | perl`
337
338gzip -dc XML-Parser-2.41.tar.gz | tar -xf -
339cd "$PACKAGES/cpan/XML-Parser-2.41" && \
340
341perl Makefile.PL \
342 PREFIX="$GSDLHOME/perllib/cpan/XML" \
343 INSTALLSITELIB="$GSDLHOME/perllib/cpan/$perl_dir" \
344 INSTALLSITEARCH="$GSDLHOME/perllib/cpan/$perl_dir" \
345 INSTALLMAN1DIR="$GSDLHOME/perllib/cpan/$perl_dir" \
346 INSTALLMAN3DIR="$GSDLHOME/perllib/cpan/$perl_dir" \
347 SITEPREFIX="$GSDLHOME/perllib/cpan" \
348 EXPATINCPATH="$GSDLHOME/common-src/packages/expat/include" \
349 EXPATLIBPATH="$GSDLHOME/common-src/packages/expat/lib"
350
351if test x$? = x1 ;
352then
353 echo "Configuration of XML-Parser failed."
354 exit 1
355fi
356
357# configure powerpoint converter
358echo ""
359echo "Configuring xlhtml (powerpoint & excel converter)"
360echo ""
361cd "$PACKAGES/xlhtml"
362gzip -dc xlhtml-0.4.9.0-gs.tar.gz | tar -xf -
363cd xlhtml-0.4.9.0 && \
364./configure $CACHE_FILE --prefix="$prefix" --bindir="$bindir" $HOSTTARGETFLAGS
365
366if test x$? = x1 ;
367then
368 echo "Configuration of xlhtml failed."
369 exit 1
370fi
371
372# configure IsisGdl program
373echo ""
374echo "Configuring IsisGdl (CDS/ISIS database reader)"
375echo ""
376cd "$PACKAGES/isis-gdl" && \
377./configure $CACHE_FILE --prefix="$prefix" --bindir="$bindir" $HOSTTARGETFLAGS $ENVIRONMENT
378
379if test x$? = x1 ;
380then
381 echo "Configuration of IsisGdl failed."
382 exit 1
383fi
384
385# configure HTMLTidy program
386echo ""
387echo "Configuring HTMLTidy"
388echo ""
389cd "$PACKAGES/html-tidy"
390gzip -dc tidy.tgz | tar -xf -
391cd "$PACKAGES/html-tidy/tidy" && \
392./configure $CACHE_FILE --prefix="$prefix" --bindir="$bindir" $HOSTTARGETFLAGS $ENVIRONMENT
393
394if test x$? = x1 ;
395then
396 echo "Configuration of HTMLTidy failed."
397 exit 1
398fi
Note: See TracBrowser for help on using the repository browser.