Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 25 Oct 2019 21:12:22 +0000 (UTC)
From:      Adriaan de Groot <adridg@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r515664 - head/net-im/nheko
Message-ID:  <201910252112.x9PLCMaq033472@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: adridg
Date: Fri Oct 25 21:12:21 2019
New Revision: 515664
URL: https://svnweb.freebsd.org/changeset/ports/515664

Log:
  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.

Modified:
  head/net-im/nheko/Makefile

Modified: head/net-im/nheko/Makefile
==============================================================================
--- head/net-im/nheko/Makefile	Fri Oct 25 20:41:15 2019	(r515663)
+++ head/net-im/nheko/Makefile	Fri Oct 25 21:12:21 2019	(r515664)
@@ -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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201910252112.x9PLCMaq033472>