From e458e286b9028cbc1d13f98fa56987a9ef640001 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 8 Apr 2012 20:36:21 +0000 Subject: [PATCH] testing/tcpreplay: new aport Tcpreplay is a suite of tools for UNIX operating systems which gives you the ability to use previously captured traffic in libpcap format to test a variety of network devices. It allows you to classify traffic as client or server, rewrite Layer 2, 3 and 4 headers and finally replay the traffic back onto the network and through other devices such as switches, routers, firewalls, NIDS and IPS's. Tcpreplay supports both single and dual NIC modes for testing both sniffing and inline devices. http://tcpreplay.synfin.net/ --- testing/tcpreplay/APKBUILD | 50 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 testing/tcpreplay/APKBUILD diff --git a/testing/tcpreplay/APKBUILD b/testing/tcpreplay/APKBUILD new file mode 100644 index 00000000000..6d56148e216 --- /dev/null +++ b/testing/tcpreplay/APKBUILD @@ -0,0 +1,50 @@ +# Contributor: Fabian Affolter +# Maintainer: Fabian Affolter +pkgname=tcpreplay +pkgver=3.4.4 +pkgrel=0 +pkgdesc="Replay captured network traffic" +url="http://tcpreplay.synfin.net/trac/" +arch="all" +license="GPL3" +depends="" +depends_dev="" +makedepends="libdnet-dev libpcap-dev tcpdump" +install="" +subpackages="$pkgname-doc" +source="http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz" +_builddir="$srcdir"/$pkgname-$pkgver + +prepare() { + local i + cd "$_builddir" + for i in $source; do + case $i in + *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; + esac + done +} + +build() { + cd "$_builddir" + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info \ + --localstatedir=/var \ + --enable-dynamic-link \ + --enable-tcpreplay-edit \ + --enable-local-libopts \ + --disable-libopts-install \ + || return 1 + make || return 1 +} + +package() { + cd "$_builddir" + make DESTDIR="$pkgdir" install || return 1 + rm -f "$pkgdir"/usr/lib/*.la +} + +md5sums="22725feb9b2590809f9350308ec65180 tcpreplay-3.4.4.tar.gz"