aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authormarcus <marcus@FreeBSD.org>2009-02-12 14:09:22 +0800
committermarcus <marcus@FreeBSD.org>2009-02-12 14:09:22 +0800
commitd63ee3e05e2abb0505315dc8f823eb46c553f74b (patch)
tree11aa0e90c2256e2c1082fa0a1852d54d6367dd31 /net
parent2d6ffcdd36565311fc5fb3da4b2b75dc4f7360c2 (diff)
downloadfreebsd-ports-gnome-d63ee3e05e2abb0505315dc8f823eb46c553f74b.tar.gz
freebsd-ports-gnome-d63ee3e05e2abb0505315dc8f823eb46c553f74b.tar.zst
freebsd-ports-gnome-d63ee3e05e2abb0505315dc8f823eb46c553f74b.zip
Update to 1.0.6. See
http://www.wireshark.org/docs/relnotes/wireshark-1.0.6.html for a list of changes.
Diffstat (limited to 'net')
-rw-r--r--net/wireshark/Makefile2
-rw-r--r--net/wireshark/distinfo6
-rw-r--r--net/wireshark/files/patch-epan_to_str.c12
3 files changed, 4 insertions, 16 deletions
diff --git a/net/wireshark/Makefile b/net/wireshark/Makefile
index 9c3fef89a853..c95fe8b0c191 100644
--- a/net/wireshark/Makefile
+++ b/net/wireshark/Makefile
@@ -6,7 +6,7 @@
#
PORTNAME?= wireshark
-PORTVERSION= 1.0.5
+PORTVERSION= 1.0.6
PORTREVISION?= 0
CATEGORIES= net ipv6
MASTER_SITES= http://www.wireshark.org/download/src/ \
diff --git a/net/wireshark/distinfo b/net/wireshark/distinfo
index 712c24545985..70af2defbb50 100644
--- a/net/wireshark/distinfo
+++ b/net/wireshark/distinfo
@@ -1,3 +1,3 @@
-MD5 (wireshark-1.0.5.tar.bz2) = 4c6a93e00123d8bb7af48a009519aca4
-SHA256 (wireshark-1.0.5.tar.bz2) = 4f923e24d674ac62ded3da402a4de6d402886d80e3d7cac91cf026921f32fcf7
-SIZE (wireshark-1.0.5.tar.bz2) = 13144320
+MD5 (wireshark-1.0.6.tar.bz2) = f97041ec73e72fc36e39be2588045578
+SHA256 (wireshark-1.0.6.tar.bz2) = 7b4adacd86ba9f1c6a3a0dc74303d03635cd361c23c312ff9698e0c2a44b9f0d
+SIZE (wireshark-1.0.6.tar.bz2) = 13161721
diff --git a/net/wireshark/files/patch-epan_to_str.c b/net/wireshark/files/patch-epan_to_str.c
deleted file mode 100644
index d1f3ebb2ffaf..000000000000
--- a/net/wireshark/files/patch-epan_to_str.c
+++ /dev/null
@@ -1,12 +0,0 @@
---- epan/to_str.c.orig 2008-12-17 00:32:48.000000000 -0500
-+++ epan/to_str.c 2008-12-16 21:00:31.000000000 -0500
-@@ -368,6 +368,9 @@ time_secs_to_str_buf(gint32 time, guint3
- const gchar *msign = "";
- gboolean do_comma = FALSE;
-
-+#ifndef G_MININT32
-+#define G_MININT32 G_MININT
-+#endif
- if(time == G_MININT32) { /* That Which Shall Not Be Negated */
- g_snprintf(buf, buf_len, "Unable to cope with time value %d", time);
- return;