diff options
author | itetcu <itetcu@FreeBSD.org> | 2008-06-28 15:34:16 +0800 |
---|---|---|
committer | itetcu <itetcu@FreeBSD.org> | 2008-06-28 15:34:16 +0800 |
commit | 3bd6062ac40e0d746d176e5e198527ed9c929f8f (patch) | |
tree | d3fb5a0c70f6f3981fbcf2f0288c0d93592d94f8 /www/indexme | |
parent | 44aeafdc86e0aa0b2c41fb5f9d89735936c7a411 (diff) | |
download | freebsd-ports-gnome-3bd6062ac40e0d746d176e5e198527ed9c929f8f.tar.gz freebsd-ports-gnome-3bd6062ac40e0d746d176e5e198527ed9c929f8f.tar.zst freebsd-ports-gnome-3bd6062ac40e0d746d176e5e198527ed9c929f8f.zip |
- use NO_INSTALL_MANPAGES instead of NOPORTDOCS where appropriate thus fix
plist iu -DNOPORTDOCS
- bump PORTREVISION
Submitted by: QA Tindy run
Diffstat (limited to 'www/indexme')
-rw-r--r-- | www/indexme/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/www/indexme/Makefile b/www/indexme/Makefile index 73384052019f..222021e75d54 100644 --- a/www/indexme/Makefile +++ b/www/indexme/Makefile @@ -7,6 +7,7 @@ PORTNAME= indexme PORTVERSION= 0.1 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= ftp://users.uk.freebsd.org/pub/lord_cj/ DISTNAME= ${PORTNAME} @@ -18,12 +19,16 @@ USE_PERL5= yes WRKSRC= ${WRKDIR}/indexme NO_BUILD= yes + +.if !defined(NO_INSTALL_MANPAGES) MAN1= indexme.1 +.endif + PLIST_FILES= bin/indexme do-install: @ ${INSTALL_SCRIPT} ${WRKSRC}/indexme ${PREFIX}/bin -.if !defined(NOPORTDOCS) +.if !defined(NO_INSTALL_MANPAGES) @ ${INSTALL_MAN} ${WRKSRC}/indexme.1 ${PREFIX}/man/man1 .endif .include <bsd.port.mk> |