openbsd-ports/security/py-openssl/Makefile
eric bfdd98d0ce - update to pyOpenSSL-0.7
- add regression test

tested by Simon Kuhnle and martynas@

ok martynas@
2008-04-15 11:00:52 +00:00

43 lines
1.0 KiB
Makefile

# $OpenBSD: Makefile,v 1.9 2008/04/15 11:00:52 eric Exp $
COMMENT= Python interface to the OpenSSL library
VERSION= 0.7
DISTNAME= pyOpenSSL-${VERSION}
PKGNAME= py-openssl-${VERSION}
CATEGORIES= security devel
HOMEPAGE= http://www.sourceforge.net/projects/pyopenssl/
MAINTAINER= Eric Faurot <eric@openbsd.org>
# LGPL
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
WANTLIB= crypto ssl
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=pyopenssl/}
MODULES= lang/python
MODPY_EGG_VERSION=${VERSION}
REGRESS_DEPENDS=:py-twisted-core-*:devel/py-twisted/core
EXAMPLESDIR= ${PREFIX}/share/examples/py-openssl
post-install:
${INSTALL_DATA_DIR} ${EXAMPLESDIR}/simple
${INSTALL_DATA} ${WRKSRC}/examples/README ${EXAMPLESDIR}
${INSTALL_DATA} ${WRKSRC}/examples/*.py ${EXAMPLESDIR}
${INSTALL_DATA} ${WRKSRC}/examples/simple/* ${EXAMPLESDIR}/simple
do-regress: fake
PYTHONPATH=${WRKINST}${MODPY_SITEPKG} ${LOCALBASE}/bin/trial \
--temp-directory=${WRKBUILD} OpenSSL.test
.include <bsd.port.mk>