|
Revision 2948, 0.6 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 | ARCH="`uname -p`" |
|---|
| 9 | if [ "$ARCH" = "i386" ] |
|---|
| 10 | then |
|---|
| 11 | # Get the diablo-latte file |
|---|
| 12 | fetch http://www.pcbsd.org/~kris/autobuildpkgs/diablo-latte-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-latte-freebsd6-amd64-1.5.0_07-b01.tar.bz2 |
|---|
| 19 | fi |
|---|
| 20 | |
|---|
| 21 | |
|---|
| 22 | # Get the tzupdater files |
|---|
| 23 | fetch http://www.pcbsd.org/~kris/autobuildpkgs/tzupdater-1_3_9-2008g.zip |
|---|
| 24 | |
|---|
| 25 | cd /usr/ports/devel/automake15 |
|---|
| 26 | make install clean |
|---|