diff options
author | roam <roam@FreeBSD.org> | 2002-03-21 12:06:59 +0000 |
---|---|---|
committer | roam <roam@FreeBSD.org> | 2002-03-21 12:06:59 +0000 |
commit | b028aa66bf1890363f22f657f8f4c2e9bb41cbc7 (patch) | |
tree | b9ded0005710a387e58f51fa588536f80b949322 /sysutils | |
parent | a596244be25b463f677f89c0757feac9140dedf4 (diff) | |
download | FreeBSD-ports-b028aa66bf1890363f22f657f8f4c2e9bb41cbc7.zip FreeBSD-ports-b028aa66bf1890363f22f657f8f4c2e9bb41cbc7.tar.gz |
Update to 1.2pre1 with no functional changes, just a lot of SGML DocBook
documentation on building, installing and using penv(1) added.
Documentation lack pointed out by: Gary W. Swearingen <swear@blarg.net>
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/penv/Makefile | 13 | ||||
-rw-r--r-- | sysutils/penv/distinfo | 2 | ||||
-rw-r--r-- | sysutils/penv/pkg-plist | 13 |
3 files changed, 24 insertions, 4 deletions
diff --git a/sysutils/penv/Makefile b/sysutils/penv/Makefile index cd189ab..db9d6f2 100644 --- a/sysutils/penv/Makefile +++ b/sysutils/penv/Makefile @@ -6,7 +6,7 @@ # PORTNAME= penv -PORTVERSION= 1.1 +PORTVERSION= 1.2.b1 CATEGORIES= sysutils MASTER_SITES= http://devel.ringlet.net/sysutils/penv/ DISTNAME= ${PORTNAME}-${PORTVERSION:S/.b/pre/} @@ -29,6 +29,11 @@ DBDIR?= /var/db/${PORTNAME} PLIST_SUB+= DBDIR=${DBDIR} +HTMLDOCS= docbook.css index.html penv-compat.html penv-history.html \ + penv-install.html penv-src.html penv-usage.html penv.html +HTMLCDOCS= changes.html changes.txt +TXTDOCS= penv.txt + post-install: ${MKDIR} ${PREFIX}/etc ${MKDIR} ${DBDIR} @@ -39,7 +44,11 @@ post-install: fi .if !defined(NOPORTDOCS) ${MKDIR} ${DOCSDIR}/html - ${INSTALL_DATA} ${WRKSRC}/doc/html/* ${DOCSDIR}/html + ${INSTALL_DATA} ${HTMLDOCS:S,^,${WRKSRC}/doc/html/,} ${DOCSDIR}/html + ${MKDIR} ${DOCSDIR}/html/changes + ${INSTALL_DATA} ${HTMLCDOCS:S,^,${WRKSRC}/doc/html/changes/,} ${DOCSDIR}/html/changes + ${MKDIR} ${DOCSDIR}/txt + ${INSTALL_DATA} ${TXTDOCS:S,^,${WRKSRC}/doc/txt/,} ${DOCSDIR}/txt .endif .include <bsd.port.mk> diff --git a/sysutils/penv/distinfo b/sysutils/penv/distinfo index 34e4edc..82ad498 100644 --- a/sysutils/penv/distinfo +++ b/sysutils/penv/distinfo @@ -1 +1 @@ -MD5 (penv-1.1.tar.gz) = 9e6dfbbf498b6ca5c9cd06f47b24cf4b +MD5 (penv-1.2pre1.tar.gz) = 5f14448c25f3a0d1456af1307a3d10c7 diff --git a/sysutils/penv/pkg-plist b/sysutils/penv/pkg-plist index 8d3647c..bed2431 100644 --- a/sysutils/penv/pkg-plist +++ b/sysutils/penv/pkg-plist @@ -2,9 +2,20 @@ bin/penv @unexec if cmp -s %D/etc/penv.conf %D/etc/penv.conf.default; then rm -f %D/etc/penv.conf; fi etc/penv.conf.default @exec [ -f %B/penv.conf ] || cp %B/%f %B/penv.conf -%%PORTDOCS%%share/doc/penv/html/created.with.vim.gif +%%PORTDOCS%%share/doc/penv/html/docbook.css %%PORTDOCS%%share/doc/penv/html/index.html +%%PORTDOCS%%share/doc/penv/html/penv-compat.html +%%PORTDOCS%%share/doc/penv/html/penv-history.html +%%PORTDOCS%%share/doc/penv/html/penv-install.html +%%PORTDOCS%%share/doc/penv/html/penv-src.html +%%PORTDOCS%%share/doc/penv/html/penv-usage.html +%%PORTDOCS%%share/doc/penv/html/penv.html +%%PORTDOCS%%share/doc/penv/html/changes/changes.html +%%PORTDOCS%%share/doc/penv/html/changes/changes.txt +%%PORTDOCS%%share/doc/penv/txt/penv.txt +%%PORTDOCS%%@dirrm share/doc/penv/html/changes %%PORTDOCS%%@dirrm share/doc/penv/html +%%PORTDOCS%%@dirrm share/doc/penv/txt %%PORTDOCS%%@dirrm share/doc/penv @exec mkdir -p %%DBDIR%% @unexec rmdir %%DBDIR%% 2>/dev/null || true |