83d0be72e8
M2Crypto is the most complete Python wrapper for OpenSSL featuring RSA, DSA, DH, HMACs, message digests, symmetric ciphers (including AES); SSL functionality to implement clients and servers; HTTPS extensions to Python's httplib, urllib, and xmlrpclib; unforgeable HMAC'ing AuthCookies for web session management; FTP/TLS client and server; S/MIME; ZServerSSL: A HTTPS server for Zope and ZSmime: An S/MIME messenger for Zope. M2Crypto can also be used to provide SSL for Twisted. with help and ok sthen@ benoit@
28 lines
570 B
Makefile
28 lines
570 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2013/03/22 20:51:43 rpe Exp $
|
|
|
|
COMMENT = crypto and ssl toolkit for python
|
|
|
|
MODPY_EGG_VERSION = 0.21.1
|
|
DISTNAME = M2Crypto-${MODPY_EGG_VERSION}
|
|
PKGNAME = py-${DISTNAME}
|
|
|
|
CATEGORIES = security
|
|
|
|
HOMEPAGE = http://chandlerproject.org/Projects/MeTooCrypto
|
|
|
|
MAINTAINER = Robert Peichaer <rpe@openbsd.org>
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
|
|
WANTLIB += crypto pthread ssl ${MODPY_WANTLIB}
|
|
|
|
MASTER_SITES = ${MASTER_SITE_PYPI:=M/M2Crypto/}
|
|
|
|
MODULES = lang/python
|
|
MODPY_SETUPTOOLS = Yes
|
|
|
|
BUILD_DEPENDS = devel/swig
|
|
|
|
.include <bsd.port.mk>
|