diff options
author | adridg <adridg@FreeBSD.org> | 2019-10-26 05:12:21 +0800 |
---|---|---|
committer | adridg <adridg@FreeBSD.org> | 2019-10-26 05:12:21 +0800 |
commit | 2353926177feb060114a03f9baf482ea7f7b02f3 (patch) | |
tree | 59ae336415a06048e3972cc915a03ef2bb04bb99 /net-im | |
parent | 41cc5b518e27b55aa1ff1d52d87cb378f3f5a3db (diff) | |
download | freebsd-ports-gnome-2353926177feb060114a03f9baf482ea7f7b02f3.tar.gz freebsd-ports-gnome-2353926177feb060114a03f9baf482ea7f7b02f3.tar.zst freebsd-ports-gnome-2353926177feb060114a03f9baf482ea7f7b02f3.zip |
Fix dependencies of net-im/nheko
- because mtxclient was listed as a build dependency only (I thought nheko
would pick up the .a and statically link it), it would be installed
with nheko, but marked "automatic" and unused.
- "pkg autoremove" would remove mtxclient, and then nheko wouldn't start
because the mtxclient .so was missing.
Make mtxclient a library dependency instead.
Diffstat (limited to 'net-im')
-rw-r--r-- | net-im/nheko/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net-im/nheko/Makefile b/net-im/nheko/Makefile index f02d71058fe7..364b5746d229 100644 --- a/net-im/nheko/Makefile +++ b/net-im/nheko/Makefile @@ -3,7 +3,7 @@ PORTNAME= nheko DISTVERSIONPREFIX=v DISTVERSION= 0.6.4 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= net-im MAINTAINER= adridg@FreeBSD.org @@ -12,10 +12,10 @@ COMMENT= Matrix IM client based on Qt technologies LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/COPYING -BUILD_DEPENDS= mtxclient>=0.2.1:net-im/mtxclient \ - nlohmann-json>=3:devel/nlohmann-json \ +BUILD_DEPENDS= nlohmann-json>=3:devel/nlohmann-json \ spdlog>=1.3:devel/spdlog LIB_DEPENDS= liblmdb.so:databases/lmdb \ + libmatrix_client.so:net-im/mtxclient \ libsodium.so:security/libsodium \ libolm.so:security/olm \ libcmark.so:textproc/cmark |