|
Revision 2641, 1.2 kB
(checked in by kris, 9 days ago)
|
|
Updated openoffice-en java files again
|
-
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 | ARCH="`uname -p`" |
|---|
| 9 | if [ "$ARCH" = "i386" ] |
|---|
| 10 | then |
|---|
| 11 | # Get the diablo-caffe file |
|---|
| 12 | fetch http://www.pcbsd.org/~kris/autobuildpkgs/diablo-caffe-freebsd6-i386-1.6.0_07-b02.tar.bz2 |
|---|
| 13 | fetch http://www.pcbsd.org/~kris/autobuildpkgs/diablo-caffe-freebsd7-i386-1.6.0_07-b02.tar.bz2 |
|---|
| 14 | fetch http://www.pcbsd.org/~kris/autobuildpkgs/diablo-caffe-freebsd6-i386-1.5.0_07-b01.tar.bz2 |
|---|
| 15 | |
|---|
| 16 | fi |
|---|
| 17 | |
|---|
| 18 | if [ "$ARCH" = "amd64" ] |
|---|
| 19 | then |
|---|
| 20 | # Get the diablo-caffe file |
|---|
| 21 | fetch http://www.pcbsd.org/~kris/autobuildpkgs/diablo-caffe-freebsd6-amd64-1.6.0_07-b02.tar.bz2 |
|---|
| 22 | fetch http://www.pcbsd.org/~kris/autobuildpkgs/diablo-caffe-freebsd7-amd64-1.6.0_07-b02.tar.bz2 |
|---|
| 23 | fetch http://www.pcbsd.org/~kris/autobuildpkgs/diablo-caffe-freebsd6-amd64-1.5.0_07-b01.tar.bz2 |
|---|
| 24 | fi |
|---|
| 25 | |
|---|
| 26 | # Get the tzupdater files |
|---|
| 27 | fetch http://www.pcbsd.org/~kris/autobuildpkgs/jdk-1_5_0_14-fcs-src-b03-jrl-05_oct_2007.jar |
|---|
| 28 | fetch http://www.pcbsd.org/~kris/autobuildpkgs/jdk-1_5_0_14-fcs-bin-b03-jrl-05_oct_2007.jar |
|---|
| 29 | fetch http://www.pcbsd.org/~kris/autobuildpkgs/tzupdater-1_3_6-2008c.zip |
|---|
| 30 | |
|---|
| 31 | cd /usr/ports/java/jdk16/ |
|---|
| 32 | echo "#!/bin/sh |
|---|
| 33 | exit 0" > /usr/ports/java/jdk16/files/license.sh |
|---|