diff options
author | kris <kris@FreeBSD.org> | 2002-02-11 10:59:08 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2002-02-11 10:59:08 +0800 |
commit | 6eb73dc3ade46d4f422e619b3c109ad7a2a3adec (patch) | |
tree | fbdafb372b234f78abee59061a49c83e33f19067 /Tools/portbuild | |
parent | ba4788aa93488259330226ecdde62f042a294938 (diff) | |
download | freebsd-ports-gnome-6eb73dc3ade46d4f422e619b3c109ad7a2a3adec.tar.gz freebsd-ports-gnome-6eb73dc3ade46d4f422e619b3c109ad7a2a3adec.tar.zst freebsd-ports-gnome-6eb73dc3ade46d4f422e619b3c109ad7a2a3adec.zip |
Catch up to changes on bento:
* Update OSVERSIONs for the various branches; add 4-exp.
* Add SRCBASE environment variable and export it to the make job.
Diffstat (limited to 'Tools/portbuild')
-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 |