diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2002-02-11 02:59:08 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2002-02-11 02:59:08 +0000 |
commit | 5320b2628b88cd4a1228e2189414e0466f1fbd2a (patch) | |
tree | a1193b10d961c25dfaa0ba2ea0ccc85e1262596d | |
parent | 37be0b441e8abda58c90dbb9ab2846cc05bc906e (diff) | |
download | ports-5320b2628b88cd4a1228e2189414e0466f1fbd2a.tar.gz ports-5320b2628b88cd4a1228e2189414e0466f1fbd2a.zip |
Notes
-rwxr-xr-x | Tools/portbuild/scripts/makeduds | 13 | ||||
-rwxr-xr-x | Tools/portbuild/scripts/makeindex | 13 |
2 files changed, 20 insertions, 6 deletions
diff --git a/Tools/portbuild/scripts/makeduds b/Tools/portbuild/scripts/makeduds index 5b77f355f9a3..914d865d7957 100755 --- a/Tools/portbuild/scripts/makeduds +++ b/Tools/portbuild/scripts/makeduds @@ -27,14 +27,20 @@ case "x$1" in x4) branch=4 export PORTOBJFORMAT=elf - export OSREL=4.3 - export OSVERSION=430000 + export OSREL=4.5 + export OSVERSION=450000 + ;; + x4-exp) + branch=4-exp + export PORTOBJFORMAT=elf + export OSREL=4.5 + export OSVERSION=450000 ;; x5) branch=5 export PORTOBJFORMAT=elf export OSREL=5.0 - export OSVERSION=500017 + export OSVERSION=500027 ;; *) usage @@ -56,6 +62,7 @@ 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 make -j${DUDSJOBS} ignorelist ECHO_MSG=true > ${duds} || exit 1 diff --git a/Tools/portbuild/scripts/makeindex b/Tools/portbuild/scripts/makeindex index 2f75ef57f5d2..7f509f5dc405 100755 --- a/Tools/portbuild/scripts/makeindex +++ b/Tools/portbuild/scripts/makeindex @@ -27,14 +27,20 @@ case "x$1" in x4) branch=4 export PORTOBJFORMAT=elf - export OSREL=4.3 - export OSVERSION=430000 + export OSREL=4.5 + export OSVERSION=450000 + ;; + x4-exp) + branch=4-exp + export PORTOBJFORMAT=elf + export OSREL=4.5 + export OSVERSION=450000 ;; x5) branch=5 export PORTOBJFORMAT=elf export OSREL=5.0 - export OSVERSION=500017 + export OSVERSION=500027 ;; *) usage @@ -56,6 +62,7 @@ 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 #export INDEX_NOSORT=t |