28 lines
631 B
Makefile
28 lines
631 B
Makefile
# Created by: Peter Schuller <peter.schuller@infidyne.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= greenlet
|
|
PORTVERSION= 0.4.17
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= sunpoet@FreeBSD.org
|
|
COMMENT= Light-weight microthreads for Python
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
NOT_FOR_ARCHS= mips mips64
|
|
NOT_FOR_ARCHS_REASON= greenlet needs to be ported to this platform
|
|
|
|
USES= python
|
|
USE_PYTHON= autoplist concurrent distutils
|
|
|
|
DO_MAKE_TEST= ${PYTHON_CMD}
|
|
TEST_TARGET= run-tests.py
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/greenlet.so
|
|
|
|
.include <bsd.port.mk>
|