02/12/2022 Version 4.4.1 - fix support for piping PCAP files from STDIN (#708) - build failures Debian/kfreebsd (#706) - bus error when building on armhf (#705) - typo fixes (#704) - heap buffer overflow in tcpreplay (#703) - double free in Juniper DLT (#702) 01/31/2022 Version 4.4.0 - remove obsolete FORCE_ALIGN support to fix macOS 11 compile (#695) - add a security policy document (#689) - ability to specify directory of pcap files (#682) - incorrect PPS rate for long-running sessions (#679) - option --skipbroadcast not working (#677) - revert #630 to fix --multiplier issues (#674) - gcc 9.3 compiler warnings (#670) - installed netmap not automatically detected (#669) - latest macOS SDK selected by default (#668) - heap-buffer-overflow with flow_decode() (#665) - add feature VLAN Q-in-Q (#625) - add feature update Ethernet MAC on multicast IP (#563)
23 lines
615 B
Makefile
23 lines
615 B
Makefile
# $NetBSD: Makefile,v 1.28 2022/06/16 00:29:30 gutteridge Exp $
|
|
|
|
DISTNAME= tcpreplay-4.4.1
|
|
CATEGORIES= net
|
|
MASTER_SITES= ${MASTER_SITE_GITHUB:=appneta/}
|
|
GITHUB_RELEASE= v${PKGVERSION_NOREV}
|
|
EXTRACT_SUFX= .tar.xz
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://tcpreplay.appneta.com/
|
|
COMMENT= Replay saved tcpdump or snoop files
|
|
LICENSE= gnu-gpl-v3
|
|
|
|
BUILDLINK_API_DEPENDS.libpcap+= libpcap>=0.8.0
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_LIBTOOL= yes
|
|
|
|
CONFIGURE_ARGS+= --enable-dynamic-link
|
|
CONFIGURE_ARGS+= --with-libpcap=${BUILDLINK_PREFIX.libpcap}
|
|
|
|
.include "../../net/libpcap/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|