diff options
author | jlam <jlam@pkgsrc.org> | 2003-06-29 02:04:20 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2003-06-29 02:04:20 +0000 |
commit | 7fd50cc6de9f0f6728feddf145dc23548dad22e6 (patch) | |
tree | 8d130d95ede0b3d42b9f6f9783e76be3ad9c4578 /chat/centericq/Makefile | |
parent | 118c3ae53b3c17ba2608a5683f943674e19c14a6 (diff) | |
download | pkgsrc-7fd50cc6de9f0f6728feddf145dc23548dad22e6.tar.gz |
Update chat/centericq to 4.9.4. Major changes from version 4.9.2nb3
include:
Glib is not needed to build the program anymore.
The old nickname didn't appear in the change nickname input line which
was invoked from the Account manager dialog.
Logging became more configurable. Now from the configuration dialog it's
possible to enable/disable such facilities like log messages timestamping,
showing of users going online and offline and "user is typing"
notifications.
The --bind command parameter was added. Using it it's possible to specify
a custom IP centericq should use for outgoing connections.
MSN status related problems were fixed. Like when user set "one the phone"
or "lunch" status centericq used to show them as being offline.
A patch from Mark Verboom <mark@verboom.net> was applied. It allows to
enable chat mode only for specified protocols.
The find/add users dialog didn't allow entering nicknames, which made it
impossible to add yahoo and aim contacts.
Diffstat (limited to 'chat/centericq/Makefile')
-rw-r--r-- | chat/centericq/Makefile | 20 |
1 files changed, 14 insertions, 6 deletions
diff --git a/chat/centericq/Makefile b/chat/centericq/Makefile index 13095d43288..e7f19634649 100644 --- a/chat/centericq/Makefile +++ b/chat/centericq/Makefile @@ -1,10 +1,10 @@ -# $NetBSD: Makefile,v 1.20 2003/06/10 16:51:48 jmc Exp $ +# $NetBSD: Makefile,v 1.21 2003/06/29 02:04:20 jlam Exp $ # -DISTNAME= centericq-4.9.2 -PKGREVISION= 3 +DISTNAME= centericq-4.9.4 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 @@ -14,16 +14,24 @@ USE_BUILDLINK2= yes USE_PKGLOCALEDIR= yes USE_GCC_SHLIB= yes USE_GMAKE= yes + GNU_CONFIGURE= yes +CONFIGURE_ARGS+= --with-ssl --with-openssl=${SSLBASE} +# +# 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 LIBS= ${LDFLAGS} -USE_PERL5= run -REPLACE_PERL= ${WRKSRC}/misc/cicqconf +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 "../../devel/glib/buildlink2.mk" +.include "../../converters/libiconv/buildlink2.mk" .include "../../devel/gettext-lib/buildlink2.mk" .include "../../devel/ncurses/buildlink2.mk" .include "../../lang/perl5/buildlink2.mk" |