diff options
author | bmah <bmah@FreeBSD.org> | 2002-12-01 18:03:42 +0000 |
---|---|---|
committer | bmah <bmah@FreeBSD.org> | 2002-12-01 18:03:42 +0000 |
commit | 60e7b0b07f69e424e8351fa8287a70bb86d65132 (patch) | |
tree | 7a15df60b74184064f5df3fbb039ecc63038e239 /release/scripts | |
parent | 1bae0a9e0cda853d7f1cbad69c0fd04bcc2cc93e (diff) | |
download | FreeBSD-src-60e7b0b07f69e424e8351fa8287a70bb86d65132.zip FreeBSD-src-60e7b0b07f69e424e8351fa8287a70bb86d65132.tar.gz |
Make the following changes to the semi-automated package split:
1. On disc1, print/acroread4 for alpha and print/acroread5 for i386
replace print/acroread, which was not compatible with the linux_base
that we ship by default. Remove print/acroread4 from disc3 as
redundant.
2. www/linux-netscape47-* were removed due to security holes;
substitute www/netscape48-* on disc1.
3. Add www/opera to disc1.
Approved by: re (murray)
Diffstat (limited to 'release/scripts')
-rwxr-xr-x | release/scripts/print-cdrom-packages.sh | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/release/scripts/print-cdrom-packages.sh b/release/scripts/print-cdrom-packages.sh index c0066b3..f80c6d7 100755 --- a/release/scripts/print-cdrom-packages.sh +++ b/release/scripts/print-cdrom-packages.sh @@ -120,7 +120,12 @@ CDROM_SET_1="${CDROM_SET_1} net/samba" CDROM_SET_1="${CDROM_SET_1} news/slrn" CDROM_SET_1="${CDROM_SET_1} news/tin" CDROM_SET_1="${CDROM_SET_1} print/a2ps-letter" -CDROM_SET_1="${CDROM_SET_1} print/acroread" +if [ "X`uname -m`" = "Xalpha" ]; then +CDROM_SET_1="${CDROM_SET_1} print/acroread4" +fi +if [ "X`uname -m`" = "Xi386" ]; then +CDROM_SET_1="${CDROM_SET_1} print/acroread5" +fi CDROM_SET_1="${CDROM_SET_1} print/apsfilter" CDROM_SET_1="${CDROM_SET_1} print/ghostscript-gnu-nox11" CDROM_SET_1="${CDROM_SET_1} print/ghostview" @@ -131,11 +136,12 @@ CDROM_SET_1="${CDROM_SET_1} shells/bash2" CDROM_SET_1="${CDROM_SET_1} shells/pdksh" CDROM_SET_1="${CDROM_SET_1} shells/zsh" CDROM_SET_1="${CDROM_SET_1} sysutils/portupgrade" -CDROM_SET_1="${CDROM_SET_1} www/linux-netscape47-communicator" -CDROM_SET_1="${CDROM_SET_1} www/linux-netscape47-navigator" CDROM_SET_1="${CDROM_SET_1} www/lynx" CDROM_SET_1="${CDROM_SET_1} www/netscape-remote" CDROM_SET_1="${CDROM_SET_1} www/netscape-wrapper" +CDROM_SET_1="${CDROM_SET_1} www/netscape48-communicator" +CDROM_SET_1="${CDROM_SET_1} www/netscape48-navigator" +CDROM_SET_1="${CDROM_SET_1} www/opera" CDROM_SET_1="${CDROM_SET_1} x11/rxvt" # VERY common build dependencies @@ -158,7 +164,6 @@ CDROM_SET_1="${CDROM_SET_1} misc/compat4x" CDROM_SET_3="${CDROM_SET_3} editors/xemacs21" CDROM_SET_3="${CDROM_SET_3} lang/gnat" CDROM_SET_3="${CDROM_SET_3} net/cvsup-without-gui" -CDROM_SET_3="${CDROM_SET_3} print/acroread4" CDROM_SET_3="${CDROM_SET_3} print/teTeX" CDROM_SET_3="${CDROM_SET_3} textproc/docproj-jadetex" |