reads PCAP input from file system, stdin, or by listening on a network interface. Furthermore, the parser is able to use several output filters and pipes to tailor the output for your individual needs. OK sthen@
24 lines
475 B
Makefile
24 lines
475 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2017/01/13 14:15:41 phessler Exp $
|
|
|
|
COMMENT = pcap bgp parser
|
|
|
|
MODPY_EGG_VERSION = 0.2.6
|
|
DISTNAME = pbgpp-${MODPY_EGG_VERSION}
|
|
|
|
CATEGORIES = net
|
|
|
|
MAINTAINER = Peter Hessler <phessler@openbsd.org>
|
|
|
|
# Apache 2.0
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
|
|
MODULES = lang/python
|
|
MODPY_PI = Yes
|
|
MODPY_SETUPTOOLS = Yes
|
|
MODPY_VERSION = ${MODPY_DEFAULT_VERSION_3}
|
|
|
|
RUN_DEPENDS = net/py-pcapy${MODPY_FLAVOR}
|
|
BUILD_DEPENDS += ${RUN_DEPENDS}
|
|
|
|
.include <bsd.port.mk>
|