1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-27 05:10:36 +00:00
freebsd-ports/net-im/gajim/Makefile
Ruslan Makhmatkhanov ebfae9effc - update to 0.15.2
changelog:
http://hg.gajim.org/gajim/file/gajim-0.15.2/ChangeLog

Reported by:	portscout
Feature safe:	yes
2012-11-02 19:29:47 +00:00

71 lines
1.7 KiB
Makefile

# $FreeBSD$
PORTNAME= gajim
PORTVERSION= 0.15.2
CATEGORIES= net-im
MASTER_SITES= http://www.gajim.org/downloads/0.15/
MAINTAINER= rm@FreeBSD.org
COMMENT= Jabber client based on a plugin system
LICENSE= GPLv3
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}openssl>=0:${PORTSDIR}/security/py-openssl \
${PYTHON_PKGNAMEPREFIX}sqlite3>=0:${PORTSDIR}/databases/py-sqlite3 \
${PYTHON_PKGNAMEPREFIX}asn1>=0:${PORTSDIR}/devel/py-asn1
CONFLICTS= gajim-devel-[0-9]*
FETCH_ARGS= -Fpr
GNU_CONFIGURE= yes
INSTALLS_ICONS= yes
USE_BZIP2= yes
USE_DOS2UNIX= src/plugins/plugins_i18n.py
USE_GMAKE= yes
USE_GNOME= pygtk2
USE_PYTHON= -2.7
USE_XORG= x11 xext xscrnsaver
MAN1= gajim.1 gajim-remote.1 gajim-history-manager.1
CONFIGURE_ENV+= PYTHON=${PYTHON_CMD}
LDFLAGS+= -L${LOCALBASE}/lib
CFLAGS+= -I${LOCALBASE}/include
OPTIONS_DEFINE= CRYPTO DBUS KEYRING NLS SPELL
OPTIONS_DEFAULT=DBUS NLS SPELL
CRYPTO_DESC= End to end encryption support
KEYRING_DESC= Gnome Keyring support
SPELL_DESC= Spell checking support
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MNLS}
USE_GETTEXT= yes
PLIST_SUB+= NLS=""
.else
CONFIGURE_ARGS+= --disable-nls
PLIST_SUB+= NLS="@comment "
.endif
.if ${PORT_OPTIONS:MDBUS}
RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}dbus>=0.82.2:${PORTSDIR}/devel/py-dbus
.endif
.if ${PORT_OPTIONS:MCRYPTO}
RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}pycrypto>0:${PORTSDIR}/security/py-pycrypto
.endif
.if ${PORT_OPTIONS:MKEYRING}
USE_GNOME+= pygnomedesktop
.endif
.if ${PORT_OPTIONS:MSPELL}
LIB_DEPENDS= gtkspell:${PORTSDIR}/textproc/gtkspell
.endif
pre-build:
${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py ${WRKSRC}/src
${PYTHON_CMD} -O ${PYTHON_LIBDIR}/compileall.py ${WRKSRC}/src
.include <bsd.port.mk>