# HG changeset patch # User Hans-G?nter Theisgen # Date 1645252912 -3600 # Node ID 665216a7e2f44ff3fb475bf85c5186b9cf4eb3db # Parent d8c511e24c2049714c16d3b541b900b6a326fcc3 updated dnstop (20121017 -> 20210329) diff -r d8c511e24c20 -r 665216a7e2f4 dnstop/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/dnstop/description.txt Sat Feb 19 07:41:52 2022 +0100 @@ -0,0 +1,26 @@ +Dnstop is a libpcap application (like 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. + +To help find especially undesirable DNS queries, dnstop provides +a number of filters. The filters tell dnstop to display only the +following types of queries: + +* For unknown or invalid TLDs +* A queries where the query name is already an IP address +* PTR queries for RFC1918 address space +* Responses with code REFUSED + +Dnstop can either read packets from the live capture device, +or from a tcpdump savefile. diff -r d8c511e24c20 -r 665216a7e2f4 dnstop/receipt --- a/dnstop/receipt Fri Feb 18 22:59:06 2022 +0000 +++ b/dnstop/receipt Sat Feb 19 07:41:52 2022 +0100 @@ -1,16 +1,18 @@ # SliTaz package receipt. PACKAGE="dnstop" -VERSION="20121017" +VERSION="20210329" CATEGORY="network" SHORT_DESC="Displays various tables of DNS traffic on your network." MAINTAINER="paul@slitaz.org" LICENSE="BSD" -DEPENDS="ncurses libpcap" -BUILD_DEPENDS="ncurses-dev libpcap-dev" -TARBALL="$PACKAGE-$VERSION.tar.gz" WEB_SITE="http://dns.measurement-factory.com/tools/dnstop" -WGET_URL="$WEB_SITE/src/$TARBALL" + +TARBALL="$PACKAGE-$VERSION.zip" +WGET_URL="https://github.com/measurement-factory/$PACKAGE/archive/refs/heads/master.zip" + +DEPENDS="libpcap ncurses" +BUILD_DEPENDS="libpcap-dev ncurses-dev" # What is the latest version available today? current_version() @@ -23,7 +25,8 @@ compile_rules() { export LDFLAGS="$LDFLAGS -ltinfo" - ./configure --prefix=/usr + + ./configure --prefix=/usr && make } @@ -31,5 +34,5 @@ genpkg_rules() { mkdir -p $fs/usr/bin - cp -a $src/$PACKAGE $fs/usr/bin + cp -a $src/$PACKAGE $fs/usr/bin }