summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorMichael Bien <[email protected]>2010-06-03 23:50:07 +0200
committerMichael Bien <[email protected]>2010-06-03 23:50:07 +0200
commit16111d6280a46a04e71e0904944cb983ae34c3ff (patch)
tree6b8f3b30d2e58963044315698c93e3279a3f95e7 /tools
parentc088e23874aee3299ab191605a76943e078b2fbc (diff)
cleaned up jackpot scripts, updated download locations.
Diffstat (limited to 'tools')
-rwxr-xr-xtools/jackpotc/bttf3
-rwxr-xr-xtools/jackpotc/setup21
2 files changed, 17 insertions, 7 deletions
diff --git a/tools/jackpotc/bttf b/tools/jackpotc/bttf
index b1aed8c72..4971c9160 100755
--- a/tools/jackpotc/bttf
+++ b/tools/jackpotc/bttf
@@ -5,8 +5,11 @@ OUTPUT="./test/oldgears/build"
FILESET=`find $SRC -type f -name "*.java"`
echo "Back to the Future"
+echo "transforming files: $FILESET"
mkdir $OUTPUT
./lib/jackpotc -sourcepath $SRC -cp $LIBS -d $OUTPUT -Ajackpot30_extra_hints=./jogl1Tojogl2.hint $FILESET
echo "patching..."
patch -o ${OUTPUT}/Patched.java $FILESET ${OUTPUT}/META-INF/upgrade/upgrade.diff
+
+echo "done"
diff --git a/tools/jackpotc/setup b/tools/jackpotc/setup
index c68e5a9b9..58731b72d 100755
--- a/tools/jackpotc/setup
+++ b/tools/jackpotc/setup
@@ -1,20 +1,27 @@
#!/bin/bash
+rm -Rf lib
mkdir lib
cd ./lib
+
+echo "downloading Jackpot..."
wget http://bitbucket.org/jlahoda/jackpot30/downloads/jackpotc.zip
unzip -oj jackpotc.zip
cd ../test
+rm -Rf oldgears/lib
mkdir oldgears/lib
mkdir oldgears/lib/new
mkdir oldgears/lib/old
-cd oldgears/lib/new
-#TOCO temporary location
-wget http://people.fh-landshut.de/~mbien/jogamp/ref/new/jogl.all.jar
-wget http://people.fh-landshut.de/~mbien/jogamp/ref/new/jogl.awt.jar
-wget http://people.fh-landshut.de/~mbien/jogamp/ref/new/gluegen-rt.jar
+cd oldgears/lib/new
+echo "downloading JOGL 2..."
+wget http://jogamp.org/deployment/jogl-next/jogl.all.jar
+wget http://jogamp.org/deployment/jogl-next/jogl.awt.jar
+wget http://jogamp.org/deployment/jogl-next/gluegen-rt.jar
cd ../old
-wget http://people.fh-landshut.de/~mbien/jogamp/ref/old/jogl.jar
-wget http://people.fh-landshut.de/~mbien/jogamp/ref/old/gluegen-rt.jar
+echo "downloading old JOGL 1.1.1 build..."
+wget http://jogamp.org/deployment/archive/jogl-old-1.1.1/jogl.jar
+wget http://jogamp.org/deployment/archive/gluegen-old-1.0b6/gluegen-rt.jar
+
+echo "done"