mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-21 04:06:46 +00:00
07f9e6a104
While here, pet portlint. Approved by: portmgr (tier-2 blanket)
28 lines
640 B
Makefile
28 lines
640 B
Makefile
# Created by: Peter Schuller <peter.schuller@infidyne.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= greenlet
|
|
PORTVERSION= 0.4.13
|
|
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 powerpc64
|
|
NOT_FOR_ARCHS_REASON= greenlet needs to be ported to this platform
|
|
|
|
DO_MAKE_TEST= ${PYTHON_CMD}
|
|
TEST_TARGET= run-tests.py
|
|
USES= python
|
|
USE_PYTHON= autoplist concurrent distutils
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/greenlet.so
|
|
|
|
.include <bsd.port.mk>
|