summaryrefslogtreecommitdiff
path: root/chat/micq
diff options
context:
space:
mode:
authoritojun <itojun@pkgsrc.org>2002-06-14 22:16:35 +0000
committeritojun <itojun@pkgsrc.org>2002-06-14 22:16:35 +0000
commitec2d65971869583badf6e98ddfdad83fd82ac37e (patch)
tree32608fe0aaf45a9c8ffbb698d93a244d0a07aee6 /chat/micq
parent71fe29a6d134b77c5de87d6acd991e2722ba316c (diff)
downloadpkgsrc-ec2d65971869583badf6e98ddfdad83fd82ac37e.tar.gz
upgrade to 0.4.9. note that user config file (.micqrc) has moved to
new location (.micq/micqrc) and lost backward compat, it seems. PR17254 (I stripped off latin1 portion of the message - "|" should be "u with umraut") 2001-06-10 R|diger Kuhlmann <info@ruediger-kuhlmann.de> 0.4.9: fixes, translation updates, automatic reconnects & responses, birthday flag, man page & help texts 2001-05-10 R|diger Kuhlmann <info@ruediger-kuhlmann.de> 0.4.8.pl10: i18n fix, togig vs toginvis vs hermit, quiet mode, v8 p2p, and top secret 2001-05-10 R|diger Kuhlmann <info@ruediger-kuhlmann.de> 0.4.8.pl9: SMS sending, password changing, character conversion 2001-05-08 R|diger Kuhlmann <info@ruediger-kuhlmann.de> 0.4.8.pl8: random chat group support, fixes 2001-05-03 R|diger Kuhlmann <info@ruediger-kuhlmann.de> 0.4.8.pl7: complete search support, fixes 2002-05-01 R|diger Kuhlmann <info@ruediger-kuhlmann.de> 0.4.8.pl6: SOCKS5 support, setup wizard, UIN registration, fixes, fixes, fixes 2002-04-27 R|diger Kuhlmann <info@ruediger-kuhlmann.de> 0.4.8.pl5: add/remove contacts, be invisible, be visible by / ignore contact 2002-04-26 R|diger Kuhlmann <info@ruediger-kuhlmann.de> 0.4.8.pl4: offline msgs, receiving msgs, ui improvements 2002-04-04 R|diger Kuhlmann <info@ruediger-kuhlmann.de> 0.4.8.pl3: password and other fixes 2002-03-06 R|diger Kuhlmann <info@ruediger-kuhlmann.de> 0.4.8.pl2: with basic support of v8 2002-03-06 R|diger Kuhlmann <info@ruediger-kuhlmann.de> 0.4.8.pl1: fix minor glitch of not creating ~/.micq/ 2002-02-15 R|diger Kuhlmann <info@ruediger-kuhlmann.de> 0.4.8: with peer-to-peer (TCP) support
Diffstat (limited to 'chat/micq')
-rw-r--r--chat/micq/Makefile4
-rw-r--r--chat/micq/distinfo8
-rw-r--r--chat/micq/patches/patch-ab17
-rw-r--r--chat/micq/patches/patch-ac13
4 files changed, 5 insertions, 37 deletions
diff --git a/chat/micq/Makefile b/chat/micq/Makefile
index 845114d56ef..ed0dc38013e 100644
--- a/chat/micq/Makefile
+++ b/chat/micq/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.5 2001/11/28 17:30:38 wiz Exp $
+# $NetBSD: Makefile,v 1.6 2002/06/14 22:16:35 itojun Exp $
-DISTNAME= micq-0.4.7
+DISTNAME= micq-0.4.9
CATEGORIES= chat
MASTER_SITES= http://micq.ukeer.de/source/
EXTRACT_SUFX= .tgz
diff --git a/chat/micq/distinfo b/chat/micq/distinfo
index cf2b99b3d1c..72001c858d5 100644
--- a/chat/micq/distinfo
+++ b/chat/micq/distinfo
@@ -1,6 +1,4 @@
-$NetBSD: distinfo,v 1.4 2001/11/28 17:30:38 wiz Exp $
+$NetBSD: distinfo,v 1.5 2002/06/14 22:16:35 itojun Exp $
-SHA1 (micq-0.4.7.tgz) = 9eafac726ba1766c365c3fe13c93bd2846d0e558
-Size (micq-0.4.7.tgz) = 254626 bytes
-SHA1 (patch-ab) = a2f834722669baa3371a1e2cfb0a819d56cb279e
-SHA1 (patch-ac) = 3d10352b5bbd2717874384154ca4a58e22a04f7d
+SHA1 (micq-0.4.9.tgz) = 6641c416964e8abd694a062409395f2173c381b9
+Size (micq-0.4.9.tgz) = 419381 bytes
diff --git a/chat/micq/patches/patch-ab b/chat/micq/patches/patch-ab
deleted file mode 100644
index 4d0d9a9b38d..00000000000
--- a/chat/micq/patches/patch-ab
+++ /dev/null
@@ -1,17 +0,0 @@
-$NetBSD: patch-ab,v 1.2 2001/11/28 17:30:39 wiz Exp $
-
---- src/mreadline.c.orig Thu Nov 22 00:29:15 2001
-+++ src/mreadline.c
-@@ -166,9 +166,10 @@
- }
-
- if ((uin = TabGetNext ()))
-- sprintf (s, "%s %s/", message_cmd, UIN2Name (uin));
-+ snprintf (s, sizeof(s), "%s %s/", message_cmd, UIN2Name (uin));
- else
-- sprintf (s, "%s ", message_cmd);
-+ snprintf (s, sizeof(2), "%s ", message_cmd);
-+
-
- clen = cpos = strlen (s);
- R_undraw ();
diff --git a/chat/micq/patches/patch-ac b/chat/micq/patches/patch-ac
deleted file mode 100644
index e8d866f2f68..00000000000
--- a/chat/micq/patches/patch-ac
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-ac,v 1.2 2001/11/28 17:30:39 wiz Exp $
-
---- src/sendmsg.c.orig Thu Nov 22 00:32:01 2001
-+++ src/sendmsg.c
-@@ -1087,7 +1087,7 @@
- {
- char buf[450];
-
-- sprintf (buf, "%s\xFE%s", url, description);
-+ snprintf (buf, sizeof(buf), "%s\xFE%s", url, description);
- icq_sendmsg (sok, uin, buf, URL_MESS);
- }
-