summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2011-08-30 19:28:21 +0200
committerSven Gothel <[email protected]>2011-08-30 19:28:21 +0200
commit4a75b64107e157ff1db3991cf89bf8d856ddc0e6 (patch)
treeae6e2be5ce471299819de57ff6202e59185c5b74
parent3bb991102918dc4cf135d386b8c4f93d6fecdc15 (diff)
Add [my] setenv-build-jogl scripts to make/scripts allowing them to be used [manually]
-rwxr-xr-xmake/scripts/make.gluegen.all.linux-x86.sh7
-rwxr-xr-xmake/scripts/make.gluegen.all.linux-x86_64.sh6
-rw-r--r--make/scripts/setenv-build-jogl-x86.sh30
-rw-r--r--make/scripts/setenv-build-jogl-x86_64.sh31
4 files changed, 69 insertions, 5 deletions
diff --git a/make/scripts/make.gluegen.all.linux-x86.sh b/make/scripts/make.gluegen.all.linux-x86.sh
index 196cede..58685d7 100755
--- a/make/scripts/make.gluegen.all.linux-x86.sh
+++ b/make/scripts/make.gluegen.all.linux-x86.sh
@@ -1,9 +1,10 @@
#! /bin/sh
-if [ -e ../../setenv-build-jogl-x86.sh ] ; then
- . ../../setenv-build-jogl-x86.sh
-fi
+SDIR=`dirname $0`
+if [ -e $SDIR/setenv-build-jogl-x86.sh ] ; then
+ . $SDIR/setenv-build-jogl-x86.sh
+fi
# -Dc.compiler.debug=true
# -Dgluegen.cpptasks.detected.os=true \
diff --git a/make/scripts/make.gluegen.all.linux-x86_64.sh b/make/scripts/make.gluegen.all.linux-x86_64.sh
index 33aae19..77d82c1 100755
--- a/make/scripts/make.gluegen.all.linux-x86_64.sh
+++ b/make/scripts/make.gluegen.all.linux-x86_64.sh
@@ -1,7 +1,9 @@
#! /bin/sh
-if [ -e ../../setenv-build-jogl-x86_64.sh ] ; then
- . ../../setenv-build-jogl-x86_64.sh
+SDIR=`dirname $0`
+
+if [ -e $SDIR/setenv-build-jogl-x86_64.sh ] ; then
+ . $SDIR/setenv-build-jogl-x86_64.sh
fi
# -Dc.compiler.debug=true
diff --git a/make/scripts/setenv-build-jogl-x86.sh b/make/scripts/setenv-build-jogl-x86.sh
new file mode 100644
index 0000000..f2de867
--- /dev/null
+++ b/make/scripts/setenv-build-jogl-x86.sh
@@ -0,0 +1,30 @@
+#! /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/jre6 -a -e /opt-linux-x86/j2se6 ] ; then
+ J2RE_HOME=/opt-linux-x86/jre6
+ JAVA_HOME=/opt-linux-x86/j2se6
+ PATH=$J2RE_HOME/bin:$JAVA_HOME/bin:$PATH
+ export J2RE_HOME JAVA_HOME
+fi
+
+export PATH
+
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
+
+