diff options
author | Maxim Sobolev <sobomax@FreeBSD.org> | 2003-02-20 16:33:26 +0000 |
---|---|---|
committer | Maxim Sobolev <sobomax@FreeBSD.org> | 2003-02-20 16:33:26 +0000 |
commit | 628b215647a7f7c1e3232ad55bb67fd7cbdb9f14 (patch) | |
tree | 9dee99152b7b92fefea393e2a79a64b07ab74dff /net/p5-URI | |
parent | 029b209d330e5082cbae2c7100c55eed692fafd2 (diff) | |
download | ports-628b215647a7f7c1e3232ad55bb67fd7cbdb9f14.tar.gz ports-628b215647a7f7c1e3232ad55bb67fd7cbdb9f14.zip |
Notes
Diffstat (limited to 'net/p5-URI')
-rw-r--r-- | net/p5-URI/Makefile | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/net/p5-URI/Makefile b/net/p5-URI/Makefile index b1a5d659b92f..f72111820736 100644 --- a/net/p5-URI/Makefile +++ b/net/p5-URI/Makefile @@ -14,8 +14,6 @@ PKGNAMEPREFIX= p5- MAINTAINER= erwin@lansing.dk -BUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/MIME/Base64.pm:${PORTSDIR}/converters/p5-MIME-Base64 - PERL_CONFIGURE= yes MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} @@ -29,8 +27,15 @@ MAN3= URI.3 \ URI::file.3 \ URI::ldap.3 +.include <bsd.port.pre.mk> + +.if ${PERL_LEVEL} < 500800 +BUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/MIME/Base64.pm:${PORTSDIR}/converters/p5-MIME-Base64 +RUN_DEPENDS= ${BUILD_DEPENDS} +.endif + post-patch: ${PERL} -pi -e 's/^our\s+([\$$\@\%]\w+)/use vars qw($$1);/' \ ${WRKSRC}/URI/urn.pm -.include <bsd.port.mk> +.include <bsd.port.post.mk> |