|
Revision 2948, 1.3 kB
(checked in by kris, 3 weeks ago)
|
|
Updated various java modules to use the new tzupdater zip file
|
-
Property svn:executable set to
*
|
| Line | |
|---|
| 1 | #!/bin/sh |
|---|
| 2 | # Script to grab the java files and place them in the right directory |
|---|
| 3 | # before starting the build |
|---|
| 4 | |
|---|
| 5 | mkdir -p /usr/ports/distfiles |
|---|
| 6 | cd /usr/ports/distfiles |
|---|
| 7 | |
|---|
| 8 | # Get the Java files / patchset |
|---|
| 9 | fetch http://www.pcbsd.org/~kris/autobuildpkgs/bsd-jdk16-patches-4.tar.bz2 |
|---|
| 10 | fetch http://www.pcbsd.org/~kris/autobuildpkgs/jdk-6u3-fcs-src-b05-jrl-24_sep_2007.jar |
|---|
| 11 | fetch http://www.pcbsd.org/~kris/autobuildpkgs/jdk-6u3-fcs-bin-b05-jrl-24_sep_2007.jar |
|---|
| 12 | fetch http://www.pcbsd.org/~kris/autobuildpkgs/jdk-6u3-fcs-mozilla_headers-b05-unix-24_sep_2007.jar |
|---|
| 13 | |
|---|
| 14 | ARCH="`uname -p`" |
|---|
| 15 | if [ "$ARCH" = "i386" ] |
|---|
| 16 | then |
|---|
| 17 | fetch http://www.pcbsd.org/~kris/autobuildpkgs/diablo-caffe-freebsd6-i386-1.6.0_07-b02.tar.bz2 |
|---|
| 18 | fetch http://www.pcbsd.org/~kris/autobuildpkgs/diablo-caffe-freebsd7-i386-1.6.0_07-b02.tar.bz2 |
|---|
| 19 | fi |
|---|
| 20 | |
|---|
| 21 | if [ "$ARCH" = "amd64" ] |
|---|
| 22 | then |
|---|
| 23 | # Get the diablo-caffe file |
|---|
| 24 | fetch http://www.pcbsd.org/~kris/autobuildpkgs/diablo-caffe-freebsd6-amd64-1.6.0_07-b02.tar.bz2 |
|---|
| 25 | fetch http://www.pcbsd.org/~kris/autobuildpkgs/diablo-caffe-freebsd7-amd64-1.6.0_07-b02.tar.bz2 |
|---|
| 26 | fi |
|---|
| 27 | |
|---|
| 28 | |
|---|
| 29 | |
|---|
| 30 | # Get the tzupdater files |
|---|
| 31 | fetch http://www.pcbsd.org/~kris/autobuildpkgs/tzupdater-1_3_9-2008g.zip |
|---|
| 32 | |
|---|
| 33 | cd /usr/ports/lang/perl5.8 |
|---|
| 34 | make clean |
|---|
| 35 | make |
|---|
| 36 | make install |
|---|
| 37 | make clean |
|---|
| 38 | |
|---|
| 39 | cd /usr/ports/java/jdk16/ |
|---|
| 40 | echo "#!/bin/sh |
|---|
| 41 | exit 0" > /usr/ports/java/jdk16/files/license.sh |
|---|
| 42 | make install |
|---|
| 43 | |
|---|
| 44 | cd /usr/ports/devel/automake15 |
|---|
| 45 | make install clean |
|---|