source: main/trunk/gli/findjava.sh@ 29312

Last change on this file since 29312 was 29010, checked in by ak19, 10 years ago

A much simpler version to find java home (default JDK) on any Mac OS found on a website. Tested on maverick, lion, leopard

  • Property svn:executable set to *
File size: 6.4 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 javahome="$JAVA_HOME"
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 $MIN_DISPLAY_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 # http://java.dzone.com/articles/java-findingsetting
73 # explains that /usr/libexec/java_home will print the default JDK
74 # regardless of which Mac OS we're on. Tested on Maverick, Lion, Leopard
75 # (run `/usr/libexec/java_home -v 1.7` to find a specific version)
76 HINT=`/usr/libexec/java_home`
77 fi
78
79 javapath="`"$SEARCH4J_EXECUTABLE" -e -p "$HINT" -m $MINIMUM_JAVA_VERSION`"
80 javahome="`"$SEARCH4J_EXECUTABLE" -p "$HINT" -m $MINIMUM_JAVA_VERSION`"
81
82 if [ "$?" != "0" ]; then
83
84 OLDVER="`"$SEARCH4J_EXECUTABLE" -v -p "$HINT"`"
85
86 if [ "$?" = "0" ]; then
87
88 if [ "$gslang" = "es" ]; then
89 echo "La versión del Ambiente de Ejecución Java (JRE por sus siglas en "
90 echo "inglés) que usted tiene instalada es demasiado vieja para ejecutar "
91 echo "la Interfaz de la $PROGNAME. Por favor instale "
92 echo "una nueva versión del Ambiente de Ejecución Java (versión $MIN_DISPLAY_VERSION o "
93 echo "posterior) y ejecute nuevamente este guión."
94 elif [ "$gslang" = "fr" ]; then
95 echo "La version de Java Runtime Environment que vous avez installée est"
96 echo "trop vielle pour faire fonctionner $PROGNAME."
97 echo "Veuillez installer une nouvelle version du JRE (version $MIN_DISPLAY_VERSION ou plus"
98 echo "récente) et redémarrez le script."
99 elif [ "$gslang" = "ru" ]; then
100 echo "÷ÅÒÓÉÑ Java Runtime Environment, ËÏÔÏÒÕÀ ÷Ù ÕÓÔÁÎÏ×ÉÌÉ, ÏÞÅÎØ ÓÔÁÒÁ,"
101 echo "ÞÔÏÂÙ ÕÐÒÁ×ÌÑÔØ ÂÉÂÌÉÏÔÅÞÎÙÍ $PROGNAME. ðÏÖÁÌÕÊÓÔÁ, "
102 echo "ÕÓÔÁÎÏ×ÉÔÅ ÎÏ×ÕÀ ×ÅÒÓÉÀ JRE (×ÅÒÓÉÀ $MIN_DISPLAY_VERSION ÉÌÉ ÂÏÌÅÅ ÎÏ×ÕÀ) É"
103 echo "ÐÅÒÅÕÓÔÁÎÏ×ÉÔÅ ÜÔÏÔ ÓËÒÉÐÔ"
104 else
105 echo "The version of the Java Runtime Environment you have installed ($OLDVER)"
106 echo "is too old to run the $PROGNAME. Please install a new"
107 echo "version of the JRE (version $MIN_DISPLAY_VERSION or newer) and rerun this script."
108 fi
109 return 1
110
111 else
112 no_java "$MIN_DISPLAY_VERSION"
113 return $?
114 fi
115
116 fi
117 echo "Java:"
118 echo $javapath
119 echo
120 return 0
121}
122
123
124## ---- Check Java ----
125# Some users may set this line manually
126#JAVA_HOME=
127gslang=$1
128PROGNAME=$2
129MINIMUM_JAVA_VERSION=1.4.0_00
130MIN_DISPLAY_VERSION=1.4
131
132# sus out search4j
133# first look for compiled search4j executable inside the current folder
134if [ -x search4j ]; then
135 SEARCH4J_EXECUTABLE=search4j
136elif [ -x "$GSDLHOME/bin/$GSDLOS/search4j" ]; then
137 SEARCH4J_EXECUTABLE="$GSDLHOME/bin/$GSDLOS/search4j"
138elif [ -x "$GSDL3SRCHOME/bin/$GSDLOS/search4j" ]; then
139 SEARCH4J_EXECUTABLE="$GSDL3SRCHOME/bin/search4j"
140elif [ -x "../bin/$GSDLOS/search4j" ]; then
141 SEARCH4J_EXECUTABLE=../bin/$GSDLOS/search4j
142elif [ -x "../bin/search4j" ]; then
143 SEARCH4J_EXECUTABLE=../bin/search4j
144else
145 echo "Couldn't determine the location of the search4j executable"
146 echo "If you are running Greenstone2"
147 echo " * check GSDLHOME is set"
148 echo " * check bin/$GSDLOS/search4j exists"
149 echo " * check bin/$GSDLOS/search4j is executable"
150 echo "If you are running Greenstone3"
151 echo " * check GSDL3SRCHOME is set"
152 echo " * check bin/search4j exists"
153 echo " * check bin/search4j is executable"
154 echo " * try running 'ant compile-search4j'"
155fi
156
157# Now run set_java_exec with search4j if we found one, else try javahome
158if [ "x$SEARCH4J_EXECUTABLE" != "x" ]; then
159 set_java_exec "$SEARCH4J_EXECUTABLE" "$MINIMUM_JAVA_VERSION" "$MIN_DISPLAY_VERSION"
160 retval=$?
161else
162 try_java "$MIN_DISPLAY_VERSION"
163 retval=$?
164fi
165return $retval
Note: See TracBrowser for help on using the repository browser.