diff options
author | krion <krion@FreeBSD.org> | 2004-03-30 09:41:59 +0000 |
---|---|---|
committer | krion <krion@FreeBSD.org> | 2004-03-30 09:41:59 +0000 |
commit | 78e204f650bd108b448b5e609901393dc4b1ed40 (patch) | |
tree | 44a3bed6cb8f6b0414b6613da0439e1145761e44 | |
parent | 1454d352cc1c710771fafd566e3a63b299c84ec8 (diff) | |
download | FreeBSD-ports-78e204f650bd108b448b5e609901393dc4b1ed40.zip FreeBSD-ports-78e204f650bd108b448b5e609901393dc4b1ed40.tar.gz |
- Add PORTDOCS
PR: ports/64925
Submitted by: michael johnson <ahze@ahze.net>
-rw-r--r-- | devel/ccache/Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/devel/ccache/Makefile b/devel/ccache/Makefile index 02d2b25..5aa0932 100644 --- a/devel/ccache/Makefile +++ b/devel/ccache/Makefile @@ -7,6 +7,7 @@ PORTNAME= ccache PORTVERSION= 2.3 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://ccache.samba.org/ftp/ccache/ @@ -17,4 +18,15 @@ GNU_CONFIGURE= yes MAN1= ccache.1 PLIST_FILES= bin/ccache +PORTDOCS= index.html \ + ccache-man.html + +post-install: +.if !defined(NOPORTDOCS) + ${MKDIR} ${DOCSDIR} +.for i in ${PORTDOCS} + ${INSTALL_DATA} ${WRKSRC}/web/${i} ${DOCSDIR} +.endfor +.endif + .include <bsd.port.mk> |