From 293ea1c9555d571b5d6d5dddccccd6fb2c1103f0 Mon Sep 17 00:00:00 2001 From: marcus Date: Sat, 3 Jan 2004 03:02:33 +0000 Subject: Update to 2.0.7. --- irc/xchat-gnome/Makefile | 7 ++----- irc/xchat-gnome/distinfo | 2 +- irc/xchat-gnome/files/patch-xc206-fixpsend.diff | 22 ---------------------- 3 files changed, 3 insertions(+), 28 deletions(-) delete mode 100644 irc/xchat-gnome/files/patch-xc206-fixpsend.diff (limited to 'irc/xchat-gnome') diff --git a/irc/xchat-gnome/Makefile b/irc/xchat-gnome/Makefile index 630593b..315a3b6 100644 --- a/irc/xchat-gnome/Makefile +++ b/irc/xchat-gnome/Makefile @@ -6,12 +6,9 @@ # PORTNAME= xchat2 -PORTVERSION= 2.0.6 -PORTREVISION= 1 +PORTVERSION= 2.0.7 CATEGORIES= irc gnome ipv6 -MASTER_SITES= ${MASTER_SITE_LOCAL} -MASTER_SITE_SUBDIR= adamw -# http://xchat.org/files/source/2.0/ +MASTER_SITES= http://xchat.org/files/source/2.0/ DISTNAME= xchat-${PORTVERSION} MAINTAINER= gnome@FreeBSD.org diff --git a/irc/xchat-gnome/distinfo b/irc/xchat-gnome/distinfo index c6eca98..4534192 100644 --- a/irc/xchat-gnome/distinfo +++ b/irc/xchat-gnome/distinfo @@ -1 +1 @@ -MD5 (xchat-2.0.6.tar.bz2) = 5cc5e603083242fb598bc940b1a4fccc +MD5 (xchat-2.0.7.tar.bz2) = f53bae43f4e89c6a8d873877d86df1b5 diff --git a/irc/xchat-gnome/files/patch-xc206-fixpsend.diff b/irc/xchat-gnome/files/patch-xc206-fixpsend.diff deleted file mode 100644 index 7c6d495..0000000 --- a/irc/xchat-gnome/files/patch-xc206-fixpsend.diff +++ /dev/null @@ -1,22 +0,0 @@ -# Fixes potential crash when receiving an invalid PSEND ID number. ---- src/common/dcc.c 2003-11-28 14:06:57.000000000 +1100 -+++ src/common/dcc.c 2003-12-13 20:17:12.000000000 +1100 -@@ -1659,9 +1659,15 @@ - * sending file. - */ - dcc = find_dcc_from_id (pasvid, TYPE_SEND); -- dcc->addr = addr; -- dcc->port = port; -- dcc_connect(dcc); -+ if (dcc) -+ { -+ dcc->addr = addr; -+ dcc->port = port; -+ dcc_connect (dcc); -+ } else -+ { -+ dcc_malformed (sess, nick, word_eol[4] + 2); -+ } - return; - } - -- cgit v1.1