diff options
author | Sven Gothel <[email protected]> | 2011-08-30 19:28:21 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2011-08-30 19:28:21 +0200 |
commit | 4a75b64107e157ff1db3991cf89bf8d856ddc0e6 (patch) | |
tree | ae6e2be5ce471299819de57ff6202e59185c5b74 /make/scripts/setenv-build-jogl-x86_64.sh | |
parent | 3bb991102918dc4cf135d386b8c4f93d6fecdc15 (diff) |
Add [my] setenv-build-jogl scripts to make/scripts allowing them to be used [manually]
Diffstat (limited to 'make/scripts/setenv-build-jogl-x86_64.sh')
-rw-r--r-- | make/scripts/setenv-build-jogl-x86_64.sh | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/make/scripts/setenv-build-jogl-x86_64.sh b/make/scripts/setenv-build-jogl-x86_64.sh new file mode 100644 index 0000000..9a4678b --- /dev/null +++ b/make/scripts/setenv-build-jogl-x86_64.sh @@ -0,0 +1,31 @@ +#! /bin/sh + +echo $0 + +if [ -e /opt-share/apache-ant ] ; then + ANT_PATH=/opt-share/apache-ant + PATH=$ANT_PATH/bin:$PATH + export ANT_PATH +fi +if [ -z "$ANT_PATH" ] ; then + if [ -e /usr/share/ant/bin/ant -a -e /usr/share/ant/lib/ant.jar ] ; then + ANT_PATH=/usr/share/ant + export ANT_PATH + echo autosetting ANT_PATH to $ANT_PATH + fi +fi +if [ -z "$ANT_PATH" ] ; then + echo ANT_PATH does not exist, set it + exit +fi + +if [ -e /opt-linux-x86_64/jre6 -a -e /opt-linux-x86_64/j2se6 ] ; then + J2RE_HOME=/opt-linux-x86_64/jre6 + JAVA_HOME=/opt-linux-x86_64/j2se6 + PATH=$J2RE_HOME/bin:$JAVA_HOME/bin:$PATH + export J2RE_HOME JAVA_HOME +fi + +export PATH + + |