2005-05-22 22:07:36 +02:00
|
|
|
# $NetBSD: Makefile,v 1.3 2005/05/22 20:08:29 jlam Exp $
|
2004-07-26 17:18:44 +02:00
|
|
|
#
|
|
|
|
|
Update to 5.2.1. Provided by Stefan Krüger in PR 28740.
5.2 - merged in changes for 5.01 - 5.0.4
- added support for using encoding parameters and key derivation parameters
with public key encryption (implemented by OAEP and DL/ECIES)
- added Camellia, SHACAL-2, Two-Track-MAC, Whirlpool, RIPEMD-320,
RIPEMD-128, RIPEMD-256, Base-32 coding
- added ThreadUserTimer for timing thread CPU usage
- added option for password-based key derivation functions
to iterate until a mimimum elapsed thread CPU time is reached
- added option (on by default) for DEFLATE compression to detect
uncompressible files and process them more quickly
- improved compatibility and performance on 64-bit platforms,
including Alpha, IA-64, x86-64, PPC64, Sparc64, and MIPS64
- fixed ONE_AND_ZEROS_PADDING to use 0x80 instead 0x01 as padding.
- fixed encoding/decoding of PKCS #8 privateKeyInfo to properly
handle optional attributes
5.2.1 - fixed bug in the "dlltest" DLL testing program
- fixed compiling with STLport using VC .NET
- fixed compiling with -fPIC using GCC
- fixed compiling with -msse2 on systems without memalign()
- fixed inability to instantiate PanamaMAC
- fixed problems with inline documentation
2005-03-19 17:48:21 +01:00
|
|
|
DISTNAME= cryptopp521
|
|
|
|
PKGNAME= cryptopp-5.2.1
|
2004-07-26 17:18:44 +02:00
|
|
|
CATEGORIES= security
|
|
|
|
MASTER_SITES= http://www.eskimo.com/~weidai/ \
|
Update to 5.2.1. Provided by Stefan Krüger in PR 28740.
5.2 - merged in changes for 5.01 - 5.0.4
- added support for using encoding parameters and key derivation parameters
with public key encryption (implemented by OAEP and DL/ECIES)
- added Camellia, SHACAL-2, Two-Track-MAC, Whirlpool, RIPEMD-320,
RIPEMD-128, RIPEMD-256, Base-32 coding
- added ThreadUserTimer for timing thread CPU usage
- added option for password-based key derivation functions
to iterate until a mimimum elapsed thread CPU time is reached
- added option (on by default) for DEFLATE compression to detect
uncompressible files and process them more quickly
- improved compatibility and performance on 64-bit platforms,
including Alpha, IA-64, x86-64, PPC64, Sparc64, and MIPS64
- fixed ONE_AND_ZEROS_PADDING to use 0x80 instead 0x01 as padding.
- fixed encoding/decoding of PKCS #8 privateKeyInfo to properly
handle optional attributes
5.2.1 - fixed bug in the "dlltest" DLL testing program
- fixed compiling with STLport using VC .NET
- fixed compiling with -fPIC using GCC
- fixed compiling with -msse2 on systems without memalign()
- fixed inability to instantiate PanamaMAC
- fixed problems with inline documentation
2005-03-19 17:48:21 +01:00
|
|
|
${MASTER_SITE_SOURCEFORGE:=cryptopp/} \
|
|
|
|
http://gd.tuwien.ac.at/privacy/crypto/libs/cryptlib/ \
|
|
|
|
http://www.mirrors.wiretapped.net/security/cryptography/libraries/cryptolib/
|
2004-07-26 17:18:44 +02:00
|
|
|
EXTRACT_SUFX= .zip
|
|
|
|
|
|
|
|
MAINTAINER= tech-pkg@NetBSD.org
|
|
|
|
HOMEPAGE= http://www.cryptopp.com/
|
|
|
|
COMMENT= Free C++ class library of Cryptographic Primitives
|
|
|
|
|
|
|
|
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
|
|
|
|
2005-05-22 22:07:36 +02:00
|
|
|
USE_TOOLS+= gmake
|
2004-07-26 17:18:44 +02:00
|
|
|
MAKEFILE= GNUmakefile
|
|
|
|
WRKSRC= ${WRKDIR}
|
|
|
|
USE_LANGUAGES= c++
|
|
|
|
|
|
|
|
INSTALLATION_DIRS= bin lib
|
|
|
|
|
|
|
|
do-install:
|
|
|
|
${INSTALL_PROGRAM} ${WRKSRC}/cryptest ${PREFIX}/bin
|
|
|
|
${INSTALL_DATA} ${WRKSRC}/libcryptopp.a ${PREFIX}/lib
|
|
|
|
${INSTALL_DATA_DIR} ${PREFIX}/include/cryptopp ${PREFIX}/share/doc/cryptopp
|
|
|
|
|
|
|
|
${INSTALL_DATA} ${WRKSRC}/Readme.txt ${PREFIX}/share/doc/cryptopp/README
|
|
|
|
${INSTALL_DATA} ${WRKSRC}/License.txt ${PREFIX}/share/doc/cryptopp/License
|
|
|
|
|
|
|
|
for f in ${WRKSRC}/*.h; do \
|
|
|
|
${INSTALL_DATA} $$f ${PREFIX}/include/cryptopp; \
|
|
|
|
done
|
|
|
|
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|