root/pbibuild/modules/javajre/preportmake.sh

Revision 2359, 0.6 kB (checked in by kris, 7 weeks ago)

Updated the tzupdater to 1.3.6

  • 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
5mkdir -p /usr/ports/distfiles
6cd /usr/ports/distfiles
7
8ARCH="`uname -p`"
9if [ "$ARCH" = "i386" ]
10then
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
13fi
14
15if [ "$ARCH" = "amd64" ]
16then
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
19fi
20
21
22# Get the tzupdater files
23fetch http://www.pcbsd.org/~kris/autobuildpkgs/tzupdater-1_3_6-2008c.zip
24
25cd /usr/ports/devel/automake15
26make install clean
Note: See TracBrowser for help on using the browser.