Sat Jun 15 21:02:03 2013 UTC ()
Summary for 4.4.0 tcpdump release
RPKI-RTR (RFC6810) is now official (TCP Port 323)
Fix detection of OpenSSL libcrypto.
Add DNSSL (RFC6106) support.
Add "radius" as an option for -T.
Update Action codes for handle_action function according to
    802.11s amendment.
Decode DHCPv6 AFTR-Name option (RFC6334).
Updates for Babel.
Fix printing of infinite lifetime in ICMPv6.
Added support for SPB, SPBM Service Identifier, and Unicast
    Address sub-TLV in ISIS.
Decode RIPv2 authentication up to RFC4822.
Fix RIP Request/full table decoding issues.
On Linux systems with cap-ng.h, drop root privileges
    using Linux Capabilities.
Add support for reading multiple files.


(adam)
diff -r1.34 -r1.35 pkgsrc/net/tcpdump/Makefile
diff -r1.19 -r1.20 pkgsrc/net/tcpdump/distinfo
diff -r1.3 -r1.4 pkgsrc/net/tcpdump/patches/patch-ah

cvs diff -r1.34 -r1.35 pkgsrc/net/tcpdump/Makefile (expand / switch to unified diff)

--- pkgsrc/net/tcpdump/Makefile 2013/02/06 23:23:24 1.34
+++ pkgsrc/net/tcpdump/Makefile 2013/06/15 21:02:03 1.35
@@ -1,17 +1,16 @@ @@ -1,17 +1,16 @@
1# $NetBSD: Makefile,v 1.34 2013/02/06 23:23:24 jperkin Exp $ 1# $NetBSD: Makefile,v 1.35 2013/06/15 21:02:03 adam Exp $
2 2
3DISTNAME= tcpdump-4.3.0 3DISTNAME= tcpdump-4.4.0
4PKGREVISION= 1 
5CATEGORIES= net 4CATEGORIES= net
6MASTER_SITES= http://www.tcpdump.org/release/ 5MASTER_SITES= http://www.tcpdump.org/release/
7 6
8MAINTAINER= pkgsrc-users@NetBSD.org 7MAINTAINER= pkgsrc-users@NetBSD.org
9HOMEPAGE= http://www.tcpdump.org/ 8HOMEPAGE= http://www.tcpdump.org/
10COMMENT= Network monitoring tool 9COMMENT= Network monitoring tool
11LICENSE= modified-bsd 10LICENSE= modified-bsd
12 11
13GNU_CONFIGURE= yes 12GNU_CONFIGURE= yes
14 13
15.include "options.mk" 14.include "options.mk"
16 15
17.include "../../net/libpcap/buildlink3.mk" 16.include "../../net/libpcap/buildlink3.mk"

cvs diff -r1.19 -r1.20 pkgsrc/net/tcpdump/distinfo (expand / switch to unified diff)

--- pkgsrc/net/tcpdump/distinfo 2013/02/06 19:45:26 1.19
+++ pkgsrc/net/tcpdump/distinfo 2013/06/15 21:02:03 1.20
@@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
1$NetBSD: distinfo,v 1.19 2013/02/06 19:45:26 jperkin Exp $ 1$NetBSD: distinfo,v 1.20 2013/06/15 21:02:03 adam Exp $
2 2
3SHA1 (tcpdump-4.3.0.tar.gz) = 5d0432e4831ca81633a6c9da732caad77d64a9ac 3SHA1 (tcpdump-4.4.0.tar.gz) = 6c1e72ae32eabb3ab823ff366a2d2f48ad4695f4
4RMD160 (tcpdump-4.3.0.tar.gz) = f79169528e4843b9c5e2eb2c37a77048618edb9b 4RMD160 (tcpdump-4.4.0.tar.gz) = 06e63abbacc04f97287334a6883d331afc205663
5Size (tcpdump-4.3.0.tar.gz) = 887619 bytes 5Size (tcpdump-4.4.0.tar.gz) = 915381 bytes
6SHA1 (patch-ah) = 2e8b6f1ed6946dcc04a9417abafec10ca920c220 6SHA1 (patch-ah) = 75dbc11440b32349014919ac04a628d8d4d8c45c

