34 lines
756 B
Makefile
34 lines
756 B
Makefile
# Created by: Roman Bogorodskiy <novel@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= pyzmq
|
|
PORTVERSION= 15.4.0
|
|
CATEGORIES= net devel
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= novel@FreeBSD.org
|
|
COMMENT= Python bindings for ZeroMQ
|
|
|
|
LICENSE= LGPL3
|
|
|
|
LIB_DEPENDS= libzmq.so:net/libzmq4
|
|
|
|
USES= python
|
|
USE_PYTHON= distutils autoplist
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${PYTHON_VER} == 3.3
|
|
RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}asyncio>0:devel/py-asyncio
|
|
.endif
|
|
|
|
pre-configure:
|
|
@${SED} -e 's|/usr/local|${LOCALBASE}|' ${WRKSRC}/setup.cfg.template > \
|
|
${WRKSRC}/setup.cfg
|
|
|
|
regression-test: extract
|
|
@cd ${WRKSRC} && ${PYTHON_CMD} ${PYSETUP} build_ext --inplace
|
|
@cd ${WRKSRC} && ${PYTHON_CMD} ${PYSETUP} test
|
|
|
|
.include <bsd.port.post.mk>
|