pkgsrc/chat/centericq/Makefile
wiz bada6037c4 Update to 4.9.6:
The internal RSS parser suffered some changes that enabled it to undestand
the RDF dialect as well as CDATA values. Some problems related to fetching
all the records on every check were fixed.

RSS checking delays are now specified in minutes, not in hours.

The "Reply" button was removed that used to appear in the message box
when reading RSS records.

Correct redirect processing was implemented in the HTTP module used to fetch
RSS documents.

HTTP proxy support was added. So far it's used only for RSS fetching.

History lastreads checking was improved. Now centericq shouldn't show the
unread messages mark for contacts you communicated with during some clock
skews.

Auto-reconnect appeared not to work for the ICQ protocol. Fixed.

It's now possible to join a Jabber conference by its JID, without a need
for a service to be registered on the server. Example:
"jdev@conference.jabber.org" in the "Name/Title" field.

Since Jabber IDs are not case sensitive, centericq treats JIDs written with
capital and small letters the same way.

The status change window was improved. Now it has the "All protocol" item on
the top along with newly added "Already logged in only".

The cicqconv contact list conversion utility was extended with ICQ list
support for Trillian written by Vassilios Karakoidas <bkarak@aueb.gr>.

Jabber authentification became smarter. If server doesn't support digest
authentification, it's not tried anymore. The point was that the new
digest practice made it impossible to login into server which didn't
support md5 digest auth. Fixed.

HTTP proxy support for fetching RSS feeds was fixed. It used to segfault
the application in some situation.
2003-08-31 16:46:27 +00:00

49 lines
1.4 KiB
Makefile

# $NetBSD: Makefile,v 1.27 2003/08/31 16:46:27 wiz Exp $
#
DISTNAME= centericq-4.9.6
CATEGORIES= chat
MASTER_SITES= http://konst.org.ua/download/
EXTRACT_SUFX= .tar.bz2
MAINTAINER= hubertf@NetBSD.org
HOMEPAGE= http://konst.org.ua/eng/software/centericq/info.html
COMMENT= Instant Messenger interface for ICQ2000, Yahoo!, MSN and Jabber
USE_BUILDLINK2= yes
USE_PKGLOCALEDIR= yes
USE_GCC_SHLIB= yes
USE_GMAKE= yes
USE_NCURSES= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS+= --with-ssl --with-openssl=${SSLBASE}
LIBS= ${LDFLAGS}
USE_PERL5= run
REPLACE_PERL= ${WRKSRC}/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]-*
.include "../../converters/libiconv/buildlink2.mk"
.include "../../devel/gettext-lib/buildlink2.mk"
.include "../../devel/ncurses/buildlink2.mk"
.include "../../lang/perl5/buildlink2.mk"
.include "../../security/openssl/buildlink2.mk"
.if defined(BUILDLINK_LIBICONV_LDADD) && !empty(BUILDLINK_LIBICONV_LDADD)
#
# libiconv depends on configure scripts to include <iconv.h> before
# trying to link against -liconv. Unfortunately, centericq's script
# doesn't do this, so fake it.
#
CONFIGURE_ENV+= ac_cv_lib_iconv_iconv=yes
.endif
.include "../../mk/bsd.pkg.mk"
.if ${MACHINE_ARCH} == "alpha"
# avoid toolchain bugs
CFLAGS:= ${CFLAGS:C/-O[0-9]*//g}
.endif