summaryrefslogtreecommitdiff
path: root/security/p5-Crypt-IDEA
diff options
context:
space:
mode:
Diffstat (limited to 'security/p5-Crypt-IDEA')
-rw-r--r--security/p5-Crypt-IDEA/DESCR1
-rw-r--r--security/p5-Crypt-IDEA/Makefile22
-rw-r--r--security/p5-Crypt-IDEA/PLIST1
-rw-r--r--security/p5-Crypt-IDEA/distinfo7
-rw-r--r--security/p5-Crypt-IDEA/patches/patch-aa28
-rw-r--r--security/p5-Crypt-IDEA/patches/patch-ac12
6 files changed, 0 insertions, 71 deletions
diff --git a/security/p5-Crypt-IDEA/DESCR b/security/p5-Crypt-IDEA/DESCR
deleted file mode 100644
index afd0d6ec1d5..00000000000
--- a/security/p5-Crypt-IDEA/DESCR
+++ /dev/null
@@ -1 +0,0 @@
-This perl extension is an implementation of the IDEA block cipher algorithm.
diff --git a/security/p5-Crypt-IDEA/Makefile b/security/p5-Crypt-IDEA/Makefile
deleted file mode 100644
index adbe25fbf42..00000000000
--- a/security/p5-Crypt-IDEA/Makefile
+++ /dev/null
@@ -1,22 +0,0 @@
-# $NetBSD: Makefile,v 1.10 2005/08/06 06:19:29 jlam Exp $
-#
-
-DISTNAME= Crypt-IDEA-1.02
-PKGNAME= p5-${DISTNAME}
-PKGREVISION= 2
-CATEGORIES= security perl5
-MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Crypt/}
-
-MAINTAINER= heinz@NetBSD.org
-HOMEPAGE= http://search.cpan.org/dist/Crypt-IDEA/
-COMMENT= Perl5 module for the IDEA symmetric key algorithm
-
-# IDEA's license
-LICENCE= fee-based-commercial-use
-
-PKG_INSTALLATION_TYPES= overwrite pkgviews
-
-PERL5_PACKLIST= auto/Crypt/IDEA/.packlist
-
-.include "../../lang/perl5/module.mk"
-.include "../../mk/bsd.pkg.mk"
diff --git a/security/p5-Crypt-IDEA/PLIST b/security/p5-Crypt-IDEA/PLIST
deleted file mode 100644
index 11422994bba..00000000000
--- a/security/p5-Crypt-IDEA/PLIST
+++ /dev/null
@@ -1 +0,0 @@
-@comment $NetBSD: PLIST,v 1.1.1.1 2001/12/30 14:28:04 wiz Exp $
diff --git a/security/p5-Crypt-IDEA/distinfo b/security/p5-Crypt-IDEA/distinfo
deleted file mode 100644
index f5b3a83b9cd..00000000000
--- a/security/p5-Crypt-IDEA/distinfo
+++ /dev/null
@@ -1,7 +0,0 @@
-$NetBSD: distinfo,v 1.4 2005/05/28 00:42:31 heinz Exp $
-
-SHA1 (Crypt-IDEA-1.02.tar.gz) = 05fca3a3040c4ab1ae26996698d92d86cf230a86
-RMD160 (Crypt-IDEA-1.02.tar.gz) = 40ec35380e16dfcec75a7ba14bfd08bf2f2a114c
-Size (Crypt-IDEA-1.02.tar.gz) = 5366 bytes
-SHA1 (patch-aa) = 2ef310bcbe8202c25708cce446ea694cd5fdecfa
-SHA1 (patch-ac) = 88a03be0a16b57a2c1347b66731dcdc99e2485d3
diff --git a/security/p5-Crypt-IDEA/patches/patch-aa b/security/p5-Crypt-IDEA/patches/patch-aa
deleted file mode 100644
index f7e41b23c7d..00000000000
--- a/security/p5-Crypt-IDEA/patches/patch-aa
+++ /dev/null
@@ -1,28 +0,0 @@
-$NetBSD: patch-aa,v 1.3 2005/05/28 00:42:31 heinz Exp $
-
---- _idea.c.orig Sat May 22 22:30:47 1999
-+++ _idea.c
-@@ -5,7 +5,22 @@
-
- #include "idea.h"
-
--#include <endian.h>
-+#if defined(__DragonFly__) || defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__)
-+# include <sys/endian.h>
-+#elif defined(__APPLE__)
-+# include <sys/types.h>
-+#elif defined(__sun)
-+# define LITTLE_ENDIAN 1234
-+# define BIG_ENDIAN 4321
-+# include <sys/isa_defs.h>
-+# if defined(_LITTLE_ENDIAN)
-+# define BYTE_ORDER LITTLE_ENDIAN
-+# else
-+# define BYTE_ORDER BIG_ENDIAN
-+# endif
-+#else
-+# include <endian.h>
-+#endif
-
- #define KEYS_PER_ROUND 6
- #define ROUNDS 8
diff --git a/security/p5-Crypt-IDEA/patches/patch-ac b/security/p5-Crypt-IDEA/patches/patch-ac
deleted file mode 100644
index 4a648718bf6..00000000000
--- a/security/p5-Crypt-IDEA/patches/patch-ac
+++ /dev/null
@@ -1,12 +0,0 @@
-$NetBSD: patch-ac,v 1.1 2005/05/28 00:38:38 heinz Exp $
-
---- idea.h.orig Sat May 22 22:30:47 1999
-+++ idea.h
-@@ -1,4 +1,7 @@
- #include <sys/types.h>
-+#if defined(__sun)
-+typedef uint16_t u_int16_t;
-+#endif
-
- #define IDEA_KS_SIZE 104
-