diff options
author | John Marino <marino@FreeBSD.org> | 2014-03-02 09:18:29 +0000 |
---|---|---|
committer | John Marino <marino@FreeBSD.org> | 2014-03-02 09:18:29 +0000 |
commit | 2f4c4a541c14cffb953a519334a5254be4bd89aa (patch) | |
tree | c7eb2fbd04086a3e71bec87af6cc26a38726fb3c /devel/cvs2html | |
parent | d3487b0c143a22cf581ab26faf98b0ffb461a47a (diff) | |
download | ports-2f4c4a541c14cffb953a519334a5254be4bd89aa.tar.gz ports-2f4c4a541c14cffb953a519334a5254be4bd89aa.zip |
Notes
Diffstat (limited to 'devel/cvs2html')
-rw-r--r-- | devel/cvs2html/Makefile | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/devel/cvs2html/Makefile b/devel/cvs2html/Makefile index f99863e13b15..fb77dc51549a 100644 --- a/devel/cvs2html/Makefile +++ b/devel/cvs2html/Makefile @@ -16,14 +16,19 @@ COMMENT= Perl script to turn ``cvs log'' output into HTML LICENSE= GPLv2 -RUN_DEPENDS= cvs:${PORTSDIR}/devel/cvs - PLIST_FILES= bin/cvs2html NO_WRKSUBDIR= yes NO_BUILD= yes USES= perl5 shebangfix SHEBANG_FILES= ${PORTNAME} +.include <bsd.port.pre.mk> + +.if ${OPSYS} == FreeBSD +# DragonFly has CVS in base and devel/cvs doesn't build there +RUN_DEPENDS= cvs:${PORTSDIR}/devel/cvs +.endif + do-extract: @${MKDIR} ${WRKSRC} @${CP} ${DISTDIR}/${PORTNAME} ${WRKSRC} @@ -31,4 +36,4 @@ do-extract: do-install: ${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin -.include <bsd.port.mk> +.include <bsd.port.post.mk> |