summaryrefslogtreecommitdiff
path: root/chat/gaim
diff options
context:
space:
mode:
authormycroft <mycroft>2002-11-14 21:33:49 +0000
committermycroft <mycroft>2002-11-14 21:33:49 +0000
commita8421873c996a3d9a2dc300c1fdeb77125fc4aa7 (patch)
treeeec5bf486f910f421d8846000d1234a0a829952b /chat/gaim
parent83adca87a66bbf93d1077bf7d7eb108529215be9 (diff)
downloadpkgsrc-a8421873c996a3d9a2dc300c1fdeb77125fc4aa7.tar.gz
Update to 0.59.6. Tested with AIM/Oscar, ICQ/Oscar, Yahoo, Jabber and IRC.
Diffstat (limited to 'chat/gaim')
-rw-r--r--chat/gaim/Makefile.common5
-rw-r--r--chat/gaim/distinfo7
-rw-r--r--chat/gaim/patches/patch-ac21
3 files changed, 5 insertions, 28 deletions
diff --git a/chat/gaim/Makefile.common b/chat/gaim/Makefile.common
index e1ccbcc3ac5..36a999aaaad 100644
--- a/chat/gaim/Makefile.common
+++ b/chat/gaim/Makefile.common
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile.common,v 1.6 2002/11/06 19:19:38 atatat Exp $
+# $NetBSD: Makefile.common,v 1.7 2002/11/14 21:33:49 mycroft Exp $
#
-DISTNAME= gaim-0.59.3
-PKGREVISION= 1
+DISTNAME= gaim-0.59.6
CATEGORIES= chat x11
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=gaim/} \
ftp://ftp.marko.net/pub/gaim/
diff --git a/chat/gaim/distinfo b/chat/gaim/distinfo
index 18f98e6983c..1e02ec0ea7e 100644
--- a/chat/gaim/distinfo
+++ b/chat/gaim/distinfo
@@ -1,7 +1,6 @@
-$NetBSD: distinfo,v 1.18 2002/11/06 19:18:59 atatat Exp $
+$NetBSD: distinfo,v 1.19 2002/11/14 21:33:49 mycroft Exp $
-SHA1 (gaim-0.59.3.tar.gz) = 458f671d1c03769183ed580a6db7af17cd6be943
-Size (gaim-0.59.3.tar.gz) = 2116775 bytes
+SHA1 (gaim-0.59.6.tar.gz) = 57d341aa0a26fdafa5788e4c6c74538d72c86493
+Size (gaim-0.59.6.tar.gz) = 2104114 bytes
SHA1 (patch-aa) = d1eba622e65507f657d602e497601e38140c5963
SHA1 (patch-ab) = b085e043c5cb5b66e0540fd21ea86908d777d37c
-SHA1 (patch-ac) = 6d39fe3f7dfcc6a22a0f47bbbf8ba848e1d40c09
diff --git a/chat/gaim/patches/patch-ac b/chat/gaim/patches/patch-ac
deleted file mode 100644
index 6e70c9f4767..00000000000
--- a/chat/gaim/patches/patch-ac
+++ /dev/null
@@ -1,21 +0,0 @@
-$NetBSD: patch-ac,v 1.3 2002/11/06 19:19:00 atatat Exp $
-
-Control k already *has* a perfectly good meaning, so instead of
-defeating that purpose, use control c to pop up the colour picker
-instead. I'm not sure exactly when the gaim people changed this
-(somewhere between 0.59.1 and 0.59.3), but I think it's rather ill
-advised.
-
---- src/conversation.c.orig Sat Sep 14 10:13:05 2002
-+++ src/conversation.c
-@@ -955,8 +955,8 @@ gboolean keypress_callback(GtkWidget *en
- toggle_font(c->font, c);
- gtk_signal_emit_stop_by_name(GTK_OBJECT(entry), "key_press_event");
- break;
-- case 'k':
-- case 'K':
-+ case 'c':
-+ case 'C':
- quiet_set(c->fgcolorbtn,
- !gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(c->fgcolorbtn)));
- toggle_fg_color(c->fgcolorbtn, c);