source: main/trunk/greenstone2/makegs2.sh@ 27134

Last change on this file since 27134 was 27134, checked in by ak19, 11 years ago

Better parameter name and fix.

  • Property svn:executable set to *
File size: 2.3 KB
Line 
1#!/bin/bash
2
3# run as: ./makegs2.sh
4# or ./makegs2.sh gnome-lib to check out gnome-lib src from svn
5
6# NOT SUPPORTED YET: or run as ./makegs2.sh min
7# to check out gnome-lib minimal binary from svn (won't be working out
8# which minimal version is required for now, 32/64 bit, linux/darwin)
9
10gsdlhome=`pwd`
11echo "**** GSDLHOME: $gsdlhome"
12docheckout=$1
13
14gnomelibsrc=$gsdlhome/ext/gnome-lib
15gnomelibbin=$gsdlhome/ext/gnome-lib-minimal
16gnomelib=
17
18
19# 1. grab gnome-lib src (or bin eventually) from svn if told to
20if [ "x$docheckout" = "xgnome-lib" ]; then
21 if [ ! -d "$gnomelibsrc" ]; then
22 echo "**** $gnomelibsrc doesn't yet exist. Checking out from SVN..."
23 svn co http://svn.greenstone.org/gs2-extensions/gnome-lib/trunk/src ext/gnome-lib
24 fi
25#elif [ "x$docheckout" = "xmin" ]; then
26# work out os and bit-architecture
27# and then can get the correct gnome-lib bin version for this from svn
28fi
29
30
31# 2. compile gnome-lib if we need to
32if [ -d "$gnomelibbin" ]; then
33
34 echo "**** Found a gnomelib binary"
35 gnomelib=$gnomelibbin
36
37elif [ -d "$gnomelibsrc" ]; then
38
39 echo "**** Found a gnomelib src folder"
40 gnomelib=$gnomelibsrc
41
42 if [ -d "$gnomelibsrc/linux" ]; then
43 echo "*** gnomelib already compiled up in $gnomelibsrc/linux"
44 else
45 echo "*** Going to compile up the $gnomelibsrc folder"
46 cd $gnomelib
47 ./CASCADE-MAKE.sh
48 #cd $gsdlhome
49 fi
50else
51 echo "@@@@ No gnome-lib found.... Proceding to compile without it..."
52 echo "@@@@ Assuming this is what you want (Ctrl-C to cancel compilation)"
53 sleep 3
54fi
55
56
57# 3. set up compiling environment to use gnome-lib, if there is a gnome-lib
58if [ ! -z "$gnomelib" ] ; then
59 echo "***** gnomelib folder: $gnomelib"
60 cd $gnomelib
61 source devel.bash
62 #cd $gsdlhome
63fi
64
65
66# 4. now can compile as usual, having set up the environment for wvware
67cd $gsdlhome
68./configure --enable-apache-httpd
69make
70make install
71
72
73# 5. Message to warn user that the env of this x-term uses gnome-lib
74# and GUIs may not work from this console
75echo "****************************************"
76echo "*** The environment for this console has been set to compile Greenstone with gnome-lib."
77echo "*** As a result, graphical applications may not work well."
78echo "*** In such a case, open a new console."
79echo "****************************************"
Note: See TracBrowser for help on using the repository browser.