Prune down the default list of formats both to reduce space requirements

and to reduce runtime dependencies.  (Basically we get rid of PS,
because PDF is probably more widely used; html-split.tar, because
it's probably not that useful on an ISO image; and pdb, to get rid
of a dependency on iSilo).

Change volume title and publisher of ISO image to match precedent
of the real release ISOs.
This commit is contained in:
Bruce A. Mah 2006-05-29 23:54:51 +00:00
parent 2261993c9f
commit 982c4b3841
Notes: svn2git 2020-12-08 03:00:23 +00:00
svn path=/head/; revision=27968

View file

@ -46,7 +46,7 @@ BUILDNAME?= ${DATE}
#
# Set defaults for FORMATS, DOC_LANG, and INSTALL_COMPRESSED.
#
FORMATS?= ps pdf html html-split html-split.tar txt pdb
FORMATS?= pdf html html-split txt
#DOC_LANG?= en_US.ISO8859-1
INSTALL_COMPRESSED?= zip gz
@ -137,7 +137,7 @@ cdrom.1:
${TAR} xf - -C ${DOCCDROMSTAGEDIR}
# Make ISO images if desired.
.if defined(MAKE_ISOS)
cd ${DOCROOTDIR} && ${MKISOFS} -r -J -V fbsd_doc -o ${DOCSTAGEDIR}/doc.iso ${DOCCDROMSTAGEDIR}
cd ${DOCROOTDIR} && ${MKISOFS} -r -J -V FreeBSD_Docs -publisher "The FreeBSD Project. http://www.freebsd.org/" -o ${DOCSTAGEDIR}/doc.iso ${DOCCDROMSTAGEDIR}
.endif
.include "../share/mk/doc.project.mk"