summaryrefslogtreecommitdiffstats
path: root/net-im/psi/Makefile
blob: b1a043caccc1af2b96d00791fdbb040d34cd2c49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# Created by: Jonathan Chen <jonc@chen.org.nz>
# $FreeBSD$

PORTNAME=	psi
PORTVERSION=	0.15
CATEGORIES=	net-im
MASTER_SITES=	SF/${PORTNAME}/Psi/${PORTVERSION}

MAINTAINER=	makc@FreeBSD.org
COMMENT=	A Qt-based Jabber client

LIB_DEPENDS=	qca.2:${PORTSDIR}/devel/qca
RUN_DEPENDS=	qca-ossl>=2.0.0.b3:${PORTSDIR}/security/qca-ossl \
		qca-gnupg>=2.0.0.b3:${PORTSDIR}/security/qca-gnupg

HAS_CONFIGURE=	yes
QT_NONSTANDARD=	yes
USES=		pkgconfig
USE_BZIP2=	yes
USE_QT4=	gui network xml imageformats_run \
		qmake_build moc_build rcc_build uic_build
USE_XORG=	xscrnsaver

CONFIGURE_ARGS=	--prefix=${PREFIX} --qtdir=${LOCALBASE} \
		--disable-growl --verbose
CONFIGURE_ENV=	QMAKEFLAGS='${QMAKEFLAGS}'
MAKE_JOBS_SAFE=	yes

OPTIONS_DEFINE=	ASPELL ENCHANT DBUS
OPTIONS_DEFAULT=	ASPELL DBUS

ASPELL_DESC=	Use aspell for spell checking
ENCHANT_DESC=	Use Enchant for spell checking

.include <bsd.port.options.mk>

.if defined(WITH_DEBUG)
CONFIGURE_ARGS+=	--debug
PLIST_SUB+=	DEBUG=""
.else
CONFIGURE_ARGS+=	--release  --no-separate-debug-info
PLIST_SUB+=	DEBUG="@comment "
.endif

.if ${PORT_OPTIONS:MDBUS}
USE_QT4+=	dbus
.else
CONFIGURE_ARGS+=	--disable-qdbus
.endif

.if ${PORT_OPTIONS:MASPELL}
LIB_DEPENDS+=	aspell.16:${PORTSDIR}/textproc/aspell
CONFIGURE_ARGS+=	--with-aspell-inc=${LOCALBASE}/include \
			--with-aspell-lib=${LOCALBASE}/lib
.else
CONFIGURE_ARGS+=	--disable-aspell
.endif

.if ${PORT_OPTIONS:MENCHANT}
LIB_DEPENDS+=	enchant.1:${PORTSDIR}/textproc/enchant
.else
CONFIGURE_ARGS+=	--disable-enchant
.endif

post-install:
	${STRIP_CMD} ${PREFIX}/bin/psi

.include <bsd.port.mk>
OpenPOWER on IntegriCloud