cvs diff -r1.3 -r1.4 pkgsrc/net/tcpdump/patches/Attic/patch-ah (expand / switch to unified diff)

--- pkgsrc/net/tcpdump/patches/Attic/patch-ah 2013/02/06 19:45:26 1.3
+++ pkgsrc/net/tcpdump/patches/Attic/patch-ah 2013/06/15 21:02:03 1.4
@@ -1,24 +1,24 @@ @@ -1,24 +1,24 @@
1$NetBSD: patch-ah,v 1.3 2013/02/06 19:45:26 jperkin Exp $ 1$NetBSD: patch-ah,v 1.4 2013/06/15 21:02:03 adam Exp $
2 2
3Fix VERSION dependency, or install will fail on case-insensitive file-system. 3Fix VERSION dependency, or install will fail on case-insensitive file-system.
4Don't install another copy. 4Don't install another copy.
5 5
6--- Makefile.in.orig 2012-06-12 16:56:20.000000000 +0000 6--- Makefile.in.orig 2012-06-12 16:56:20.000000000 +0000
7+++ Makefile.in 7+++ Makefile.in
8@@ -395,7 +395,7 @@ strsep.o: $(srcdir)/missing/strsep.c 8@@ -312,7 +312,7 @@ strsep.o: $(srcdir)/missing/strsep.c
9 version.o: version.c 9 version.o: version.c
10 $(CC) $(FULL_CFLAGS) -c version.c 10 $(CC) $(FULL_CFLAGS) -c version.c
11  11
12-version.c: $(srcdir)/VERSION 12-version.c: $(srcdir)/VERSION
13+version.c: VERSION 13+version.c: VERSION
14 @rm -f $@ 14 @rm -f $@
15 if grep GIT ${srcdir}/VERSION >/dev/null; then \ 15 if grep GIT ${srcdir}/VERSION >/dev/null; then \
16 read ver <${srcdir}/VERSION; \ 16 read ver <${srcdir}/VERSION; \
17@@ -409,7 +409,6 @@ install: all 17@@ -326,7 +326,6 @@ install: all
18 [ -d $(DESTDIR)$(sbindir) ] || \ 18 [ -d $(DESTDIR)$(sbindir) ] || \
19 (mkdir -p $(DESTDIR)$(sbindir); chmod 755 $(DESTDIR)$(sbindir)) 19 (mkdir -p $(DESTDIR)$(sbindir); chmod 755 $(DESTDIR)$(sbindir))
20 $(INSTALL_PROGRAM) $(PROG) $(DESTDIR)$(sbindir)/$(PROG) 20 $(INSTALL_PROGRAM) $(PROG) $(DESTDIR)$(sbindir)/$(PROG)
21- $(INSTALL_PROGRAM) $(PROG) $(DESTDIR)$(sbindir)/$(PROG).`cat ${srcdir}/VERSION` 21- $(INSTALL_PROGRAM) $(PROG) $(DESTDIR)$(sbindir)/$(PROG).`cat ${srcdir}/VERSION`
22 [ -d $(DESTDIR)$(mandir)/man1 ] || \ 22 [ -d $(DESTDIR)$(mandir)/man1 ] || \
23 (mkdir -p $(DESTDIR)$(mandir)/man1; chmod 755 $(DESTDIR)$(mandir)/man1) 23 (mkdir -p $(DESTDIR)$(mandir)/man1; chmod 755 $(DESTDIR)$(mandir)/man1)
24 $(INSTALL_DATA) $(PROG).1 $(DESTDIR)$(mandir)/man1/$(PROG).1 24 $(INSTALL_DATA) $(PROG).1 $(DESTDIR)$(mandir)/man1/$(PROG).1