diff options
author | ehaupt <ehaupt@FreeBSD.org> | 2009-09-20 19:56:10 +0800 |
---|---|---|
committer | ehaupt <ehaupt@FreeBSD.org> | 2009-09-20 19:56:10 +0800 |
commit | 3a39b2774384cde5643acd2bf867cf916a51371f (patch) | |
tree | 97aac942124105766be620e7c5f1f7485af81862 /net-mgmt | |
parent | 272491e64b61d63abb2d60ffa575555bdb0d251d (diff) | |
download | freebsd-ports-gnome-3a39b2774384cde5643acd2bf867cf916a51371f.tar.gz freebsd-ports-gnome-3a39b2774384cde5643acd2bf867cf916a51371f.tar.zst freebsd-ports-gnome-3a39b2774384cde5643acd2bf867cf916a51371f.zip |
Don't depend on net/libpcap anymore, use base pcap instead. This allows us to
re-enable pcapnav support.
Submitted by: wxs
Feature safe: yes
Diffstat (limited to 'net-mgmt')
-rw-r--r-- | net-mgmt/tcpreplay/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/net-mgmt/tcpreplay/Makefile b/net-mgmt/tcpreplay/Makefile index 94a2c6aab7d3..265c028df01a 100644 --- a/net-mgmt/tcpreplay/Makefile +++ b/net-mgmt/tcpreplay/Makefile @@ -7,20 +7,20 @@ PORTNAME= tcpreplay PORTVERSION= 3.4.3 +PORTREVISION= 1 CATEGORIES= net-mgmt MASTER_SITES= SF MAINTAINER= ehaupt@FreeBSD.org COMMENT= A tool to replay saved packet capture files -BUILD_DEPENDS= ${LOCALBASE}/lib/libpcap.a:${PORTSDIR}/net/libpcap +BUILD_DEPENDS= pcapnav-config:${PORTSDIR}/net/libpcapnav GNU_CONFIGURE= yes MAKE_JOBS_SAFE= yes -CONFIGURE_ARGS= --with-libpcap=${LOCALBASE} \ - --without-pcapnav-config \ - --program-transform-name='s|.*\(tcp.*\)|\1|' \ +CONFIGURE_ARGS= --program-transform-name='s|.*\(tcp.*\)|\1|' \ + --with-pcapnav-config=${LOCALBASE}/bin/pcapnav-config \ --enable-tcpreplay-edit MAN1= tcpreplay.1 tcpprep.1 tcprewrite.1 tcpbridge.1 tcpreplay-edit.1 |