aboutsummaryrefslogtreecommitdiff
path: root/net-im/dino/Makefile
blob: 892ca2749d1ecfdb960c3717c34516778d94451a (plain) (blame)
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
69
70
71
72
73
74
75
76
77
78
PORTNAME=		dino
DISTVERSIONPREFIX=	v
DISTVERSION=		0.3.0
PORTREVISION=		5
CATEGORIES=		net-im

MAINTAINER=		ashish@FreeBSD.org
COMMENT=		Modern XMPP Chat Client using GTK+/Vala
WWW=		https://dino.im

LICENSE=		GPLv3
LICENSE_FILE=		${WRKSRC}/LICENSE

LIB_DEPENDS=	libsqlite3.so:databases/sqlite3 \
		libgee-0.8.so:devel/libgee \
		libicuuc.so:devel/icu \
		libsoup-2.4.so:devel/libsoup \
		libassuan.so:security/libassuan \
		libgpg-error.so:security/libgpg-error \
		libgspell-1.so:textproc/gspell \
		libgcrypt.so:security/libgcrypt \
		libsrtp2.so:net/libsrtp2

USES=		cmake cpe desktop-file-utils gettext-tools gnome \
		ninja pkgconfig vala:build

USE_GITHUB=	yes

OPTIONS_DEFINE=		OMEMO UPLOAD GNUPG ICE RTP
OPTIONS_DEFAULT=	OMEMO UPLOAD GNUPG ICE RTP
OPTIONS_SUB=		yes

HAS_CONFIGURE=	yes
LDFLAGS+=	-L${LOCALBASE}/lib
LDFLAGS+=	-Wl,--export-dynamic
USE_LDCONFIG=	yes

USE_GNOME=	cairo gdkpixbuf2 glib20 gnomeprefix gtk30 intlhack

ICE_DESC=		ICE NAT traversal plugin
OMEMO_DESC=		OMEMO plugin
RTP_DESC=		RTP plugin
UPLOAD_DESC=		HTTP file upload plugin
ICE_LIB_DEPENDS=	libnice.so:net-im/libnice \
			libgnutls.so:security/gnutls
ICE_VARS=		ENABLED_PLUGINS+=ice
ICE_VARS_OFF=		DISABLED_PLUGINS+=ice
RTP_LIB_DEPENDS=	libgnutls.so:security/gnutls \
			libwebrtc-audio-processing-1.so:audio/webrtc-audio-processing
RTP_USES=		gstreamer
RTP_USE=		GSTREAMER=srtp,gtk,pulse,opus,speex,vpx,x264,v4l2
RTP_VARS=		ENABLED_PLUGINS+=rtp
RTP_CMAKE_BOOL=		RTP_ENABLE_H264 RTP_ENABLE_VP9 RTP_ENABLE_H264 RTP_ENABLE_VAAPI
RTP_VARS_OFF=		DISABLED_PLUGINS+=rtp
OMEMO_GH_TUPLE=	signalapp:libsignal-protocol-c:v2.3.3:signalapp/plugins/signal-protocol/libsignal-protocol-c
OMEMO_LIB_DEPENDS=	libqrencode.so:graphics/libqrencode
OMEMO_VARS=		ENABLED_PLUGINS+=omemo
OMEMO_CMAKE_BOOL=	BUILD_LIBSIGNAL_IN_TREE
OMEMO_VARS_OFF=		DISABLED_PLUGINS+=omemo
UPLOAD_VARS=		ENABLED_PLUGINS+=http-files
UPLOAD_VARS_OFF=	DISABLED_PLUGINS+=http-files
GNUPG_LIB_DEPENDS=	libgpgme.so:security/gpgme
GNUPG_VARS=		ENABLED_PLUGINS+=openpgp
GNUPG_VARS_OFF=		DISABLED_PLUGINS+=openpgp

CMAKE_ARGS+=	-DENABLED_PLUGINS="${ENABLED_PLUGINS:S/ /;/gW}"
CMAKE_ARGS+=	-DDISABLED_PLUGINS="${DISABLED_PLUGINS:S/ /;/gW}"

pre-everything::
	@if [ -z "${PACKAGE_BUILDING}" ]; then if ! ${PKG_BIN} query \
			'%o-%Ok-%Od' databases/sqlite3 | \
			${GREP} -F -wq databases/sqlite3-UNICODE61-on; then \
		${ECHO_MSG} "/!\ Please make sure databases/sqlite3 is built\
			       with UNICODE61 option"; \
	exit 1; \
	fi; fi

.include <bsd.port.mk>