aboutsummaryrefslogtreecommitdiff
path: root/irc/xchat-gnome
diff options
context:
space:
mode:
authorJoe Marcus Clarke <marcus@FreeBSD.org>2004-01-03 03:02:33 +0000
committerJoe Marcus Clarke <marcus@FreeBSD.org>2004-01-03 03:02:33 +0000
commit569c633b663523f2794958e1eed6eccaa558aee5 (patch)
tree7f555af708bfad2f2a35d96e47531196e940a76b /irc/xchat-gnome
parentca64ab7d594efe32b97c8f0d366522512f803070 (diff)
downloadports-569c633b663523f2794958e1eed6eccaa558aee5.tar.gz
ports-569c633b663523f2794958e1eed6eccaa558aee5.zip
Update to 2.0.7.
Notes
Notes: svn path=/head/; revision=97153
Diffstat (limited to 'irc/xchat-gnome')
-rw-r--r--irc/xchat-gnome/Makefile7
-rw-r--r--irc/xchat-gnome/distinfo2
-rw-r--r--irc/xchat-gnome/files/patch-xc206-fixpsend.diff22
3 files changed, 3 insertions, 28 deletions
diff --git a/irc/xchat-gnome/Makefile b/irc/xchat-gnome/Makefile
index 630593b71d14..315a3b6b1097 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 c6eca9801cfa..4534192d00e3 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 7c6d49564492..000000000000
--- 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;
- }
-