diff options
author | leeym <leeym@FreeBSD.org> | 2005-12-30 20:38:46 +0000 |
---|---|---|
committer | leeym <leeym@FreeBSD.org> | 2005-12-30 20:38:46 +0000 |
commit | 35eb7bc43e052958b25c8f8d3bc18344b97ea49e (patch) | |
tree | 103fdc1ba49d56446a14ad56585eef818b558917 /security/p5-Crypt-Rabbit | |
parent | 2261c8374a7659ced17cb21e85132a66638967af (diff) | |
download | FreeBSD-ports-35eb7bc43e052958b25c8f8d3bc18344b97ea49e.zip FreeBSD-ports-35eb7bc43e052958b25c8f8d3bc18344b97ea49e.tar.gz |
- remove IGNORE on old perl
Submitted by: leeym
Approved by: maintainer via email
Diffstat (limited to 'security/p5-Crypt-Rabbit')
-rw-r--r-- | security/p5-Crypt-Rabbit/Makefile | 12 | ||||
-rw-r--r-- | security/p5-Crypt-Rabbit/files/extrapatch-Rabbit.xs | 18 |
2 files changed, 28 insertions, 2 deletions
diff --git a/security/p5-Crypt-Rabbit/Makefile b/security/p5-Crypt-Rabbit/Makefile index e021749..6962cd4 100644 --- a/security/p5-Crypt-Rabbit/Makefile +++ b/security/p5-Crypt-Rabbit/Makefile @@ -18,7 +18,15 @@ PERL_CONFIGURE= yes MAN3= Crypt::Rabbit.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 +BUILD_DEPENDS+= ${SITE_PERL}/XSLoader.pm:${PORTSDIR}/devel/p5-XSLoader +RUN_DEPENDS+= ${SITE_PERL}/XSLoader.pm:${PORTSDIR}/devel/p5-XSLoader +EXTRA_PATCHES+= ${PATCHDIR}/extrapatch-Rabbit.xs + +post-patch: + ${PERL} -pi -e 's/^our\s+([\$$\@\%]\w+)/use vars qw($$1); $$1/;' ${WRKSRC}/Rabbit.pm + ${PERL} -pi -e '$$_="" if m{warnings}' ${WRKSRC}/Rabbit.pm ${WRKSRC}/t/*.t .endif + .include <bsd.port.post.mk> diff --git a/security/p5-Crypt-Rabbit/files/extrapatch-Rabbit.xs b/security/p5-Crypt-Rabbit/files/extrapatch-Rabbit.xs new file mode 100644 index 0000000..ccff81e --- /dev/null +++ b/security/p5-Crypt-Rabbit/files/extrapatch-Rabbit.xs @@ -0,0 +1,18 @@ +--- Rabbit.xs.orig Sat Dec 31 03:49:51 2005 ++++ Rabbit.xs Sat Dec 31 03:50:13 2005 +@@ -4,6 +4,15 @@ + #include "ppport.h" + #include "_rabbit.c" + ++/* try to be compatible with older perls */ ++/* SvPV_nolen() macro first defined in 5.005_55 */ ++/* this is slow, not threadsafe, but works */ ++#include "patchlevel.h" ++#if (PATCHLEVEL == 4) || ((PATCHLEVEL == 5) && (SUBVERSION < 55)) ++static STRLEN nolen_na; ++# define SvPV_nolen(sv) SvPV ((sv), nolen_na) ++#endif ++ + typedef struct rabbit { + t_instance state; + }* Crypt__Rabbit; |