diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2002-11-02 03:59:45 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2002-11-02 03:59:45 +0000 |
commit | a76f0d1da4150af61f9404b1f77dfb0a2902b7b3 (patch) | |
tree | 9c93d57baa539b22fc7d67fc8bc136854b605eb3 /Tools | |
parent | Catch up to repo copy from SWIG to swig11 (diff) |
Add FTP_PASSIVE_MODE. Build tgz packages on 4 and 4-exp, and tbz on 5.
Notes
Notes:
svn path=/head/; revision=69286
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/portbuild/scripts/buildenv | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/Tools/portbuild/scripts/buildenv b/Tools/portbuild/scripts/buildenv index ad3777bc7c0c..33df04b78bea 100644 --- a/Tools/portbuild/scripts/buildenv +++ b/Tools/portbuild/scripts/buildenv @@ -8,10 +8,17 @@ buildenv () { case "x$branch" in x4) + export PKGSUFFIX=.tgz + export PKGZIPCMD=gzip ;; x4-exp) + export PKGSUFFIX=.tgz + export PKGZIPCMD=gzip + export PORTS_AUDIT=1 ;; x5) + export PKGSUFFIX=.tbz + export PKGZIPCMD=bzip2 ;; *) echo "buildenv: invalid branch" @@ -20,8 +27,6 @@ buildenv () { esac export XFREE86_VERSION=4 - export PKGSUFFIX=.tbz - export PKGZIPCMD=bzip2 # Have to use realpath because 'make index' doesn't deal with symlinks in PORTSDIR # - kk 020311 @@ -39,6 +44,7 @@ buildenv () { export PARALLEL_PACKAGE_BUILD=1 export PORTOBJFORMAT=elf export USA_RESIDENT=yes + export FTP_PASSIVE_MODE=yes # Need to make it fetch a full set say once a week to catch distfiles # which change md5 sum but not name |