diff options
author | jlam <jlam@pkgsrc.org> | 2001-10-09 19:16:20 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2001-10-09 19:16:20 +0000 |
commit | fb4f57bbf8ac96169a11136b524b21b377046dbe (patch) | |
tree | 83a704e9112dce7b113608b91b27bfb50c8d55ad /security/libmcrypt/Makefile | |
parent | 153306a3ea6a3355a9633d0e014ca78ce7b8f377 (diff) | |
download | pkgsrc-fb4f57bbf8ac96169a11136b524b21b377046dbe.tar.gz |
Update libmcrypt to 2.4.17. Changes from version 2.4.7 include:
- Bug fixes and memory leaks
- Added new modes: nCFG
- Due to an endianness handling problem Blowfish algorithm was not compatible
with other implementations. Now it has been corrected. If you want
to access the old algorithm used use the "blowfish-compat" module.
- Corrected bug in rijndael-256. This makes the algorithm incompatible with
previous versions.
Diffstat (limited to 'security/libmcrypt/Makefile')
-rw-r--r-- | security/libmcrypt/Makefile | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/security/libmcrypt/Makefile b/security/libmcrypt/Makefile index cab143ea35a..3f914670f28 100644 --- a/security/libmcrypt/Makefile +++ b/security/libmcrypt/Makefile @@ -1,8 +1,10 @@ -# $NetBSD: Makefile,v 1.4 2001/06/20 21:35:05 jlam Exp $ +# $NetBSD: Makefile,v 1.5 2001/10/09 19:16:20 jlam Exp $ -DISTNAME= libmcrypt-2.4.7 +DISTNAME= libmcrypt-2.4.17 CATEGORIES= security devel -MASTER_SITES= http://mcrypt.hellug.gr/lib/ +MASTER_SITES= ftp://mcrypt.hellug.gr/pub/mcrypt/libmcrypt/ \ + ftp://mcrypt.hellug.gr/pub/mcrypt/libmcrypt/old/ \ + http://mcrypt.hellug.gr/lib/ MAINTAINER= packages@netbsd.org HOMEPAGE= http://mcrypt.hellug.gr/ @@ -10,8 +12,10 @@ COMMENT= crypto algorithms library USE_BUILDLINK_ONLY= yes USE_LIBTOOL= yes -#USE_LTDL= yes GNU_CONFIGURE= yes +post-extract: + ${RM} -rf ${WRKSRC}/libltdl + .include "../../devel/libtool/buildlink.mk" .include "../../mk/bsd.pkg.mk" |