source: gli/trunk/findjava.sh@ 20636

Last change on this file since 20636 was 20636, checked in by ak19, 15 years ago

Better warning message when the findjava scripts have to resort to using what's in JAVA_HOME.

  • Property svn:executable set to *
File size: 6.2 KB
Line 
1# We will already be in the correct folder (GLI folder), which would
2# contain a compiled up search4j if this GLI is part of an installation.
3# If a search4j executable is not there, then it means this is an SVN checkout.
4# In such a case, it's up to the user checking things out to ensure JAVA_HOME
5# is set and moreover points to the correct version of the Java.
6
7# Function to check if any JAVA_HOME is set and if so, try using that
8function try_java {
9 MIN_DISPLAY_VERSION=${1};
10
11 if [ "x$JAVA_HOME" = "x" -o ! -f "$JAVA_HOME/bin/java" ]; then
12 no_java "$MIN_DISPLAY_VERSION"
13 return $?
14 else
15 # There is a JAVA_HOME already set, we're going to try using that
16 javapath="$JAVA_HOME/bin/java"
17
18 # Print a warning that we're going to use whatever JAVA_HOME is set (fingers crossed)
19 if [ "x$gslang" = "x" -o "$gslang" = "en" ]; then
20 echo
21 echo "***************************************************************************"
22 echo "WARNING: "
23 echo "Java Runtime not bundled with this Greenstone installation."
24 echo "Using JAVA_HOME: %JAVA_HOME%"
25 echo "(NOTE: this needs to be %DISPLAY_MIN_VERSION% or higher.)"
26 echo "***************************************************************************"
27 echo
28 fi
29 echo "Java:"
30 echo $javapath
31 echo
32 return 0
33 fi
34}
35
36function no_java {
37 MIN_DISPLAY_VERSION=${1};
38
39 echo
40 if [ "$gslang" = "es" ]; then
41 echo "No se pudo localizar una versión apropiada de Java. Usted deberá "
42 echo "instalar un Ambiente de Ejecución Java (versión $MIN_DISPLAY_VERSION o superior) "
43 echo "antes de correr la Interfaz de la $PROGNAME."
44 elif [ "$gslang" = "fr" ]; then
45 echo "Une version adéquate de Java n'a pas pu être localisée."
46 echo "Vous devez installer un Java Runtime Environment (version $MIN_DISPLAY_VERSION ou"
47 echo "supérieur) avant de démarrer $PROGNAME."
48 echo "Si vous avez Java installé sur votre ordinateur veuillez vérifier la variable"
49 echo "d'environnement JAVA_HOME."
50 elif [ "$gslang" = "ru" ]; then
51 echo "îÅ ÕÄÁÌÏÓØ ÏÐÒÅÄÅÌÉÔØ ÍÅÓÔÏÎÁÈÏÖÄÅÎÉÅ ÓÏÏÔ×ÅÔÓÔ×ÕÀÝÅÊ ×ÅÒÓÉÉ Java."
52 echo "÷Ù ÄÏÌÖÎÙ ÕÓÔÁÎÏ×ÉÔØ Java Runtime Environment (×ÅÒÓÉÀ $MIN_DISPLAY_VERSION ÉÌÉ ×ÙÛÅ)"
53 echo "ÐÅÒÅÄ ××ÏÄÏÍ ÂÉÂÌÉÏÔÅÞÎÏÇÏ $PROGNAME."
54 else
55 echo "Failed to locate an appropriate version of Java. You must install a"
56 echo "Java Runtime Environment (version $MIN_DISPLAY_VERSION or greater) before running the"
57 echo "$PROGNAME."
58 echo "If you have Java intalled on your machine please set the environment variable JAVA_HOME."
59 fi
60 return 1
61}
62
63function set_java_exec {
64 SEARCH4J_EXECUTABLE=${1};
65 MINIMUM_JAVA_VERSION=${2};
66 MIN_DISPLAY_VERSION=${3};
67
68 # Give search4j a hint to find Java depending on the platform
69 if [ $GSDLOS = linux ]; then
70 HINT=`cd "$GSDLHOME";pwd`/packages/jre
71 elif [ $GSDLOS = darwin ]; then
72 HINT=/System/Library/Frameworks/JavaVM.framework/Versions/CurrentJDK/Home
73 #/System/Library/Frameworks/JavaVM.framework/Home
74 fi
75
76 javapath="`"$SEARCH4J_EXECUTABLE" -e -p "$HINT" -m $MINIMUM_JAVA_VERSION`"
77
78 if [ "$?" != "0" ]; then
79
80 OLDVER="`"$SEARCH4J_EXECUTABLE" -v -p "$HINT"`"
81
82 if [ "$?" = "0" ]; then
83
84 if [ "$gslang" = "es" ]; then
85 echo "La versión del Ambiente de Ejecución Java (JRE por sus siglas en "
86 echo "inglés) que usted tiene instalada es demasiado vieja para ejecutar "
87 echo "la Interfaz de la $PROGNAME. Por favor instale "
88 echo "una nueva versión del Ambiente de Ejecución Java (versión $MIN_DISPLAY_VERSION o "
89 echo "posterior) y ejecute nuevamente este guión."
90 elif [ "$gslang" = "fr" ]; then
91 echo "La version de Java Runtime Environment que vous avez installée est"
92 echo "trop vielle pour faire fonctionner $PROGNAME."
93 echo "Veuillez installer une nouvelle version du JRE (version $MIN_DISPLAY_VERSION ou plus"
94 echo "récente) et redémarrez le script."
95 elif [ "$gslang" = "ru" ]; then
96 echo "÷ÅÒÓÉÑ Java Runtime Environment, ËÏÔÏÒÕÀ ÷Ù ÕÓÔÁÎÏ×ÉÌÉ, ÏÞÅÎØ ÓÔÁÒÁ,"
97 echo "ÞÔÏÂÙ ÕÐÒÁ×ÌÑÔØ ÂÉÂÌÉÏÔÅÞÎÙÍ $PROGNAME. ðÏÖÁÌÕÊÓÔÁ, "
98 echo "ÕÓÔÁÎÏ×ÉÔÅ ÎÏ×ÕÀ ×ÅÒÓÉÀ JRE (×ÅÒÓÉÀ $MIN_DISPLAY_VERSION ÉÌÉ ÂÏÌÅÅ ÎÏ×ÕÀ) É"
99 echo "ÐÅÒÅÕÓÔÁÎÏ×ÉÔÅ ÜÔÏÔ ÓËÒÉÐÔ"
100 else
101 echo "The version of the Java Runtime Environment you have installed ($OLDVER)"
102 echo "is too old to run the $PROGNAME. Please install a new"
103 echo "version of the JRE (version $MIN_DISPLAY_VERSION or newer) and rerun this script."
104 fi
105 return 1
106
107 else
108 no_java "$MIN_DISPLAY_VERSION"
109 return $?
110 fi
111
112 fi
113 echo "Java:"
114 echo $javapath
115 echo
116 return 0
117}
118
119
120## ---- Check Java ----
121# Some users may set this line manually
122#JAVA_HOME=
123gslang=$1
124PROGNAME=$2
125MINIMUM_JAVA_VERSION=1.4.0_00
126MIN_DISPLAY_VERSION=1.4
127
128# sus out search4j
129# first look for compiled search4j executable inside the current folder
130if [ -x search4j ]; then
131 SEARCH4J_EXECUTABLE=search4j
132elif [ -x "$GSDLHOME/bin/$GSDLOS/search4j" ]; then
133 SEARCH4J_EXECUTABLE="$GSDLHOME/bin/$GSDLOS/search4j"
134elif [ -x "$GSDL3SRCHOME/bin/$GSDLOS/search4j" ]; then
135 SEARCH4J_EXECUTABLE="$GSDL3SRCHOME/bin/search4j"
136elif [ -x "../bin/$GSDLOS/search4j" ]; then
137 SEARCH4J_EXECUTABLE=../bin/$GSDLOS/search4j
138elif [ -x "../bin/search4j" ]; then
139 SEARCH4J_EXECUTABLE=../bin/search4j
140else
141 echo "Couldn't determine the location of the search4j executable"
142 echo "If you are running Greenstone2"
143 echo " * check GSDLHOME is set"
144 echo " * check bin/$GSDLOS/search4j exists"
145 echo " * check bin/$GSDLOS/search4j is executable"
146 echo "If you are running Greenstone3"
147 echo " * check GSDL3SRCHOME is set"
148 echo " * check bin/search4j exists"
149 echo " * check bin/search4j is executable"
150 echo " * try running 'ant compile-search4j'"
151fi
152
153# Now run set_java_exec with search4j if we found one, else try javahome
154if [ "x$SEARCH4J_EXECUTABLE" != "x" ]; then
155 set_java_exec "$SEARCH4J_EXECUTABLE" "$MINIMUM_JAVA_VERSION" "$MIN_DISPLAY_VERSION"
156 retval=$?
157else
158 try_java "$MIN_DISPLAY_VERSION"
159 retval=$?
160fi
161return $retval
Note: See TracBrowser for help on using the repository browser.