diff options
author | adrianp <adrianp@pkgsrc.org> | 2005-01-20 21:59:13 +0000 |
---|---|---|
committer | adrianp <adrianp@pkgsrc.org> | 2005-01-20 21:59:13 +0000 |
commit | b14a2c485499ed28a87a718948c397f85f6b7c2a (patch) | |
tree | ec559d142ed3807f0dc2a11b48d89747933516b2 /net/tcpreplay/Makefile | |
parent | 7442ce5a145971f205dff4eb2f1c5315f5326752 (diff) | |
download | pkgsrc-b14a2c485499ed28a87a718948c397f85f6b7c2a.tar.gz |
- Update to 2.3.2
- Lots of changes, bugfixes and extra functionality as we are going from
1.x to 2.x
Add support to tcpreplay and tcpprep for DLT_CHDLC (Cisco HDLC)
Add endpoint mode (-e) which rewrites all traffic between two IP's
Add support for rewriting src mac & Linux SLL loopback frames
Add support for "pseudo NAT" (-N) for ARP and IPv4
Add -1 to replay one packet at a time (user must hit <ENTER>)
Add tcpdump packet parsing to print packets as sent (-v)
Add BPF filter support to tcpprep and tcpreplay (-x F:"filter")
Add support for replaying live traffic
Add bridge mode
Diffstat (limited to 'net/tcpreplay/Makefile')
-rw-r--r-- | net/tcpreplay/Makefile | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/net/tcpreplay/Makefile b/net/tcpreplay/Makefile index 6efe53ed7d2..231a157146c 100644 --- a/net/tcpreplay/Makefile +++ b/net/tcpreplay/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.7 2004/10/03 00:18:00 tv Exp $ +# $NetBSD: Makefile,v 1.8 2005/01/20 21:59:13 adrianp Exp $ -DISTNAME= tcpreplay-1.3.2 -PKGREVISION= 1 +DISTNAME= tcpreplay-2.3.2 CATEGORIES= net MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=tcpreplay/} @@ -9,9 +8,11 @@ MAINTAINER= tech-pkg@NetBSD.org HOMEPAGE= http://tcpreplay.sourceforge.net/ COMMENT= Replay saved tcpdump or snoop files +BUILDLINK_DEPENDS.libpcap+= libpcap>=0.6 + USE_BUILDLINK3= yes GNU_CONFIGURE= yes -CONFIGURE_ARGS= --with-libnetver=1.0.x -.include "../../devel/libnet/buildlink3.mk" +.include "../../devel/libnet11/buildlink3.mk" +.include "../../net/libpcap/buildlink3.mk" .include "../../mk/bsd.pkg.mk" |