diff options
author | Yen-Ming Lee <leeym@FreeBSD.org> | 2005-12-23 18:12:05 +0000 |
---|---|---|
committer | Yen-Ming Lee <leeym@FreeBSD.org> | 2005-12-23 18:12:05 +0000 |
commit | 4838c3041b4494290a3ef447a94a5505cc093c8d (patch) | |
tree | 483491c146455e81dff2f5d46fa4f5d21993d7a7 /security/p5-Digest-Pearson | |
parent | 6cd83c2c1144d9153383433448059a428ffb9f8e (diff) | |
download | ports-4838c3041b4494290a3ef447a94a5505cc093c8d.tar.gz ports-4838c3041b4494290a3ef447a94a5505cc093c8d.zip |
Notes
Diffstat (limited to 'security/p5-Digest-Pearson')
-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> |