diff options
author | Gabor Kovesdan <gabor@FreeBSD.org> | 2007-03-31 20:33:58 +0000 |
---|---|---|
committer | Gabor Kovesdan <gabor@FreeBSD.org> | 2007-03-31 20:33:58 +0000 |
commit | c5fb2bb5569face0b9e8dd08993295fbc44c660a (patch) | |
tree | e967594121176f847548a780938793adf0e028e2 /security/p5-Crypt-Shark | |
parent | 62a32f108169b463244dbde90bc50a10b18e45f4 (diff) | |
download | ports-c5fb2bb5569face0b9e8dd08993295fbc44c660a.tar.gz ports-c5fb2bb5569face0b9e8dd08993295fbc44c660a.zip |
- Remove support for old Perl from my ports
Notes
Notes:
svn path=/head/; revision=188903
Diffstat (limited to 'security/p5-Crypt-Shark')
-rw-r--r-- | security/p5-Crypt-Shark/Makefile | 15 | ||||
-rw-r--r-- | security/p5-Crypt-Shark/files/extrapatch-Shark.xs | 18 |
2 files changed, 1 insertions, 32 deletions
diff --git a/security/p5-Crypt-Shark/Makefile b/security/p5-Crypt-Shark/Makefile index bbc785672f2b..cde776c3cf33 100644 --- a/security/p5-Crypt-Shark/Makefile +++ b/security/p5-Crypt-Shark/Makefile @@ -17,17 +17,4 @@ PERL_CONFIGURE= yes MAN3= Crypt::Shark.3 -.include <bsd.port.pre.mk> - -.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-Shark.xs - -post-patch: - ${PERL} -pi -e 's/^our\s+([\$$\@\%]\w+)/use vars qw($$1); $$1/;' ${WRKSRC}/Shark.pm - ${PERL} -pi -e 's/void/int argc, char**argv, char**env/ if m{int main}' ${WRKSRC}/_shark.c - ${PERL} -pi -e '$$_="" if m{warnings}' ${WRKSRC}/Shark.pm ${WRKSRC}/t/*.t -.endif - -.include <bsd.port.post.mk> +.include <bsd.port.mk> diff --git a/security/p5-Crypt-Shark/files/extrapatch-Shark.xs b/security/p5-Crypt-Shark/files/extrapatch-Shark.xs deleted file mode 100644 index baec9dae7647..000000000000 --- a/security/p5-Crypt-Shark/files/extrapatch-Shark.xs +++ /dev/null @@ -1,18 +0,0 @@ ---- Shark.xs.orig Sat Dec 31 04:10:06 2005 -+++ Shark.xs Sat Dec 31 04:10:37 2005 -@@ -4,6 +4,15 @@ - #include "ppport.h" - #include "_shark.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 shark { - ddword roundkey_enc[14]; - ddword roundkey_dec[14]; |