mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
d0326d4b63
- Update to 14.0.1 - Change MASTER_SITES to CHEESESHOP (Removes Cython dependency) - Enable AUTOPLIST, delete pkg-plist accordingly - Enable STAGE support - Use new LIB_DEPENDS format - Add regression-test target to ease QA - pkg-descr: Tab->space in WWW: PR: ports/183731 Approved by: maintainer timeout (3 weeks)
32 lines
690 B
Makefile
32 lines
690 B
Makefile
# Created by: Roman Bogorodskiy <novel@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= pyzmq
|
|
PORTVERSION= 14.0.1
|
|
CATEGORIES= devel net
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= novel@FreeBSD.org
|
|
COMMENT= Python bindings for ZeroMQ
|
|
|
|
LICENSE= LGPL3
|
|
|
|
LIB_DEPENDS= libzmq.so:${PORTSDIR}/net/libzmq4
|
|
|
|
USE_PYTHON= yes
|
|
USE_PYDISTUTILS= yes
|
|
PYDISTUTILS_AUTOPLIST= yes
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
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>
|