52d6dbeeaa
in agc's last bulk build. Changes since 0.11: - ZServerSSL with client certificate-based authentication rides again. - Created Makefile for Python 2.3. - Modified LICENCE: changed my name to the generic "the author" in the all-caps disclaimer paragraph. - Allow to save RSA key pair in the clear. - ZServerSSL for Zope 2.7. - Excluded RC5. IDEA was taken out several releases ago. This should allow M2Crypto to build with stock OpenSSL on various Linuxen. - Added ssl_set_tmp_dh_callback. - Added ssl_set_tmp_rsa and ssl_set_tmp_rsa_callback to support weak-cipher browsers. - ZServerSSL exports SSL_CIPHER request header (a la mod_ssl) to Zope applications. - Perform distutils's SWIG .i search path tweaking within setup.py. setup.py should now work "out of the box". - Allow using a passphrase callback in class SMIME. Thanks to Artur Frysiak <wiget@pld-linux.org> for the patch. - Added method get0_signers to class PKCS7, which retrieves signers' certificates from a PKCS7 blob. Thanks again to Artur Frysiak. - Added contrib/smimeplus.py, a high-level S/MIME interface, contributed by Bernard Yue <bernie@3captus.com>. Thanks Bernard. - Alias 'emailAddress' to 'Email' in X509.X509_Name.nid to support recent OpenSSL convention.
23 lines
649 B
Makefile
23 lines
649 B
Makefile
# $NetBSD: Makefile,v 1.6 2004/01/11 19:06:46 jschauma Exp $
|
|
#
|
|
|
|
DISTNAME= m2crypto-0.12
|
|
PKGNAME= ${PYPKGPREFIX}-m2crypto-0.12
|
|
CATEGORIES= security
|
|
MASTER_SITES= http://sandbox.rulemaker.net/ngps/Dist/
|
|
EXTRACT_SUFX= .zip
|
|
|
|
MAINTAINER= tech-pkg@NetBSD.org
|
|
HOMEPAGE= http://sandbox.rulemaker.net/ngps/m2/
|
|
COMMENT= Crypto and SSL toolkit for Python
|
|
|
|
USE_BUILDLINK2= yes
|
|
PYDISTUTILSPKG= yes
|
|
PYTHON_VERSIONS_ACCEPTED= 22pth 21pth
|
|
|
|
BUILDLINK_DEPENDS.openssl= openssl>=0.9.7b
|
|
|
|
.include "../../lang/python/extension.mk"
|
|
.include "../../devel/swig-build/buildlink2.mk"
|
|
.include "../../security/openssl/buildlink2.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|