diff options
author | clement <clement@FreeBSD.org> | 2008-09-01 03:35:36 +0800 |
---|---|---|
committer | clement <clement@FreeBSD.org> | 2008-09-01 03:35:36 +0800 |
commit | 46bcff4c709d243e576b32afb620e6694d0d4b49 (patch) | |
tree | 4c4fdeef14f106536b67fee63a647f36e3ec1a97 /www/mod_cband | |
parent | 58d4d3cd06a438f14e94f63bf13941769db75d19 (diff) | |
download | freebsd-ports-gnome-46bcff4c709d243e576b32afb620e6694d0d4b49.tar.gz freebsd-ports-gnome-46bcff4c709d243e576b32afb620e6694d0d4b49.tar.zst freebsd-ports-gnome-46bcff4c709d243e576b32afb620e6694d0d4b49.zip |
- Fix plist when NOPORTDOCS is defined
Reported by: QA Tindy
Diffstat (limited to 'www/mod_cband')
-rw-r--r-- | www/mod_cband/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/www/mod_cband/Makefile b/www/mod_cband/Makefile index a487529e84d5..9d69f34ce498 100644 --- a/www/mod_cband/Makefile +++ b/www/mod_cband/Makefile @@ -7,7 +7,7 @@ PORTNAME= mod_cband PORTVERSION= 0.9.7.5 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www MASTER_SITES= http://www.sfr-fresh.com/unix/privat/ DISTNAME= ${PORTNAME:C/_/-/}-${PORTVERSION} @@ -24,9 +24,12 @@ ALL_TARGET= # PORTDOCS= libpatricia.copyright documentation.txt faq.txt post-install: +.if !defined(NOPORTDOCS) @${MKDIR} ${DOCSDIR} @${INSTALL_DATA} ${WRKSRC}/libpatricia.copyright ${DOCSDIR} @${INSTALL_DATA} ${WRKSRC}/doc/documentation.txt ${DOCSDIR} @${INSTALL_DATA} ${WRKSRC}/doc/faq.txt ${DOCSDIR} - +.else + @${DO_NADA} +.endif .include <bsd.port.mk> |