diff options
Diffstat (limited to 'security/p5-Digest-Pearson/Makefile')
-rw-r--r-- | security/p5-Digest-Pearson/Makefile | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/security/p5-Digest-Pearson/Makefile b/security/p5-Digest-Pearson/Makefile index 5b06fcb5656f..b54ddeeb7fe5 100644 --- a/security/p5-Digest-Pearson/Makefile +++ b/security/p5-Digest-Pearson/Makefile @@ -13,12 +13,16 @@ PKGNAMEPREFIX= p5- MAINTAINER= gkovesdan@t-hosting.hu COMMENT= Perl extension for Peter K. Pearson's hash algorithm -PERL_CONFIGURE= yes +PERL_CONFIGURE= yes MAN3= Digest::Pearson.3 .include <bsd.port.pre.mk> -.if ${PERL_LEVEL} <= 500503 -IGNORE= requires Perl 5.6. Intall lang/perl5 or lang/perl5.8, and try again + +.if ${PERL_LEVEL} < 500600 +post-patch: + ${PERL} -pi -e 's/^our\s+([\$$\@\%]\w+)/use vars qw($$1); $$1/;' ${WRKSRC}/Pearson.pm + ${PERL} -pi -e '$$_="" if m{5.006|warnings}' ${WRKSRC}/Pearson.pm .endif + .include <bsd.port.post.mk> |