diff options
author | adrianp <adrianp@pkgsrc.org> | 2007-08-20 21:06:15 +0000 |
---|---|---|
committer | adrianp <adrianp@pkgsrc.org> | 2007-08-20 21:06:15 +0000 |
commit | 0e31467e82d9dadcc8adc7d40bdddb0ad9715471 (patch) | |
tree | d4d8982a9fde66360ab0507e5471f4922f069478 /net/tcpreplay/Makefile | |
parent | 1399d644b215906d64a7d39767ae712bfd4e12f8 (diff) | |
download | pkgsrc-0e31467e82d9dadcc8adc7d40bdddb0ad9715471.tar.gz |
Update to 3.1.1
By default, no longer try to use libnet. You must now specify --enable-libnet (#148)
Remove support for pcap_snapshot_override which was never added to libpcap (#140)
Rewrite L2/DLT code in tcpedit/tcprewrite to be plugin based (#82)
tcpprep & tcprewrite no longer require root access (#3)
Remove libnids dependancy for flowreplay
And many more, see the following for all the details:
http://tcpreplay.synfin.net/trac/browser/trunk/docs/CHANGELOG?rev=1886
Diffstat (limited to 'net/tcpreplay/Makefile')
-rw-r--r-- | net/tcpreplay/Makefile | 19 |
1 files changed, 4 insertions, 15 deletions
diff --git a/net/tcpreplay/Makefile b/net/tcpreplay/Makefile index 35362ddda0d..1eee6247215 100644 --- a/net/tcpreplay/Makefile +++ b/net/tcpreplay/Makefile @@ -1,29 +1,18 @@ -# $NetBSD: Makefile,v 1.16 2007/02/18 18:51:55 adrianp Exp $ +# $NetBSD: Makefile,v 1.17 2007/08/20 21:06:15 adrianp Exp $ -DISTNAME= tcpreplay-2.3.5 -PKGREVSION= 1 +DISTNAME= tcpreplay-3.1.1 CATEGORIES= net MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=tcpreplay/} MAINTAINER= pkgsrc-users@NetBSD.org -HOMEPAGE= http://tcpreplay.sourceforge.net/ +HOMEPAGE= http://tcpreplay.synfin.net/ COMMENT= Replay saved tcpdump or snoop files -BUILDLINK_API_DEPENDS.libpcap+= libpcap>=0.6 +BUILDLINK_API_DEPENDS.libpcap+= libpcap>=0.7.2 GNU_CONFIGURE= yes CONFIGURE_ARGS+= --with-libpcap=${BUILDLINK_PREFIX.libpcap} -CONFIGURE_ARGS+= --without-pcapnav-config -SUBST_CLASSES+= conf -SUBST_STAGE.conf= pre-configure -SUBST_FILES.conf= configure -SUBST_SED.conf= -e "s|libnet-config|libnet11-config|g" -SUBST_SED.conf+= -e "s|@@LN_INC@@|${BUILDLINK_PREFIX.libnet11}/include/libnet11|g" -SUBST_SED.conf+= -e "s|@@LN_LIB@@|${BUILDLINK_PREFIX.libnet11}/lib/libnet11|g" -SUBST_MESSAGE.conf= Fixing configuration script. - -.include "../../devel/libnet11/buildlink3.mk" .include "../../net/libpcap/buildlink3.mk" .include "../../mk/bsd.pkg.mk" |