|
Revision 2360, 0.6 kB
(checked in by kris, 7 weeks ago)
|
|
Updater tzupdater to latest version for javajdk as well
|
-
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.5.0_07-b01.tar.bz2 |
|---|
| 13 | fi |
|---|
| 14 | |
|---|
| 15 | if [ "$ARCH" = "amd64" ] |
|---|
| 16 | then |
|---|
| 17 | # Get the diablo-caffe file |
|---|
| 18 | fetch http://www.pcbsd.org/~kris/autobuildpkgs/diablo-caffe-freebsd6-amd64-1.5.0_07-b01.tar.bz2 |
|---|
| 19 | fi |
|---|
| 20 | |
|---|
| 21 | # Get the tzupdater files |
|---|
| 22 | fetch http://www.pcbsd.org/~kris/autobuildpkgs/tzupdater-1_3_6-2008c.zip |
|---|
| 23 | |
|---|
| 24 | cd /usr/ports/devel/automake15 |
|---|
| 25 | make install clean |
|---|