blob: 302b22de5d1033dd96801c7cab9bdb45f24cdf55 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# New ports collection makefile for: py-pcap
# Date created: 24 Nov 2001
# Whom: Hye-Shik Chang
#
# $FreeBSD$
#
PORTNAME= pcap
PORTVERSION= 0.6.2
CATEGORIES= net python
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \
http://people.freebsd.org/~perky/distfiles/:local
MASTER_SITE_SUBDIR= pylibpcap
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
DISTNAME= pylibpcap-${PORTVERSION}
MAINTAINER= perky@FreeBSD.org
COMMENT= Python interface to LBL Packet Capture library (libpcap)
BUILD_DEPENDS= swig:${PORTSDIR}/devel/swig13
USE_PYTHON= yes
USE_PYDISTUTILS= yes
USE_PYTHON_PREFIX= yes
PYDISTUTILS_PKGNAME= pylibpcap
.include <bsd.port.pre.mk>
.if ( ${OSVERSION} < 500038 )
IGNORE= needs libpcap 0.7 or higher
.endif
.include <bsd.port.post.mk>
|