forked from Lainports/freebsd-ports
interpreter crash with the following error message: Fatal Python error: ceval: tstate mix-up Abort trap: 6 (core dumped) Detailed explanation and analysis can be found here: https://sourceforge.net/tracker2/?func=detail&aid=2543118&group_id=31249&atid=401760 Bump PORTREVISION. Approved by: MAINTAINER
32 lines
760 B
Makefile
32 lines
760 B
Makefile
# ex:ts=8
|
|
# Ports collection makefile for: py-openssl
|
|
# Date created: Feb 10, 2002
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= openssl
|
|
PORTVERSION= 0.8
|
|
PORTREVISION= 1
|
|
CATEGORIES= security python
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= pyopenssl
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
DISTNAME= pyOpenSSL-${PORTVERSION}
|
|
|
|
MAINTAINER= perky@FreeBSD.org
|
|
COMMENT= Python interface to the OpenSSL library
|
|
|
|
USE_PYTHON= yes
|
|
USE_PYTHON_PREFIX= yes
|
|
USE_PYDISTUTILS= yes
|
|
PYDISTUTILS_PKGNAME= pyOpenSSL
|
|
USE_OPENSSL= yes
|
|
|
|
pre-configure:
|
|
@${ECHO_CMD} "[build_ext]" >> ${WRKSRC}/setup.cfg
|
|
@${ECHO_CMD} "include-dirs = ${OPENSSLINC}" >> ${WRKSRC}/setup.cfg
|
|
@${ECHO_CMD} "library-dirs = ${OPENSSLLIB}" >> ${WRKSRC}/setup.cfg
|
|
|
|
.include <bsd.port.mk>
|