mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-04 08:12:06 +01:00
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/
45 lines
1013 B
Plaintext
45 lines
1013 B
Plaintext
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
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"
|