diff --git a/release/scripts/instdist.sh b/release/scripts/instdist.sh index d774f4c81e5..c9ae81bb29d 100644 --- a/release/scripts/instdist.sh +++ b/release/scripts/instdist.sh @@ -10,7 +10,7 @@ # putting your name on top after doing something trivial like reindenting # it, just to make it look like you wrote it!). # -# $Id: instdist.sh,v 1.51 1995/01/12 16:18:18 jkh Exp $ +# $Id: instdist.sh,v 1.1 1995/01/14 07:41:47 jkh Exp $ if [ "${_INSTINST_SH_LOADED_}" = "yes" ]; then return 0 @@ -319,13 +319,14 @@ from the U.S. Please don't endanger U.S. ftp sites by getting it\n\ illegally, thanks! When finished, select ." \ -1 -1 10 \ "?diskfree" "How much disk space do I have free?" OFF \ - "bindist" "Binary base files (mandatory - ${BINSIZE})" ON \ + "bin" "Binary base files (mandatory - ${BINSIZE})" ON \ "games" "Games and other frivolities (optional - ${GAMESIZE})" OFF \ + "info" "GNU info files for various utilities (optional - ${INFOSIZE})" OFF \ "manpages" "Manual pages (optional - ${MANSIZE})" OFF \ "proflibs" "Profiled libraries (optional - ${PROFSIZE})" OFF \ "dict" "Spelling checker dictionary files (optional - ${DICTSIZE})" OFF \ - "srcdist" "Sources for everything but DES (optional - ${SRCSIZE})" OFF \ - "secrdist" "DES encryption code (and sources) (optional - ${SECRSIZE})" OFF \ + "src" "Sources for everything but DES (optional - ${SRCSIZE})" OFF \ + "secure" "DES encryption code (and sources) (optional - ${SECRSIZE})" OFF \ "compat1xdist" "FreeBSD 1.x binary compatability (optional - ${COMPATSIZE})" OFF \ "XFree86-3.1" "The XFree86 3.1 distribution (optional - ${X11SIZE})" OFF \ 2> ${TMP}/menu.tmp.$$ diff --git a/release/scripts/miscfuncs.sh b/release/scripts/miscfuncs.sh index 3667ba89bad..5d626af5b25 100644 --- a/release/scripts/miscfuncs.sh +++ b/release/scripts/miscfuncs.sh @@ -10,7 +10,7 @@ # putting your name on top after doing something trivial like reindenting # it, just to make it look like you wrote it!). # -# $Id: miscfuncs.sh,v 1.14 1995/01/12 10:34:37 jkh Exp $ +# $Id: miscfuncs.sh,v 1.1 1995/01/14 07:41:48 jkh Exp $ if [ "${_MISCFUNCS_SH_LOADED_}" = "yes" ]; then return 0 @@ -32,13 +32,14 @@ INSTALL_TYPE="" # the hardwired constants will be replaced with tokens that get sed'd for # the real sizes. # -BINSIZE="40MB" -GAMESIZE="8MB" -MANSIZE="8MB" -PROFSIZE="4MB" -DICTSIZE="2MB" -SRCSIZE="120MB" -SECRSIZE="4MB" +BINSIZE="28MB" +GAMESIZE="6MB" +MANSIZE="4MB" +INFOSIZE="2MB" +PROFSIZE="2MB" +DICTSIZE="3MB" +SRCSIZE="56MB" +SECRSIZE="1MB" COMPATSIZE="3MB" X11SIZE="50MB"