diff options
-rw-r--r-- | net/py-pcap/Makefile | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/net/py-pcap/Makefile b/net/py-pcap/Makefile index 81cbb8d7653b..60238ece8c2d 100644 --- a/net/py-pcap/Makefile +++ b/net/py-pcap/Makefile @@ -3,22 +3,30 @@ PORTNAME= pcap PORTVERSION= 0.6.4 +PORTREVISION= 1 CATEGORIES= net python MASTER_SITES= SF/pylib${PORTNAME}/pylib${PORTNAME}/${PORTVERSION} PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} DISTNAME= pylib${PORTNAME}-${PORTVERSION} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= leres@ee.lbl.gov COMMENT= Python interface to LBL Packet Capture library (libpcap) LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/COPYING -BUILD_DEPENDS= swig:devel/swig13 - USES= python USE_PYTHON= distutils autoplist +OPTIONS_DEFINE= LIBPCAP + +LIBPCAP_DESC= Use the ports version of libpcap +LIBPCAP_LIB_DEPENDS= libpcap.so.1:net/libpcap + +post-patch-LIBPCAP-on: + @${REINPLACE_CMD} -E -e 's|^(libpcap_dir[[:blank:]]*=).*$$|\1 "${LOCALBASE}/lib"|' \ + ${WRKSRC}/setup.py + post-install: ${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/_pcapmodule.so |