diff options
author | wiz <wiz> | 2005-04-05 12:44:17 +0000 |
---|---|---|
committer | wiz <wiz> | 2005-04-05 12:44:17 +0000 |
commit | 31421bf82f45e374945f315cba03d11d24c9ce41 (patch) | |
tree | e5788eddbfda147ce8d50b23f959e5883828e45c /chat/centericq/Makefile | |
parent | 68b541b95c9c53945590bd1ef5faef679940edd4 (diff) | |
download | pkgsrc-31421bf82f45e374945f315cba03d11d24c9ce41.tar.gz |
Update to 4.20.0, provided by Znarf Ainav on tech-pkg:
4.14.0
------
Because of the mistake I made in the previous version, the 'u' letter was
eaten by the RTF parser when processing messages from windows icq clients.
It looked for unicode chars, but ate all 'u' characters it used to found.
Fixed that.
A memory leak problem when checking RSS was fixed.
Gadu-Gadu module used to produce a segfault when it was unable to obtain
a registration token from the server. Now it doesn't crash, though the
impossibility to register a new UIN is still there. The serve simply
doesn't find an appropriate document by the registration URL. Too bad.
Applied a small patch by Paul Chitescu so that it's now possible to start
centericq with all protocols set to offline.
Another type of external event was added. Now you can execute your actions
when someone goes offline. Hope someone finds that useful.
4.20.0
------
PGP encryption support was implemented for the Jabber module. In a nutshell
this means that with a proper setup your communications get a way more secure.
GPGME library is needed to build the PGP support.
Fixed the RTF parser that takes charge when a message from a Windows ICQ
client is received. One problem was that it used to treat backspace characters
wrong sometimes. Another problem with utf-16 was fixed with a patch submitted
by Vadim Nosovsky.
After ICQ dual login detection centericq used to try re-connecting, though it
wasn't supposed to. Fixed.
During a long time noone reported me the bug related to libicq2000's header
files getting installed each time "make install" was run for centericq. Finally
Wolfram Schlich noted this one, so I fixed it.
Logging on Yahoo! didn't work on Sun Sparc machines. Fixed that. That might
also revive Gadu-Gadu on bigendian architectures.
A couple of interface related bugs were fixed, such as a mistake in the group
organization dialog as well as not clearing pending messages for contacts in
non-chat communication mode.
Diffstat (limited to 'chat/centericq/Makefile')
-rw-r--r-- | chat/centericq/Makefile | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/chat/centericq/Makefile b/chat/centericq/Makefile index 8f75e77ad86..9bf77e8b0d8 100644 --- a/chat/centericq/Makefile +++ b/chat/centericq/Makefile @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.47 2005/02/21 20:26:09 hubertf Exp $ +# $NetBSD: Makefile,v 1.48 2005/04/05 12:44:17 wiz Exp $ # -DISTNAME= centericq-4.13.0 -PKGREVISION= 1 +DISTNAME= centericq-4.20.0 CATEGORIES= chat MASTER_SITES= http://konst.org.ua/download/ \ http://centericq.de/archive/source/releases/ @@ -10,7 +9,7 @@ EXTRACT_SUFX= .tar.bz2 MAINTAINER= tech-pkg@NetBSD.org HOMEPAGE= http://konst.org.ua/eng/software/centericq/info.html -COMMENT= Instant Messenger interface for ICQ2000, Yahoo!, MSN and Jabber +COMMENT= Instant Messenger interface supporting many protocols USE_BUILDLINK3= yes USE_PKGLOCALEDIR= yes @@ -19,6 +18,7 @@ USE_LANGUAGES= c c++ GNU_CONFIGURE= yes CONFIGURE_ARGS+= --with-ssl --with-openssl=${SSLBASE} +CONFIGURE_ARGS+= --with-gpgme=${BUILDLINK_PREFIX.gpgme}/bin/gpgme-config LIBS= ${LDFLAGS} USE_PERL5= run @@ -26,6 +26,7 @@ REPLACE_PERL= misc/cicqconv INCOMPAT_CURSES+= NetBSD-1.[45]*-* NetBSD-1.6-* NetBSD-1.6.[1-9]-* INCOMPAT_CURSES+= NetBSD-1.6_*-* NetBSD-1.6.[1-9]_*-* NetBSD-1.6[A-T]-* +INCOMPAT_CURSES+= NetBSD-2.* NetBSD-3.* # see PR 29060 .include "../../mk/bsd.prefs.mk" @@ -46,6 +47,7 @@ GCC_REQD+= 3.0 # see PR 29185 .include "../../devel/gettext-lib/buildlink3.mk" .include "../../devel/ncurses/buildlink3.mk" .include "../../lang/perl5/buildlink3.mk" +.include "../../security/gpgme/buildlink3.mk" .include "../../security/openssl/buildlink3.mk" .include "../../www/curl/buildlink3.mk" |