summaryrefslogtreecommitdiff
path: root/chat/gaim
diff options
context:
space:
mode:
authoratatat <atatat>2002-11-06 19:18:59 +0000
committeratatat <atatat>2002-11-06 19:18:59 +0000
commit953461c40fe91f905927e97636b81998aa0bdc65 (patch)
tree9b06fa461cf9b5fdd4a54299a07bb348b93d06f1 /chat/gaim
parente81ced1913ecfe9b4e1496a7856a95a4c3ed6bb5 (diff)
downloadpkgsrc-953461c40fe91f905927e97636b81998aa0bdc65.tar.gz
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.
Diffstat (limited to 'chat/gaim')
-rw-r--r--chat/gaim/Makefile.common3
-rw-r--r--chat/gaim/distinfo3
-rw-r--r--chat/gaim/patches/patch-ac21
3 files changed, 25 insertions, 2 deletions
diff --git a/chat/gaim/Makefile.common b/chat/gaim/Makefile.common
index 2697e52e5ee..e1ccbcc3ac5 100644
--- a/chat/gaim/Makefile.common
+++ b/chat/gaim/Makefile.common
@@ -1,7 +1,8 @@
-# $NetBSD: Makefile.common,v 1.5 2002/10/29 18:52:01 wiz Exp $
+# $NetBSD: Makefile.common,v 1.6 2002/11/06 19:19:38 atatat Exp $
#
DISTNAME= gaim-0.59.3
+PKGREVISION= 1
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 c76ef892d68..18f98e6983c 100644
--- a/chat/gaim/distinfo
+++ b/chat/gaim/distinfo
@@ -1,6 +1,7 @@
-$NetBSD: distinfo,v 1.17 2002/10/28 19:39:28 jmc Exp $
+$NetBSD: distinfo,v 1.18 2002/11/06 19:18:59 atatat Exp $
SHA1 (gaim-0.59.3.tar.gz) = 458f671d1c03769183ed580a6db7af17cd6be943
Size (gaim-0.59.3.tar.gz) = 2116775 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
new file mode 100644
index 00000000000..6e70c9f4767
--- /dev/null
+++ b/chat/gaim/patches/patch-ac
@@ -0,0 +1,21 @@
+$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);