commit:     d8396f06b7d9c7d6a9ab90358c9f378b9a89a1e8
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 23 19:20:37 2025 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Tue Dec 23 19:21:35 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8396f06

net-analyzer/tcpreplay: add 4.5.2

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 net-analyzer/tcpreplay/Manifest               |  1 +
 net-analyzer/tcpreplay/tcpreplay-4.5.2.ebuild | 91 +++++++++++++++++++++++++++
 2 files changed, 92 insertions(+)

diff --git a/net-analyzer/tcpreplay/Manifest b/net-analyzer/tcpreplay/Manifest
index 0d60c3eefa1e..6faa47df427a 100644
--- a/net-analyzer/tcpreplay/Manifest
+++ b/net-analyzer/tcpreplay/Manifest
@@ -1 +1,2 @@
 DIST tcpreplay-4.5.1.tar.xz 809628 BLAKE2B 
38c61646b86ff9ed740372fe9e40d85beab4b8feda5c5281fb00e45ceca441192389611885f209931accf079aca43d3dee214e66fefc188e539836cff5097a10
 SHA512 
8cc5fda16077051d7f4cd078567eb35b8f4ad7d0e04542ae12ec10b86899c804d3d929c37f9f0325f19f3ed651e767d5a6fe140d42e04151591cee6c1337b8df
+DIST tcpreplay-4.5.2.tar.xz 818824 BLAKE2B 
ccb5580e38700824cb2eab1121c27e2383388d72483fe41ed67d94756415fcf4269a1ae6d32b758f388cb7511033f805e906023161719015bbd376a2c529771d
 SHA512 
77d822ff9c0f723765451f207e2f9d2c94e6cef8c21984882674ddcac782d877b91695d92be75f23745cb89961cc3f5db17500865822044239df353356d25a3e

diff --git a/net-analyzer/tcpreplay/tcpreplay-4.5.2.ebuild 
b/net-analyzer/tcpreplay/tcpreplay-4.5.2.ebuild
new file mode 100644
index 000000000000..29ce827b8715
--- /dev/null
+++ b/net-analyzer/tcpreplay/tcpreplay-4.5.2.ebuild
@@ -0,0 +1,91 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools flag-o-matic
+
+DESCRIPTION="Utilities for editing and replaying previously captured network 
traffic"
+HOMEPAGE="http://tcpreplay.appneta.com/ https://github.com/appneta/tcpreplay";
+if [[ ${PV} == *9999* ]] ; then
+       EGIT_REPO_URI="https://github.com/appneta/tcpreplay";
+       inherit git-r3
+else
+       
SRC_URI="https://github.com/appneta/${PN}/releases/download/v${PV}/${P}.tar.xz";
+       KEYWORDS="~amd64 ~arm ~sparc ~x86"
+fi
+
+LICENSE="BSD GPL-3"
+SLOT="0"
+IUSE="debug pcapnav +tcpdump"
+
+# libpcapnav for pcapnav-config
+BDEPEND="
+       net-libs/libpcapnav
+       >=sys-devel/autogen-5.18.4[libopts]
+"
+DEPEND="
+       dev-libs/libdnet
+       >=net-libs/libpcap-0.9
+       elibc_musl? ( sys-libs/fts-standalone )
+       pcapnav? ( net-libs/libpcapnav )
+       tcpdump? ( net-analyzer/tcpdump )
+"
+RDEPEND="${DEPEND}"
+
+QA_CONFIG_IMPL_DECL_SKIP=(
+       pathfind # sun/solaris only command, bug 900040
+)
+
+DOCS=( docs/{CHANGELOG,CREDIT,HACKING,TODO} )
+
+PATCHES=(
+       "${FILESDIR}"/${PN}-4.3.0-enable-pcap_findalldevs.patch
+)
+
+src_prepare() {
+       default
+
+       sed -i \
+               -e 's|#include <dnet.h>|#include <dnet/eth.h>|g' \
+               src/common/sendpacket.c || die
+       sed -i \
+               -e 's|@\([A-Z_]*\)@|$(\1)|g' \
+               -e '/tcpliveplay_CFLAGS/s|$| $(LDNETINC)|g' \
+               -e '/tcpliveplay_LDADD/s|$| $(LDNETLIB)|g' \
+               src/Makefile.am || die
+
+       eautoreconf
+}
+
+src_configure() {
+       use elibc_musl && append-flags "-lfts"
+       # By default it uses static linking. Avoid that, bug #252940
+       local myeconfargs=(
+               $(use_enable debug)
+               $(use_with pcapnav pcapnav-config 
"${BROOT}"/usr/bin/pcapnav-config)
+               $(use_with tcpdump tcpdump "${ESYSROOT}"/usr/sbin/tcpdump)
+               --enable-dynamic-link
+               --enable-local-libopts
+               --enable-shared
+               --with-libdnet
+               --with-testnic2=lo
+               --with-testnic=lo
+       )
+
+       econf "${myeconfargs[@]}"
+}
+
+src_test() {
+       if [[ ! ${EUID} -eq 0 ]] ; then
+               ewarn "Some tests were disabled due to FEATURES=userpriv"
+               ewarn "To run all tests issue the following command as root:"
+               ewarn " # make -C ${S}/test"
+               emake -j1 -C test tcpprep
+       else
+               emake -j1 test || {
+                       ewarn "Note that some tests require eth0 iface to be 
up."
+                       die "self test failed - see ${S}/test/test.log"
+               }
+       fi
+}

Reply via email to