root/pbibuild/modules/javajdk/preportmake.sh

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