Index: head/misc/freebsd-doc-all/Makefile =================================================================== --- head/misc/freebsd-doc-all/Makefile (revision 292994) +++ head/misc/freebsd-doc-all/Makefile (revision 292995) @@ -1,46 +1,46 @@ # New ports collection makefile for: freebsd-doc-all # Date created: 13 August 2008 # Whom: Marc Fonvieille # # $FreeBSD$ # PORTNAME= freebsd-doc-all -PORTVERSION= 20120305 +PORTVERSION= 20120308 CATEGORIES= misc docs MASTER_SITES= #empty DISTFILES= #empty EXTRACT_ONLY= #empty MAINTAINER= doceng@FreeBSD.org COMMENT= Documentation from the FreeBSD Documentation Project RUN_DEPENDS+= bn-freebsd-doc>=${PORTVERSION}:${PORTSDIR}/misc/freebsd-doc-bn \ da-freebsd-doc>=${PORTVERSION}:${PORTSDIR}/misc/freebsd-doc-da \ de-freebsd-doc>=${PORTVERSION}:${PORTSDIR}/misc/freebsd-doc-de \ el-freebsd-doc>=${PORTVERSION}:${PORTSDIR}/misc/freebsd-doc-el \ en-freebsd-doc>=${PORTVERSION}:${PORTSDIR}/misc/freebsd-doc-en \ es-freebsd-doc>=${PORTVERSION}:${PORTSDIR}/misc/freebsd-doc-es \ fr-freebsd-doc>=${PORTVERSION}:${PORTSDIR}/misc/freebsd-doc-fr \ hu-freebsd-doc>=${PORTVERSION}:${PORTSDIR}/misc/freebsd-doc-hu \ it-freebsd-doc>=${PORTVERSION}:${PORTSDIR}/misc/freebsd-doc-it \ ja-freebsd-doc>=${PORTVERSION}:${PORTSDIR}/misc/freebsd-doc-ja \ mn-freebsd-doc>=${PORTVERSION}:${PORTSDIR}/misc/freebsd-doc-mn \ nl-freebsd-doc>=${PORTVERSION}:${PORTSDIR}/misc/freebsd-doc-nl \ pl-freebsd-doc>=${PORTVERSION}:${PORTSDIR}/misc/freebsd-doc-pl \ pt-freebsd-doc>=${PORTVERSION}:${PORTSDIR}/misc/freebsd-doc-pt \ ru-freebsd-doc>=${PORTVERSION}:${PORTSDIR}/misc/freebsd-doc-ru \ sr-freebsd-doc>=${PORTVERSION}:${PORTSDIR}/misc/freebsd-doc-sr \ tr-freebsd-doc>=${PORTVERSION}:${PORTSDIR}/misc/freebsd-doc-tr \ zh_cn-freebsd-doc>=${PORTVERSION}:${PORTSDIR}/misc/freebsd-doc-zh_cn \ zh_tw-freebsd-doc>=${PORTVERSION}:${PORTSDIR}/misc/freebsd-doc-zh_tw NO_BUILD= yes do-install: # empty .if make(package) DEPENDS_TARGET="package" .endif .include Property changes on: head/misc/freebsd-doc-all/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.42 \ No newline at end of property +1.43 \ No newline at end of property Index: head/misc/freebsd-doc-en/Makefile =================================================================== --- head/misc/freebsd-doc-en/Makefile (revision 292994) +++ head/misc/freebsd-doc-en/Makefile (revision 292995) @@ -1,110 +1,110 @@ # New ports collection makefile for: freebsd-doc-en # Date created: 13 August 2008 # Whom: Marc Fonvieille # # $FreeBSD$ # # Several knobs can be used to select the documentation formats. # # WITH_HTML_SPLIT allows the build of the "html-split" format: # This is the default format, it is the same format used on # www.FreeBSD.org. It is a collection of small, linked HTML files # (index.html, plus images and secondary files). # # WITH_HTML allows the build of the "html" format: # a single HTML file per document (article.html or book.html, as # appropriate, plus images). # # WITH_PDF allows the build of the "pdf" format: # Adobe Portable Document Format, for use with Adobe # Acrobat Reader or Ghostscript (article.pdf or book.pdf, as # appropriate). # # WITH_PS allows the build of the "ps" format: # Postscript (article.ps or book.ps, as appropriate). # # WITH_TXT allows the build of the "txt" format: # Plain text (article.txt or book.txt, as appropriate). # PORTNAME= freebsd-doc -PORTVERSION= 20120305 +PORTVERSION= 20120308 CATEGORIES= misc docs MASTER_SITES= LOCAL/blackend PKGNAMEPREFIX?= en- MAINTAINER= doceng@FreeBSD.org COMMENT?= Documentation from the FreeBSD Documentation Project WRKSRC= ${WRKDIR}/doc PLIST_SUB= DOCSDIR=${DOCBASE} \ DOCLANG=${DOCLANG} \ DOCLANG_PREFIX=${DOCLANG_PREFIX} MAKE_ARGS= FORMATS="${DOCFORMAT}" \ DOC_LANG="${DOCLANG}" \ INSTALL_COMPRESSED= \ DOCDIR=${PREFIX}/${DOCBASE} \ DOCOWN=${SHAREOWN} \ DOCGRP=${SHAREGRP} DOCLANG?= en_US.ISO8859-1 DOCLANG_PREFIX?= ${DOCLANG:C/_.*$//} DOCBASE?= share/doc/freebsd PLIST= ${WRKDIR}/pkg-plist OPTIONS= HTML "Single HTML file per document" Off \ HTML_SPLIT "The default HTML format used on www.FreeBSD.org" On \ PDF "PDF format" On \ PS "PostScript format" Off \ TXT "Plain text" Off .include AVAILABLEFORMATS= HTML HTML_SPLIT PDF PS TXT # if PACKAGE_BUILDING=yes, enable all of $AVAILABLEFORMATS. .if defined(PACKAGE_BUILDING) .for F in ${AVAILABLEFORMATS} WITH_${F}= yes .endfor .endif # translate "WITH_FOO=yes" into "DOCFORMAT+=FOO". .for F in ${AVAILABLEFORMATS} .if defined(WITH_${F}) && !empty(WITH_${F}) DOCFORMAT+= ${F:L:S,_,-,} .endif .endfor # set a default value when DOCFORMAT is empty .if empty(DOCFORMAT) DOCFORMAT= html-split WITH_HTML_SPLIT= yes .endif .if defined(WITH_PDF) || defined(WITH_PS) BUILD_DEPENDS= docproj-jadetex>=1.17:${PORTSDIR}/textproc/docproj-jadetex .else BUILD_DEPENDS= docproj-nojadetex>=1.17:${PORTSDIR}/textproc/docproj-nojadetex .endif MAKE_JOBS_UNSAFE= yes .for F in ${DOCFORMAT:L} PLIST_FORMATS+= ${F:L} .endfor # when html or html-split is defined as the format, add HTML_COMMON. .if defined(WITH_HTML) || defined(WITH_HTML_SPLIT) PLIST_FORMATS+= html-common .endif # example files, scripts, etc. coming with the doc and common # directories for all formats. PLIST_FORMATS+= extras common pre-build: ${CAT} ${PLIST_FORMATS:S,^,${.CURDIR}/pkg-plist.,} > ${PLIST} .include Property changes on: head/misc/freebsd-doc-en/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.45 \ No newline at end of property +1.46 \ No newline at end of property Index: head/misc/freebsd-doc-en/distinfo =================================================================== --- head/misc/freebsd-doc-en/distinfo (revision 292994) +++ head/misc/freebsd-doc-en/distinfo (revision 292995) @@ -1,2 +1,2 @@ -SHA256 (freebsd-doc-20120305.tar.gz) = 3263ee9ea9d841968a8bed962df5030849dc0996f0a18908269b6020347caa95 -SIZE (freebsd-doc-20120305.tar.gz) = 28375715 +SHA256 (freebsd-doc-20120308.tar.gz) = 66c00f28958d54d0d95523341da4084150d91a50a5a933aeb8b6eb6ae485a3ad +SIZE (freebsd-doc-20120308.tar.gz) = 28375475 Property changes on: head/misc/freebsd-doc-en/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.41 \ No newline at end of property +1.42 \ No newline at end of property