d5852a2dec
The CMake option was incorrectly applied in the previous commit PR: 267739 Reported by: Ivan Rozhuk <rozhuk dot im at gmail dot com>
83 lines
2.7 KiB
Makefile
83 lines
2.7 KiB
Makefile
PORTNAME= dino
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 0.3.1
|
|
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 CANBERRA
|
|
OPTIONS_DEFAULT= OMEMO UPLOAD GNUPG ICE RTP CANBERRA
|
|
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
|
|
|
|
CANBERRA_DESC= Notifications sounds support
|
|
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_CMAKE_ON= -DSOUP_VERSION:INT=2
|
|
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
|
|
CANBERRA_VARS= ENABLED_PLUGINS+=notification-sound
|
|
CANBERRA_VARS_OFF= DISABLED_PLUGINS+=notification-sound
|
|
CANBERRA_LIB_DEPENDS= libcanberra.so:audio/libcanberra
|
|
|
|
CMAKE_ARGS+= -DENABLED_PLUGINS="${ENABLED_PLUGINS:S/ /;/gW}"
|
|
CMAKE_ARGS+= -DDISABLED_PLUGINS="${DISABLED_PLUGINS:S/ /;/gW}"
|
|
|
|
pre-configure:
|
|
@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>
|