diff options
author | rh <rh@pkgsrc.org> | 2000-11-29 11:30:55 +0000 |
---|---|---|
committer | rh <rh@pkgsrc.org> | 2000-11-29 11:30:55 +0000 |
commit | a6592a3370162c8b93a9d17e6a741756f98b095a (patch) | |
tree | a4646beec42717ee9df54aba0a27de0a9da81cdb | |
parent | 9837300d90df9a82bfa4c3379b8bd6bcdedeaa3e (diff) | |
download | pkgsrc-a6592a3370162c8b93a9d17e6a741756f98b095a.tar.gz |
Initial import of libidea-0.8.2b, an IDEA block cipher library
-rw-r--r-- | security/libidea/Makefile | 23 | ||||
-rw-r--r-- | security/libidea/files/md5 | 3 | ||||
-rw-r--r-- | security/libidea/files/patch-sum | 3 | ||||
-rw-r--r-- | security/libidea/patches/patch-aa | 29 | ||||
-rw-r--r-- | security/libidea/pkg/COMMENT | 1 | ||||
-rw-r--r-- | security/libidea/pkg/DESCR | 7 | ||||
-rw-r--r-- | security/libidea/pkg/PLIST | 5 |
7 files changed, 71 insertions, 0 deletions
diff --git a/security/libidea/Makefile b/security/libidea/Makefile new file mode 100644 index 00000000000..603c55de9d1 --- /dev/null +++ b/security/libidea/Makefile @@ -0,0 +1,23 @@ +# $NetBSD: Makefile,v 1.1.1.1 2000/11/29 11:30:55 rh Exp $ +# + +DISTNAME= libidea-0.8.2b +WRKSRC= ${WRKDIR}/idea +CATEGORIES= security +MASTER_SITES= ftp://ftp.psy.uq.oz.au/pub/Crypto/libeay/ \ + ftp://ftp.funet.fi/pub/mirrors/ftp.psy.uq.oz.au/libeay/ \ + ftp://ftp.ntnu.no/pub/unix/security/ \ + ftp://ftp.sunsite.org.uk/Mirrors/ftp.psy.uq.oz.au/pub/Crypto/libeay/ + +MAINTAINER= packages@netbsd.org +HOMEPAGE= http://www.media-crypt.com/pages/fidea.html + +CRYPTO= YES + +do-install: + cd ${WRKSRC} && \ + ${INSTALL_DATA} libidea.a ${PREFIX}/lib && \ + ${INSTALL_DATA} idea.h ${PREFIX}/include && \ + ${INSTALL_PROGRAM} ideatest idea_spd ${PREFIX}/bin + +.include "../../mk/bsd.pkg.mk" diff --git a/security/libidea/files/md5 b/security/libidea/files/md5 new file mode 100644 index 00000000000..24c26e0fbca --- /dev/null +++ b/security/libidea/files/md5 @@ -0,0 +1,3 @@ +$NetBSD: md5,v 1.1.1.1 2000/11/29 11:30:55 rh Exp $ + +MD5 (libidea-0.8.2b.tar.gz) = d67b25dd2e4a6f3331f4061724d0056a diff --git a/security/libidea/files/patch-sum b/security/libidea/files/patch-sum new file mode 100644 index 00000000000..5f8a357ac54 --- /dev/null +++ b/security/libidea/files/patch-sum @@ -0,0 +1,3 @@ +$NetBSD: patch-sum,v 1.1.1.1 2000/11/29 11:30:55 rh Exp $ + +MD5 (patch-aa) = 58dd28175a48a8edfcb7ceb2f6948bda diff --git a/security/libidea/patches/patch-aa b/security/libidea/patches/patch-aa new file mode 100644 index 00000000000..a0437af8757 --- /dev/null +++ b/security/libidea/patches/patch-aa @@ -0,0 +1,29 @@ +$NetBSD: patch-aa,v 1.1.1.1 2000/11/29 11:30:55 rh Exp $ + +--- Makefile.orig Wed Nov 29 11:56:09 2000 ++++ Makefile +@@ -5,20 +5,15 @@ + + DIR= cast + TOP= . +-CC= gcc +-CFLAG= -O3 -fomit-frame-pointer ++#CC= gcc ++#CFLAG= -O3 -fomit-frame-pointer + +-CPP= $(CC) -E +-INCLUDES= +-INSTALLTOP=/usr/local/lib +-MAKE= make ++CPP?= $(CC) -E ++INSTALLTOP=${PREFIX}/lib + MAKEDEPEND= makedepend +-MAKEFILE= Makefile.uni + AR= ar r + + IDEA_ENC=i_cbc.o +- +-CFLAGS= $(INCLUDES) $(CFLAG) + + GENERAL=Makefile + TEST=ideatest diff --git a/security/libidea/pkg/COMMENT b/security/libidea/pkg/COMMENT new file mode 100644 index 00000000000..f9d544a52d0 --- /dev/null +++ b/security/libidea/pkg/COMMENT @@ -0,0 +1 @@ +IDEA block cipher library diff --git a/security/libidea/pkg/DESCR b/security/libidea/pkg/DESCR new file mode 100644 index 00000000000..8bcdaab0526 --- /dev/null +++ b/security/libidea/pkg/DESCR @@ -0,0 +1,7 @@ + This is the IDEA library of the SSLeay project. + + IDEA is a block cipher invented by Xuejia Lai and James Massey in 1991. +A block cipher is an encryption algorithm that encrypts the data in blocks. +IDEA has a block size of 64 bits, and a keylength of 128 bits. IDEA is a +symmetrical algorithm, which means that the same key is used both for +encryption and for decryption. diff --git a/security/libidea/pkg/PLIST b/security/libidea/pkg/PLIST new file mode 100644 index 00000000000..95d9cc2d194 --- /dev/null +++ b/security/libidea/pkg/PLIST @@ -0,0 +1,5 @@ +@comment $NetBSD: PLIST,v 1.1.1.1 2000/11/29 11:30:55 rh Exp $ +bin/idea_spd +bin/ideatest +include/idea.h +lib/libidea.a |