diff options
-rw-r--r-- | build-tools/genzip | 54 | ||||
-rw-r--r-- | build-tools/linux-amd64/script1.txt | 4 | ||||
-rw-r--r-- | build-tools/linux-amd64/script2.txt | 56 | ||||
-rwxr-xr-x | build-tools/linux-amd64/unzipsfx | bin | 55272 -> 0 bytes | |||
-rw-r--r-- | build-tools/linux-i586/script1.txt | 4 | ||||
-rw-r--r-- | build-tools/linux-i586/script2.txt | 56 | ||||
-rwxr-xr-x | build-tools/linux-i586/unzipsfx | bin | 51400 -> 0 bytes | |||
-rw-r--r-- | build-tools/solaris-sparc/script1.txt | 4 | ||||
-rw-r--r-- | build-tools/solaris-sparc/script2.txt | 56 | ||||
-rwxr-xr-x | build-tools/solaris-sparc/unzipsfx | bin | 75852 -> 0 bytes | |||
-rw-r--r-- | build-tools/solaris-x86/script1.txt | 4 | ||||
-rw-r--r-- | build-tools/solaris-x86/script2.txt | 56 | ||||
-rwxr-xr-x | build-tools/solaris-x86/unzipsfx | bin | 72044 -> 0 bytes | |||
-rw-r--r-- | nbproject/.cvsignore | 1 | ||||
-rw-r--r-- | nbproject/project.xml | 96 |
15 files changed, 0 insertions, 391 deletions
diff --git a/build-tools/genzip b/build-tools/genzip deleted file mode 100644 index 85b0832..0000000 --- a/build-tools/genzip +++ /dev/null @@ -1,54 +0,0 @@ -#!/bin/sh - -# usage: genzip <archive-name> <license-file> <file> [ <file> ... ] - -tmpscr1=script1.$$ -tmpscr2=script2.$$ - -archive=$1 -shift -license=$1 -shift - -echo "zip'ing..." - -zip -r $archive.zip $* - -cat ../unzipsfx $archive.zip > $archive - -echo "Checksumming..." - -sum=`/usr/bin/sum $archive` -index=1 -for s in $sum -do - case $index in - 1) sum1=$s; - index=2; - ;; - 2) sum2=$s; - index=3; - ;; - esac -done -echo sum = $sum1 $sum2 - -cat ../script1.txt $license ../script2.txt > $tmpscr1 - -linecount=`/usr/bin/wc -l < $tmpscr1` -linecount=$(($linecount + 1)) -echo linecount = $linecount - -echo "Generating .bin script..." - -sed -e s/@LINECOUNT@/$linecount/ -e s/@SUM1@/$sum1/ -e s/@SUM2@/$sum2/ < $tmpscr1 > $tmpscr2 -cat $tmpscr2 $archive > ../$archive.bin -chmod +x ../$archive.bin - -echo "Cleaning up..." -rm -f $tmpscr1 -rm -f $tmpscr2 -rm -f $archive.zip -rm -f $archive - -echo "Done" diff --git a/build-tools/linux-amd64/script1.txt b/build-tools/linux-amd64/script1.txt deleted file mode 100644 index 05d4088..0000000 --- a/build-tools/linux-amd64/script1.txt +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/sh -PATH=/usr/bin:/bin -more <<"EOF" - diff --git a/build-tools/linux-amd64/script2.txt b/build-tools/linux-amd64/script2.txt deleted file mode 100644 index ea5fb16..0000000 --- a/build-tools/linux-amd64/script2.txt +++ /dev/null @@ -1,56 +0,0 @@ - -EOF -agreed= -while [ x$agreed = x ]; do - echo - echo "Do you agree to the above license terms? [yes or no] " - read reply leftover - case $reply in - y* | Y*) - agreed=1;; - n* | n*) - echo "If you don't agree to the license you can't install this sofware"; - exit 1;; - esac -done -if [ ! -w `pwd` ] ; then - echo "You do not have write permission to `pwd`" - echo "3D installation failed" - exit 1 -fi -outname=install.sfx.$$ -echo "Unpacking..." -tail -n +@LINECOUNT@ $0 > $outname -if [ -x /usr/bin/sum ] ; then - echo "Checksumming..." - - sum=`/usr/bin/sum $outname` - index=1 - for s in $sum - do - case $index in - 1) sum1=$s; - index=2; - ;; - 2) sum2=$s; - index=3; - ;; - esac - done - if expr $sum1 != @SUM1@ || expr $sum2 != @SUM2@ ; then - echo "The download file appears to be corrupted. Please refer" - echo "to the Troubleshooting section of the Installation" - echo "Instructions on the download page for more information." - echo "Please do not attempt to install this archive file." - rm -f $outname - exit 1 - fi -else - echo "Can't find /usr/bin/sum to do checksum. Continuing anyway." -fi -echo "Extracting..." -chmod u+x $outname -./$outname -rm -f $outname -echo "Done." -exit 0 diff --git a/build-tools/linux-amd64/unzipsfx b/build-tools/linux-amd64/unzipsfx Binary files differdeleted file mode 100755 index 12bfc5c..0000000 --- a/build-tools/linux-amd64/unzipsfx +++ /dev/null diff --git a/build-tools/linux-i586/script1.txt b/build-tools/linux-i586/script1.txt deleted file mode 100644 index 05d4088..0000000 --- a/build-tools/linux-i586/script1.txt +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/sh -PATH=/usr/bin:/bin -more <<"EOF" - diff --git a/build-tools/linux-i586/script2.txt b/build-tools/linux-i586/script2.txt deleted file mode 100644 index ea5fb16..0000000 --- a/build-tools/linux-i586/script2.txt +++ /dev/null @@ -1,56 +0,0 @@ - -EOF -agreed= -while [ x$agreed = x ]; do - echo - echo "Do you agree to the above license terms? [yes or no] " - read reply leftover - case $reply in - y* | Y*) - agreed=1;; - n* | n*) - echo "If you don't agree to the license you can't install this sofware"; - exit 1;; - esac -done -if [ ! -w `pwd` ] ; then - echo "You do not have write permission to `pwd`" - echo "3D installation failed" - exit 1 -fi -outname=install.sfx.$$ -echo "Unpacking..." -tail -n +@LINECOUNT@ $0 > $outname -if [ -x /usr/bin/sum ] ; then - echo "Checksumming..." - - sum=`/usr/bin/sum $outname` - index=1 - for s in $sum - do - case $index in - 1) sum1=$s; - index=2; - ;; - 2) sum2=$s; - index=3; - ;; - esac - done - if expr $sum1 != @SUM1@ || expr $sum2 != @SUM2@ ; then - echo "The download file appears to be corrupted. Please refer" - echo "to the Troubleshooting section of the Installation" - echo "Instructions on the download page for more information." - echo "Please do not attempt to install this archive file." - rm -f $outname - exit 1 - fi -else - echo "Can't find /usr/bin/sum to do checksum. Continuing anyway." -fi -echo "Extracting..." -chmod u+x $outname -./$outname -rm -f $outname -echo "Done." -exit 0 diff --git a/build-tools/linux-i586/unzipsfx b/build-tools/linux-i586/unzipsfx Binary files differdeleted file mode 100755 index 00c946c..0000000 --- a/build-tools/linux-i586/unzipsfx +++ /dev/null diff --git a/build-tools/solaris-sparc/script1.txt b/build-tools/solaris-sparc/script1.txt deleted file mode 100644 index 05d4088..0000000 --- a/build-tools/solaris-sparc/script1.txt +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/sh -PATH=/usr/bin:/bin -more <<"EOF" - diff --git a/build-tools/solaris-sparc/script2.txt b/build-tools/solaris-sparc/script2.txt deleted file mode 100644 index a9aafa8..0000000 --- a/build-tools/solaris-sparc/script2.txt +++ /dev/null @@ -1,56 +0,0 @@ - -EOF -agreed= -while [ x$agreed = x ]; do - echo - echo "Do you agree to the above license terms? [yes or no] " - read reply leftover - case $reply in - y* | Y*) - agreed=1;; - n* | n*) - echo "If you don't agree to the license you can't install this sofware"; - exit 1;; - esac -done -if [ ! -w `pwd` ] ; then - echo "You do not have write permission to `pwd`" - echo "3D installation failed" - exit 1 -fi -outname=install.sfx.$$ -echo "Unpacking..." -tail +@LINECOUNT@ $0 > $outname -if [ -x /usr/bin/sum ] ; then - echo "Checksumming..." - - sum=`/usr/bin/sum $outname` - index=1 - for s in $sum - do - case $index in - 1) sum1=$s; - index=2; - ;; - 2) sum2=$s; - index=3; - ;; - esac - done - if expr $sum1 != @SUM1@ || expr $sum2 != @SUM2@ ; then - echo "The download file appears to be corrupted. Please refer" - echo "to the Troubleshooting section of the Installation" - echo "Instructions on the download page for more information." - echo "Please do not attempt to install this archive file." - rm -f $outname - exit 1 - fi -else - echo "Can't find /usr/bin/sum to do checksum. Continuing anyway." -fi -echo "Extracting..." -chmod u+x $outname -./$outname -rm -f $outname -echo "Done." -exit 0 diff --git a/build-tools/solaris-sparc/unzipsfx b/build-tools/solaris-sparc/unzipsfx Binary files differdeleted file mode 100755 index a27ffd5..0000000 --- a/build-tools/solaris-sparc/unzipsfx +++ /dev/null diff --git a/build-tools/solaris-x86/script1.txt b/build-tools/solaris-x86/script1.txt deleted file mode 100644 index 05d4088..0000000 --- a/build-tools/solaris-x86/script1.txt +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/sh -PATH=/usr/bin:/bin -more <<"EOF" - diff --git a/build-tools/solaris-x86/script2.txt b/build-tools/solaris-x86/script2.txt deleted file mode 100644 index a9aafa8..0000000 --- a/build-tools/solaris-x86/script2.txt +++ /dev/null @@ -1,56 +0,0 @@ - -EOF -agreed= -while [ x$agreed = x ]; do - echo - echo "Do you agree to the above license terms? [yes or no] " - read reply leftover - case $reply in - y* | Y*) - agreed=1;; - n* | n*) - echo "If you don't agree to the license you can't install this sofware"; - exit 1;; - esac -done -if [ ! -w `pwd` ] ; then - echo "You do not have write permission to `pwd`" - echo "3D installation failed" - exit 1 -fi -outname=install.sfx.$$ -echo "Unpacking..." -tail +@LINECOUNT@ $0 > $outname -if [ -x /usr/bin/sum ] ; then - echo "Checksumming..." - - sum=`/usr/bin/sum $outname` - index=1 - for s in $sum - do - case $index in - 1) sum1=$s; - index=2; - ;; - 2) sum2=$s; - index=3; - ;; - esac - done - if expr $sum1 != @SUM1@ || expr $sum2 != @SUM2@ ; then - echo "The download file appears to be corrupted. Please refer" - echo "to the Troubleshooting section of the Installation" - echo "Instructions on the download page for more information." - echo "Please do not attempt to install this archive file." - rm -f $outname - exit 1 - fi -else - echo "Can't find /usr/bin/sum to do checksum. Continuing anyway." -fi -echo "Extracting..." -chmod u+x $outname -./$outname -rm -f $outname -echo "Done." -exit 0 diff --git a/build-tools/solaris-x86/unzipsfx b/build-tools/solaris-x86/unzipsfx Binary files differdeleted file mode 100755 index fdf918f..0000000 --- a/build-tools/solaris-x86/unzipsfx +++ /dev/null diff --git a/nbproject/.cvsignore b/nbproject/.cvsignore deleted file mode 100644 index 3e18ebf..0000000 --- a/nbproject/.cvsignore +++ /dev/null @@ -1 +0,0 @@ -private diff --git a/nbproject/project.xml b/nbproject/project.xml deleted file mode 100644 index f4cc186..0000000 --- a/nbproject/project.xml +++ /dev/null @@ -1,96 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<project xmlns="http://www.netbeans.org/ns/project/1"> - <type>org.netbeans.modules.ant.freeform</type> - <configuration> - <general-data xmlns="http://www.netbeans.org/ns/freeform-project/1"> - <!-- Do not use Project Properties customizer when editing this file manually. --> - <name>j3d-1.6.0</name> - <properties/> - <folders> - <source-folder> - <label>../j3d-core-utils/src/classes/share</label> - <location>../j3d-core-utils/src/classes/share</location> - </source-folder> - <source-folder> - <label>src/classes/share</label> - <type>java</type> - <location>src/classes/share</location> - </source-folder> - <source-folder> - <label>../j3d-core-utils/src/classes/share</label> - <type>java</type> - <location>../j3d-core-utils/src/classes/share</location> - </source-folder> - <source-folder> - <label>build/default/debug/gen/classes</label> - <type>java</type> - <location>build/default/debug/gen/classes</location> - </source-folder> - </folders> - <ide-actions> - <action name="build"> - <target>jar-debug</target> - </action> - <action name="clean"> - <target>clean</target> - </action> - <action name="javadoc"> - <target>docs-public</target> - </action> - <action name="rebuild"> - <target>clean</target> - <target>jar-debug</target> - </action> - </ide-actions> - <export> - <type>jar</type> - <location>build/default/debug/lib/ext/j3dcore.jar</location> - <build-target>jar-debug</build-target> - </export> - <export> - <type>jar</type> - <location>build/default/debug/lib/ext/j3dutils.jar</location> - <build-target>jar-debug</build-target> - </export> - <view> - <items> - <source-folder style="packages"> - <label>src/classes/share</label> - <location>src/classes/share</location> - </source-folder> - <source-folder style="packages"> - <label>../j3d-core-utils/src/classes/share</label> - <location>../j3d-core-utils/src/classes/share</location> - </source-folder> - <source-folder style="packages"> - <label>build/default/debug/gen/classes</label> - <location>build/default/debug/gen/classes</location> - </source-folder> - <source-file> - <location>build.xml</location> - </source-file> - </items> - <context-menu> - <ide-action name="build"/> - <ide-action name="clean"/> - <ide-action name="javadoc"/> - <ide-action name="rebuild"/> - </context-menu> - </view> - <subprojects> - <project>../vecmath</project> - </subprojects> - </general-data> - <java-data xmlns="http://www.netbeans.org/ns/freeform-project-java/1"> - <compilation-unit> - <package-root>src/classes/share</package-root> - <package-root>../j3d-core-utils/src/classes/share</package-root> - <package-root>build/default/debug/gen/classes</package-root> - <classpath mode="compile">../vecmath/build/debug/lib/ext/vecmath.jar</classpath> - <built-to>build/default/debug/lib/ext/j3dcore.jar</built-to> - <built-to>build/default/debug/lib/ext/j3dutils.jar</built-to> - <source-level>1.5</source-level> - </compilation-unit> - </java-data> - </configuration> -</project> |