summaryrefslogtreecommitdiff
path: root/chat/gaim
diff options
context:
space:
mode:
authorjmmv <jmmv@pkgsrc.org>2004-11-12 22:58:25 +0000
committerjmmv <jmmv@pkgsrc.org>2004-11-12 22:58:25 +0000
commit876ded394f87d0062ae83459daafe8f64c43eabb (patch)
tree582bc09a555d6c723593a37c9e25f07699419b9a /chat/gaim
parent2dd19fa07ab30671c8c2126128d1e179b14a99a8 (diff)
downloadpkgsrc-876ded394f87d0062ae83459daafe8f64c43eabb.tar.gz
Update to 1.0.3, from Matthew Luckie (maintainer) in private mail:
Bug Fixes: * Jabber authentication fixes (Michael Plump) * Yahoo buddy idle reporting is more accurate (Evan Schoenberg) * "Allow All" privacy setting works on Yahoo (Peter Lawler) * Fix a crash when dragging a buddy to the conversation entry area * Fix a crash removing chats from the buddy list * Correctly display buddy pounces for aliases with &, < or > in them * Correctly follow the per-conversation logging option
Diffstat (limited to 'chat/gaim')
-rw-r--r--chat/gaim/Makefile4
-rw-r--r--chat/gaim/distinfo7
-rw-r--r--chat/gaim/patches/patch-ab18
3 files changed, 24 insertions, 5 deletions
diff --git a/chat/gaim/Makefile b/chat/gaim/Makefile
index c28dc1a036b..83ad9770365 100644
--- a/chat/gaim/Makefile
+++ b/chat/gaim/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.72 2004/10/20 07:48:30 jmmv Exp $
+# $NetBSD: Makefile,v 1.73 2004/11/12 22:58:25 jmmv Exp $
#
-DISTNAME= gaim-1.0.2
+DISTNAME= gaim-1.0.3
CATEGORIES= chat x11
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=gaim/}
EXTRACT_SUFX= .tar.bz2
diff --git a/chat/gaim/distinfo b/chat/gaim/distinfo
index 343c2c729ff..f1852c3831d 100644
--- a/chat/gaim/distinfo
+++ b/chat/gaim/distinfo
@@ -1,5 +1,6 @@
-$NetBSD: distinfo,v 1.52 2004/10/20 07:48:30 jmmv Exp $
+$NetBSD: distinfo,v 1.53 2004/11/12 22:58:25 jmmv Exp $
-SHA1 (gaim-1.0.2.tar.bz2) = 329ad8f7f436c6b588f5b660aec583996035a640
-Size (gaim-1.0.2.tar.bz2) = 4809084 bytes
+SHA1 (gaim-1.0.3.tar.bz2) = 1befd3c562ebe3564a2bf606b9937b2de5d3e0c8
+Size (gaim-1.0.3.tar.bz2) = 4810182 bytes
SHA1 (patch-aa) = 24f1b21042df5c7706dcf3def37e10943acdd39e
+SHA1 (patch-ab) = 103e2ae5fb77154a22b42b5f59e1fc13cd4e2218
diff --git a/chat/gaim/patches/patch-ab b/chat/gaim/patches/patch-ab
new file mode 100644
index 00000000000..be0f8084457
--- /dev/null
+++ b/chat/gaim/patches/patch-ab
@@ -0,0 +1,18 @@
+$NetBSD: patch-ab,v 1.12 2004/11/12 22:58:25 jmmv Exp $
+
+--- src/log.c.orig 2004-11-11 20:11:43.000000000 +0100
++++ src/log.c
+@@ -74,11 +74,12 @@ void gaim_log_free(GaimLog *log)
+ void gaim_log_write(GaimLog *log, GaimMessageFlags type,
+ const char *from, time_t time, const char *message)
+ {
++ struct _gaim_logsize_user *lu;
++
+ g_return_if_fail(log);
+ g_return_if_fail(log->logger);
+ g_return_if_fail(log->logger->write);
+
+- struct _gaim_logsize_user *lu;
+ (log->logger->write)(log, type, from, time, message);
+
+ lu = g_new(struct _gaim_logsize_user, 1);