summaryrefslogtreecommitdiffstats
path: root/release
diff options
context:
space:
mode:
authorblackend <blackend@FreeBSD.org>2009-06-28 08:59:46 +0000
committerblackend <blackend@FreeBSD.org>2009-06-28 08:59:46 +0000
commite32c401685c4415341818d7f785b56cecc712b70 (patch)
treec82be5301366ca35613d0ddffd5c2b14570f9af1 /release
parent25ffa6178c929df93fd0e0ca37ad532423b11a6d (diff)
downloadFreeBSD-src-e32c401685c4415341818d7f785b56cecc712b70.zip
FreeBSD-src-e32c401685c4415341818d7f785b56cecc712b70.tar.gz
- release/* update to use freebsd-doc-* packages instead of building
FreeBSD docset during 'make release' this will speed up release builds; - sysinstall(8) has also been updated to use these packages with a new menu allowing people to choose what localized doc to install; - mention in UPDATING that docs from the FreeBSD Documentation project are now installed in /usr/local/share/doc/freebsd instead of /usr/share/doc. Approved by: re (kensmith)
Diffstat (limited to 'release')
-rw-r--r--release/Makefile43
-rw-r--r--release/scripts/package-split.py25
2 files changed, 38 insertions, 30 deletions
diff --git a/release/Makefile b/release/Makefile
index f87bbd9..22f250a 100644
--- a/release/Makefile
+++ b/release/Makefile
@@ -39,6 +39,10 @@ BUILDNAME?=${BASE}-${DATE}-SNAP
# checking out from a local CVS repository, set this option.
#EXTPORTSDIR=/usr/ports
#
+# To use a checked-out doc/ directory instead of
+# checking out from a local CVS repository, set this option.
+#EXTDOCDIR=/usr/doc
+#
# To add other options to the CVS subcommands (co,up), set
#CVSCMDARGS="-D '01/01/2002 00:00:00 UTC'"
#
@@ -91,15 +95,13 @@ RELEASEPORTSMODULE?= ports
# the ports tree, so NOPORTS can be set together with NODOC in order
# to have neither ports or docs. If only NOPORTS is set to YES, but
# docs are still desired, the DOMINIMALDOCPORTS logic below will only
-# install the ports that are minimally required for the docs. This is
+# install the ports that are minimally required for the release note documentation. This is
# intended as a compromise, less disk space is required than for using
# the entire ports collection (and much less time due to the huge number
# of directories it would create), but still quite a bit as well as some
# CPU cycles (some of the programs are C++, and things like ghostscript
# belong to the required ports nevertheless).
#
-# Setting this also disables building of release note documentation
-# (RELNOTESng).
#NODOC= YES
#NOPORTS= YES
@@ -141,11 +143,6 @@ NOPORTSATALL= YES
#
# Doing 'make index' in /usr/ports requires Perl.
MAKEINDEXPORTS= lang/perl5.8
-# By default, documentation (Handbook, FAQ, etc.) is built for all
-# the languages. To speed up building, set the DOC_LANG to just
-# the languages you need. (The language for the release notes is
-# controlled by the RELNOTES_LANG variable above.)
-#DOC_LANG= en_US.ISO8859-1
DOCPORTS= textproc/docproj
# Set this to wherever the distfiles required by release procedures.
.if defined(DOCDISTFILES)
@@ -348,7 +345,7 @@ release rerelease:
@echo "To make a release you must set CHROOTDIR, BUILDNAME and CVSROOT" && false
.endif
.if defined(NOPORTSATALL) && !defined(NODOC)
- @echo "Ports are required for building the docs. Either set NODOC or"
+ @echo "Ports are required for building the release docs. Either set NODOC or"
@echo "unset NOPORTS, or set at least DOMINIMALDOCPORTS to YES!"
@exit 1
.endif
@@ -477,7 +474,6 @@ release rerelease:
BUILDNAME \
CD_PACKAGE_TREE \
DISTRIBUTIONS \
- DOC_LANG \
DOMINIMALDOCPORTS \
EXTRA_SRC \
FTP_PASSIVE_MODE \
@@ -1037,21 +1033,7 @@ cdrom.2:
@echo "Building CDROM docs filesystem image"
@mkdir -p ${CD_DOCS}
@echo "CD_VERSION = ${BUILDNAME}" > ${CD_DOCS}/cdrom.inf
- @mkdir -p ${CD_DOCS}/usr/share/doc
-.if defined(MAKE_DVD)
- @mkdir -p ${CD_DVD1}/usr/share/doc
-.endif
- @for i in `ls ${CD_LIVEFS}/usr/share/doc`; do \
- if [ -L ${CD_LIVEFS}/usr/share/doc/$$i -o \
- -d /usr/doc/$$i ]; then \
- mv ${CD_LIVEFS}/usr/share/doc/$$i \
- ${CD_DOCS}/usr/share/doc; \
- fi \
- done
-.if defined(MAKE_DVD)
- @cd ${CD_DOCS}/usr/share/doc && find . -print | \
- cpio -dumpl ${CD_DVD1}/usr/share/doc
-.endif
+ @echo "CD_VOLUME = 3" >> ${CD_DOCS}/cdrom.inf
.endif
touch ${.TARGET}
@@ -1082,6 +1064,11 @@ CD_DISC1_PKGS= ${CD_PACKAGE_TREE}/disc1
.if exists(${CD_PACKAGE_TREE}/disc2)
CD_DISC2_PKGS= ${CD_PACKAGE_TREE}/disc2
.endif
+# scripts/package-trees.sh names all discs according to the "discX"
+# scheme where X is the number of the disc
+.if exists(${CD_PACKAGE_TREE}/disc3)
+CD_DOCS_PKGS= ${CD_PACKAGE_TREE}/disc3
+.endif
.if exists(${CD_PACKAGE_TREE}/dvd1)
CD_DVD1_PKGS= ${CD_PACKAGE_TREE}/dvd1
.endif
@@ -1113,7 +1100,8 @@ iso.1:
.if !defined(NODOC)
@sh ${.CURDIR}/${TARGET_ARCH}/mkisoimages.sh \
FreeBSD_Documentation \
- ${CD}/${BUILDNAME}-${TARGET}-docs.iso ${CD_DOCS}
+ ${CD}/${BUILDNAME}-${TARGET}-disc3.iso ${CD_DOCS} \
+ ${CD_DOCS_PKGS}
.endif
.if defined(SEPARATE_LIVEFS)
@sh ${.CURDIR}/${TARGET_ARCH}/mkisoimages.sh ${BOOTABLE} \
@@ -1139,9 +1127,6 @@ doc.1:
make all install clean BATCH=yes WITHOUT_X11=yes JADETEX=no \
WITHOUT_PYTHON=yes FORCE_PKG_REGISTER=yes; \
done
- @cd /usr/doc && make all install 'FORMATS=html html-split txt' \
- INSTALL_COMPRESSED='' DOCDIR=${RD}/trees/base/usr/share/doc \
- URLS_ABSOLUTE=YES
touch ${.TARGET}
#
diff --git a/release/scripts/package-split.py b/release/scripts/package-split.py
index 6eb5953..54fdde0 100644
--- a/release/scripts/package-split.py
+++ b/release/scripts/package-split.py
@@ -86,11 +86,34 @@ def disc2_packages():
'ports-mgmt/portaudit'])
return pkgs
+def docs_packages():
+ pkgs = ['misc/freebsd-doc-bn',
+ 'misc/freebsd-doc-da',
+ 'misc/freebsd-doc-de',
+ 'misc/freebsd-doc-el',
+ 'misc/freebsd-doc-en',
+ 'misc/freebsd-doc-es',
+ 'misc/freebsd-doc-fr',
+ 'misc/freebsd-doc-hu',
+ 'misc/freebsd-doc-it',
+ 'misc/freebsd-doc-ja',
+ 'misc/freebsd-doc-mn',
+ 'misc/freebsd-doc-nl',
+ 'misc/freebsd-doc-pl',
+ 'misc/freebsd-doc-pt',
+ 'misc/freebsd-doc-ru',
+ 'misc/freebsd-doc-sr',
+ 'misc/freebsd-doc-tr',
+ 'misc/freebsd-doc-zh_cn',
+ 'misc/freebsd-doc-zh_tw']
+ return pkgs
+
# The list of desired packages
def desired_packages():
disc1 = disc1_packages()
disc2 = disc2_packages()
- return [disc1, disc2]
+ docs = docs_packages()
+ return [disc1, disc2, docs]
# Suck the entire INDEX file into a two different dictionaries. The first
# dictionary maps port names (origins) to package names. The second
OpenPOWER on IntegriCloud