diff options
author | Wolfram Schneider <wosch@FreeBSD.org> | 2003-07-31 09:20:12 +0000 |
---|---|---|
committer | Wolfram Schneider <wosch@FreeBSD.org> | 2003-07-31 09:20:12 +0000 |
commit | 33ef7afe164d908cc2724a8dfb12158a7e5af908 (patch) | |
tree | 8821a13fe664b4587852b49b0ac916e90605449f /www/checkbot | |
parent | d10404463659ef508df016af77c503eebc24e5e9 (diff) | |
download | ports-33ef7afe164d908cc2724a8dfb12158a7e5af908.tar.gz ports-33ef7afe164d908cc2724a8dfb12158a7e5af908.zip |
Fix package building problems on bento.
Not sure if this fully resolves the issue, but it fixes local tests.
PR: ports/55074
Submitted by: Lars Eggert <larse@isi.edu>
Notes
Notes:
svn path=/head/; revision=86034
Diffstat (limited to 'www/checkbot')
-rw-r--r-- | www/checkbot/Makefile | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/www/checkbot/Makefile b/www/checkbot/Makefile index a92f6e49e75c..18fa1cf78bea 100644 --- a/www/checkbot/Makefile +++ b/www/checkbot/Makefile @@ -14,8 +14,7 @@ MASTER_SITES= http://degraaff.org/checkbot/ \ MAINTAINER= wosch@FreeBSD.org COMMENT= A WWW link verifier, similar like momspider -RUN_DEPENDS= \ - ${SITE_PERL}/LWP.pm:${PORTSDIR}/www/p5-libwww \ +RUN_DEPENDS= ${SITE_PERL}/LWP.pm:${PORTSDIR}/www/p5-libwww \ ${SITE_PERL}/URI.pm:${PORTSDIR}/net/p5-URI \ ${SITE_PERL}/${PERL_ARCH}/HTML/Parser.pm:${PORTSDIR}/www/p5-HTML-Parser \ ${SITE_PERL}/Net/FTP.pm:${PORTSDIR}/net/p5-Net \ @@ -23,9 +22,14 @@ RUN_DEPENDS= \ ${SITE_PERL}/${PERL_ARCH}/MIME/Base64.pm:${PORTSDIR}/converters/p5-MIME-Base64 \ ${SITE_PERL}/${PERL_ARCH}/Digest/MD5.pm:${PORTSDIR}/security/p5-Digest-MD5 +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 500000 MAN1PREFIX= ${PREFIX}/share +.endif + MAN1= checkbot.1 USE_PERL5= YES PERL_CONFIGURE= yes -.include <bsd.port.mk> +.include <bsd.port.post.mk> |