pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/net/ethereal Update "ethereal" package to version 0.99.0.
details: https://anonhg.NetBSD.org/pkgsrc/rev/2965ebc6f3bb
branches: trunk
changeset: 511884:2965ebc6f3bb
user: tron <tron%pkgsrc.org@localhost>
date: Tue Apr 25 10:04:20 2006 +0000
description:
Update "ethereal" package to version 0.99.0.
Changes since version 0.10.14 include:
- security fixes for problems discovered by a Coverity scan
- new utility "dumpcap" for capturing packets from a live network and
writing them to a file has been added.
- support for ACP133, E.212, Nortel LGE Monitor and OICQ protocols
diffstat:
net/ethereal/Makefile | 5 ++---
net/ethereal/PLIST | 5 ++++-
net/ethereal/distinfo | 10 +++++-----
net/ethereal/patches/patch-aa | 27 ---------------------------
4 files changed, 11 insertions(+), 36 deletions(-)
diffs (87 lines):
diff -r acdae51d6fbd -r 2965ebc6f3bb net/ethereal/Makefile
--- a/net/ethereal/Makefile Tue Apr 25 07:58:26 2006 +0000
+++ b/net/ethereal/Makefile Tue Apr 25 10:04:20 2006 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.128 2006/04/17 13:46:43 wiz Exp $
+# $NetBSD: Makefile,v 1.129 2006/04/25 10:04:20 tron Exp $
-DISTNAME= ethereal-0.10.14
-PKGREVISION= 4
+DISTNAME= ethereal-0.99.0
CATEGORIES= net
MASTER_SITES= http://www.ethereal.com/distribution/ \
http://ethereal.planetmirror.com/distribution/ \
diff -r acdae51d6fbd -r 2965ebc6f3bb net/ethereal/PLIST
--- a/net/ethereal/PLIST Tue Apr 25 07:58:26 2006 +0000
+++ b/net/ethereal/PLIST Tue Apr 25 10:04:20 2006 +0000
@@ -1,6 +1,7 @@
-@comment $NetBSD: PLIST,v 1.24 2006/01/02 22:34:34 salo Exp $
+@comment $NetBSD: PLIST,v 1.25 2006/04/25 10:04:20 tron Exp $
bin/capinfos
bin/dftest
+bin/dumpcap
bin/editcap
bin/ethereal
bin/idl2eth
@@ -38,6 +39,7 @@
lib/libethereal.la
lib/libwiretap.la
man/man1/capinfos.1
+man/man1/dumpcap.1
man/man1/editcap.1
man/man1/ethereal.1
man/man1/idl2eth.1
@@ -62,6 +64,7 @@
share/ethereal/dtds/itunes.dtd
share/ethereal/dtds/rss.dtd
share/ethereal/dtds/smil.dtd
+share/ethereal/dumpcap.html
share/ethereal/editcap.html
share/ethereal/ethereal-filter.html
share/ethereal/ethereal.html
diff -r acdae51d6fbd -r 2965ebc6f3bb net/ethereal/distinfo
--- a/net/ethereal/distinfo Tue Apr 25 07:58:26 2006 +0000
+++ b/net/ethereal/distinfo Tue Apr 25 10:04:20 2006 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.49 2006/01/02 22:34:34 salo Exp $
+$NetBSD: distinfo,v 1.50 2006/04/25 10:04:20 tron Exp $
-SHA1 (ethereal-0.10.14.tar.bz2) = 95f63a8ebb93056f7e107ad1343754c43fae643c
-RMD160 (ethereal-0.10.14.tar.bz2) = 1c11c43a1ceebb5a82dc920ca30b370ec73a1d23
-Size (ethereal-0.10.14.tar.bz2) = 8583324 bytes
-SHA1 (patch-aa) = 0513b971c0af032fc64fc181fbd64d78aef0d044
+SHA1 (ethereal-0.99.0.tar.bz2) = 466299ac49f21904ed91b93e81667f226637e868
+RMD160 (ethereal-0.99.0.tar.bz2) = f86e21ae60d53e1ed60b61e58c2941ecfd4d8696
+Size (ethereal-0.99.0.tar.bz2) = 8884587 bytes
+
diff -r acdae51d6fbd -r 2965ebc6f3bb net/ethereal/patches/patch-aa
--- a/net/ethereal/patches/patch-aa Tue Apr 25 07:58:26 2006 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,27 +0,0 @@
-$NetBSD: patch-aa,v 1.15 2005/07/13 10:01:53 drochner Exp $
-
---- epan/dissectors/packet-radiotap.c.orig 2005-07-12 17:36:14.000000000 +0200
-+++ epan/dissectors/packet-radiotap.c
-@@ -397,6 +397,7 @@ dissect_radiotap(tvbuff_t *tvb, packet_i
- offset++;
- break;
- case IEEE80211_RADIOTAP_CHANNEL:
-+ offset = (offset + 1) & ~1;
- if (tree) {
- freq = tvb_get_letohs(tvb, offset);
- flags = tvb_get_letohs(tvb, offset+2);
-@@ -412,12 +413,14 @@ dissect_radiotap(tvbuff_t *tvb, packet_i
- case IEEE80211_RADIOTAP_LOCK_QUALITY:
- case IEEE80211_RADIOTAP_TX_ATTENUATION:
- case IEEE80211_RADIOTAP_DB_TX_ATTENUATION:
-+ offset = (offset + 1) & ~1;
- #if 0
- tvb_get_letohs(tvb, offset);
- #endif
- offset+=2;
- break;
- case IEEE80211_RADIOTAP_TSFT:
-+ offset = (offset + 7) & ~7;
- if (tree) {
- proto_tree_add_item(radiotap_tree, hf_radiotap_mactime,
- tvb, offset, 8, FALSE);
Home |
Main Index |
Thread Index |
Old Index