From e73b9dfb1b2d7710e5d42038b2fb1411037427c8 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 18 Jan 2013 22:13:06 +0000 Subject: testing/dnstop: new aport dnstop is a libpcap application (ala tcpdump) that displays various tables of DNS traffic on your network. Currently dnstop displays tables of: - Source IP addresses - Destination IP addresses - Query types - Response codes - Opcodes - Top level domains - Second level domains - Third level domains dnstop supports both IPv4 and IPv6 addresses. Website: http://dns.measurement-factory.com/tools/dnstop/ --- testing/dnstop/APKBUILD | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 testing/dnstop/APKBUILD (limited to 'testing') diff --git a/testing/dnstop/APKBUILD b/testing/dnstop/APKBUILD new file mode 100644 index 000000000..eb9d8b904 --- /dev/null +++ b/testing/dnstop/APKBUILD @@ -0,0 +1,44 @@ +# Contributor: Fabian Affolter +# Maintainer: Fabian Affolter +pkgname=dnstop +pkgver=20121017 +pkgrel=0 +pkgdesc="A DNS traffic capture utility" +url="http://dns.measurement-factory.com/tools/dnstop/" +arch="all" +license="BSD" +depends="" +depends_dev="" +makedepends="libpcap-dev ncurses-dev" +install="" +subpackages="$pkgname-doc" +source="http://dns.measurement-factory.com/tools/dnstop/src/$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 \ + --mandir=/usr/share/man \ + || return 1 + make || return 1 +} + +package() { + cd "$_builddir" + mkdir -p "$pkgdir"/usr/bin "$pkgdir"/usr/share/man/man8 + make DESTDIR="$pkgdir" install || return 1 + rm -f "$pkgdir"/usr/lib/*.la +} + +md5sums="0407f08e5788b59268048d00cdddd5b6 dnstop-20121017.tar.gz" -- cgit v1.2.3