diff options
Diffstat (limited to 'doc/guide')
-rw-r--r-- | doc/guide/Makefile | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/doc/guide/Makefile b/doc/guide/Makefile index 79c70c7304f..6e7fdb9a061 100644 --- a/doc/guide/Makefile +++ b/doc/guide/Makefile @@ -1,10 +1,10 @@ -# $NetBSD: Makefile,v 1.25 2006/09/18 22:36:48 rillig Exp $ +# $NetBSD: Makefile,v 1.26 2006/10/07 09:29:19 rillig Exp $ # DISTNAME= pkgsrc-guide-${PKGVERSION} CATEGORIES= # empty MASTER_SITES= ${MASTER_SITE_LOCAL} -DISTFILES= htdocs-share-20060529.tar.gz +DISTFILES= htdocs-share-20061007.tar.gz MAINTAINER= packages@NetBSD.org HOMEPAGE= http://www.NetBSD.org/Documentation/pkgsrc/ @@ -127,4 +127,14 @@ detab: perl -p -i".detab.tmp" -e '${DETAB_PROGRAM}' *.xml && \ ${RM} -f *.xml.detab.tmp +# Generates a new htdocs-share-*.tar.gz archive from the current +# contents of the htdocs directory. To make it available, it should +# be copied to ftp.NetBSD.org/pub/pkgsrc/distfiles/LOCAL_PORTS/. +.PHONY: htdocs-share +htdocs-share: + cd ${HTDOCSDIR} \ + && pax -wz -f ${.CURDIR}/htdocs-share-${PKGVERSION}.tar.gz \ + -s ',^,htdocs/,' \ + NetBSD.css share + .include "../../mk/bsd.pkg.mk" |