diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2002-11-18 10:12:47 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2002-11-18 10:12:47 +0000 |
commit | 520ab052d87e97e93453a21c32ba1b406a4bf022 (patch) | |
tree | 73488eb0aaea1cb17c20285846b24d3efc665538 /Tools | |
parent | 0c7afd0d59141f89658ef21a5410e3cd8fc7dbf1 (diff) | |
download | ports-520ab052d87e97e93453a21c32ba1b406a4bf022.tar.gz ports-520ab052d87e97e93453a21c32ba1b406a4bf022.zip |
Notes
Diffstat (limited to 'Tools')
-rwxr-xr-x | Tools/portbuild/scripts/makeduds | 45 |
1 files changed, 7 insertions, 38 deletions
diff --git a/Tools/portbuild/scripts/makeduds b/Tools/portbuild/scripts/makeduds index 8d3999e787ca..daa50758b310 100755 --- a/Tools/portbuild/scripts/makeduds +++ b/Tools/portbuild/scripts/makeduds @@ -6,6 +6,8 @@ pb=/var/portbuild . ${pb}/portbuild.conf +. ${pb}/scripts/buildenv + # -j# to make duds DUDSJOBS=4 @@ -16,48 +18,15 @@ usage () { if [ $# != 1 ]; then usage fi -case "x$1" in - x4) - branch=4 - export PORTOBJFORMAT=elf - export OSREL=4.5 - export OSVERSION=450002 - ;; - x4-exp) - branch=4-exp - export PORTOBJFORMAT=elf - export OSREL=4.5 - export OSVERSION=450002 - ;; - x5) - branch=5 - export PORTOBJFORMAT=elf - export OSREL=5.0 - export OSVERSION=500031 - ;; - *) - usage - ;; -esac -export PORTSDIR=${pb}/${branch}/ports +branch=$1 + +buildenv ${pb} ${branch} + duds=${pb}/${branch}/duds -if [ "x$NODUMMY" = "x" ]; then - unset XFREE86_VERSION - unset MOTIF_OPEN -else - export XFREE86_VERSION=4 - export MOTIF_OPEN=t -fi unset DISPLAY -export BATCH=t -export HAVE_MOTIF=t -export PACKAGE_BUILDING=t -export PARALLEL_PACKAGE_BUILD=t -export SRCBASE=/var/portbuild/${branch}/src -#export NO_RESTRICTED=t -#export FOR_CDROM=t + cd ${PORTSDIR} make -j${DUDSJOBS} ignorelist ECHO_MSG=true > ${duds} || exit 1 sort ${duds} > ${duds}.tmp |