summaryrefslogtreecommitdiff
path: root/Tools/portbuild
diff options
context:
space:
mode:
authorKris Kennaway <kris@FreeBSD.org>2002-11-18 10:12:47 +0000
committerKris Kennaway <kris@FreeBSD.org>2002-11-18 10:12:47 +0000
commit520ab052d87e97e93453a21c32ba1b406a4bf022 (patch)
tree73488eb0aaea1cb17c20285846b24d3efc665538 /Tools/portbuild
parentUpdate to TIDE 1.6. (fixes build on -current) (diff)
Convert this to buildenv to make it actually work properly.
Notes
Notes: svn path=/head/; revision=70391
Diffstat (limited to 'Tools/portbuild')
-rwxr-xr-xTools/portbuild/scripts/makeduds45
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