7fd50cc6de
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.
45 lines
1.3 KiB
Makefile
45 lines
1.3 KiB
Makefile
# $NetBSD: Makefile,v 1.21 2003/06/29 02:04:20 jlam Exp $
|
|
#
|
|
|
|
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
|
|
COMMENT= Instant Messenger interface (ICQ2000, Yahoo!, and MSN support)
|
|
|
|
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/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"
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|
|
|
|
.if ${MACHINE_ARCH} == "alpha"
|
|
# avoid toolchain bugs
|
|
CFLAGS:= ${CFLAGS:C/-O[0-9]*//g}
|
|
.endif
|