mirror of
https://git.freebsd.org/ports.git
synced 2025-06-02 19:36:28 -04:00
Also update dependency library net-im/mtxclient, of which nheko is the only consumer. Release notes at https://nheko.im/nheko-reborn/nheko/-/tags/v0.12.0 Which is a long list. Major build change is using Qt6.
54 lines
1.6 KiB
Makefile
54 lines
1.6 KiB
Makefile
PORTNAME= nheko
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 0.12.0
|
|
CATEGORIES= net-im
|
|
|
|
MAINTAINER= adridg@FreeBSD.org
|
|
COMMENT= Matrix IM client based on Qt technologies
|
|
WWW= https://nheko.im/nheko-reborn/nheko/
|
|
|
|
LICENSE= GPLv3
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
BUILD_DEPENDS= nlohmann-json>=3:devel/nlohmann-json \
|
|
asciidoc>=10:textproc/asciidoc
|
|
# All those boost-libs are pulled in through mtxclient, which
|
|
# links to them but stage-qa still complains.
|
|
LIB_DEPENDS= \
|
|
libcmark.so:textproc/cmark \
|
|
libcoeurl.so:ftp/coeurl \
|
|
libkdsingleapplication-qt6.so:devel/kdsingleapplication \
|
|
libfmt.so:devel/libfmt \
|
|
libspdlog.so:devel/spdlog \
|
|
liblmdb.so:databases/lmdb \
|
|
libmatrix_client.so:net-im/mtxclient \
|
|
libolm.so:security/olm \
|
|
libqt6keychain.so:security/qtkeychain@qt6
|
|
|
|
USES= cmake compiler:c++20-lang desktop-file-utils \
|
|
localbase:ldflags pkgconfig qt:6 ssl tar:xz
|
|
USE_QT= base declarative multimedia \
|
|
svg \
|
|
tools:build translations:build
|
|
|
|
OPTIONS_DEFINE= VOIP
|
|
OPTIONS_DEFAULT=
|
|
|
|
VOIP_DESC= Enable VOIP calls (experimental)
|
|
VOIP_CMAKE_BOOL= VOIP
|
|
VOIP_USES= gstreamer gettext-runtime xorg gnome
|
|
VOIP_USE= gstreamer=bad,dtls,srtp,webrtc xorg=xcb gnome=glib20
|
|
VOIP_LIB_DEPENDS= libnice.so:net-im/libnice
|
|
|
|
# There is one external dependency: lmdb++
|
|
# - lmdb++ is a single header file, it just needs to be included
|
|
CMAKE_ARGS= -DLMDBXX_INCLUDE_DIR=${WRKSRC}/deps/lmdb \
|
|
-DCMAKE_INSTALL_MANDIR=share/man
|
|
CFLAGS+= -DSPDLOG_FMT_EXTERNAL=1
|
|
LDFLAGS+= -L${LOCALBASE}/lib -lfmt
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= Nheko-Reborn
|
|
GH_TUPLE= hoytech:lmdbxx:029fb681213af3020f5e3a86045445552bd024c5:lmdb/deps/lmdb
|
|
|
|
.include <bsd.port.mk>
|