9c8b5ede43
developer is officially maintaining the package. The rationale for changing this from "tech-pkg" to "pkgsrc-users" is that it implies that any user can try to maintain the package (by submitting patches to the mailing list). Since the folks most likely to care about the package are the folks that want to use it or are already using it, this would leverage the energy of users who aren't developers.
69 lines
2 KiB
Makefile
69 lines
2 KiB
Makefile
# $NetBSD: Makefile,v 1.59 2006/03/04 21:29:02 jlam Exp $
|
|
#
|
|
|
|
DISTNAME= centericq-4.21.0
|
|
CATEGORIES= chat
|
|
PKGREVISION= 2
|
|
MASTER_SITES= http://konst.org.ua/download/ \
|
|
http://centericq.de/archive/source/releases/
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://konst.org.ua/eng/software/centericq/info.html
|
|
COMMENT= Instant Messenger interface supporting many protocols
|
|
|
|
USE_PKGLOCALEDIR= yes
|
|
USE_TOOLS+= gmake perl:run
|
|
USE_LANGUAGES= c c++
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --with-ssl --with-openssl=${SSLBASE:Q}
|
|
CONFIGURE_ARGS+= --with-gpgme=${BUILDLINK_PREFIX.gpgme}/bin/gpgme-config
|
|
LIBS+= ${LDFLAGS}
|
|
|
|
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"
|
|
|
|
.if ${OPSYS} == "NetBSD"
|
|
CPPFLAGS+= -DAUDIO_PLAYER="\"/usr/bin/audioplay\""
|
|
.else
|
|
DEPENDS+= sox>=12.17.4:../../audio/sox
|
|
SOX_PREFIX_DEFAULT= ${LOCALBASE}
|
|
EVAL_PREFIX+= SOX_PREFIX=sox
|
|
CPPFLAGS+= -DAUDIO_PLAYER="\"${SOX_PREFIX}/bin/play\""
|
|
.endif
|
|
|
|
.if !empty(MACHINE_ARCH:Msparc64)
|
|
GCC_REQD+= 3.0 # see PR 29185
|
|
.endif
|
|
|
|
.include "../../converters/libiconv/buildlink3.mk"
|
|
.include "../../devel/gettext-lib/buildlink3.mk"
|
|
.include "../../devel/ncurses/buildlink3.mk"
|
|
.include "../../security/gpgme/buildlink3.mk"
|
|
.include "../../security/openssl/buildlink3.mk"
|
|
.include "../../www/curl/buildlink3.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
|
|
|
|
post-install:
|
|
${INSTALL_MAN} ${WRKSRC}/centericq.1 ${PREFIX}/man/man1/
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|
|
|
|
.if ${MACHINE_ARCH} == "alpha"
|
|
# avoid toolchain bugs
|
|
CFLAGS:= ${CFLAGS:C/-O[0-9]*//g}
|
|
.endif
|