diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2005-10-11 03:37:57 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2005-10-11 03:37:57 +0000 |
commit | 917dfa95abcb4738e24a6d25a4b954d1229b4051 (patch) | |
tree | dfb06d944192dd131608d909a4f90ba5d5b1a5ba /Tools | |
parent | 353d47ddd98959b3e182afcf11fcb8e9dbcf6094 (diff) | |
download | ports-917dfa95abcb4738e24a6d25a4b954d1229b4051.tar.gz ports-917dfa95abcb4738e24a6d25a4b954d1229b4051.zip |
* Finish flipping the switch on -noplistcheck - this is activated by
passing in the NOPLISTCHECK environment variable instead of
using PLISTCHECK in the opposite case
* Remove the unused -nodummy function
* Pass in ALWAYS_KEEP_DISTFILES when -distfiles is set
Notes
Notes:
svn path=/head/; revision=144887
Diffstat (limited to 'Tools')
-rwxr-xr-x | Tools/portbuild/scripts/portbuild | 17 |
1 files changed, 6 insertions, 11 deletions
diff --git a/Tools/portbuild/scripts/portbuild b/Tools/portbuild/scripts/portbuild index 50198b1f2a39..8379105bd9b1 100755 --- a/Tools/portbuild/scripts/portbuild +++ b/Tools/portbuild/scripts/portbuild @@ -1,6 +1,6 @@ #!/bin/sh -# usage: $0 ARCH BRANCH [-noclean] [-norestr] [-plistcheck] [-nodummy] PKGNAME.tgz DIRNAME [DEPENDENCY.tgz ...] +# usage: $0 ARCH BRANCH [-noclean] [-norestr] [-noplistcheck] [-distfiles] [-fetch-original] [-trybroken] PKGNAME.tgz DIRNAME [DEPENDENCY.tgz ...] mount_fs() { @@ -141,20 +141,15 @@ if [ "x$1" = "x-norestr" ]; then export NO_RESTRICTED=1 shift fi -plistcheck=0 -if [ "x$1" = "x-plistcheck" ]; then - plistcheck=1 - export PLISTCHECK=1 - shift -fi -nodummy=0 -if [ "x$1" = "x-nodummy" ]; then - nodummy=1 - export NODUMMY=1 +noplistcheck=0 +if [ "x$1" = "x-noplistcheck" ]; then + noplistcheck=1 + export NOPLISTCHECK=1 shift fi nodistfiles=1 if [ "x$1" = "x-distfiles" ]; then + export ALWAYS_KEEP_DISTFILES=1 nodistfiles=0 shift fi |