Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 16 Apr 2019 07:25:48 +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: r499079 - head/net-im/nheko
Message-ID:  <201904160725.x3G7Pmso013940@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: adridg
Date: Tue Apr 16 07:25:48 2019
New Revision: 499079
URL: https://svnweb.freebsd.org/changeset/ports/499079

Log:
  Fix up net-im/nheko depends.
  
   - While it looked like everything was being static-linked, so that
     cmark, libsodium and olm could be build-dep, they're linked in.
     Then "pkg install" pulls them in, but "pkg autoremove" gets
     rid of them again, leading to an unusable nheko. Fix the deps.

Modified:
  head/net-im/nheko/Makefile

Modified: head/net-im/nheko/Makefile
==============================================================================
--- head/net-im/nheko/Makefile	Tue Apr 16 07:09:19 2019	(r499078)
+++ head/net-im/nheko/Makefile	Tue Apr 16 07:25:48 2019	(r499079)
@@ -3,6 +3,7 @@
 PORTNAME=	nheko
 DISTVERSIONPREFIX=v
 DISTVERSION=	0.6.3
+PORTREVISION=	1
 CATEGORIES=	net-im
 
 MAINTAINER=	adridg@FreeBSD.org
@@ -11,11 +12,13 @@ COMMENT=	Matrix IM client based on Qt technologies
 LICENSE=	GPLv3
 LICENSE_FILES=	${WRKSRC}/COPYING
 
-BUILD_DEPENDS=	cmark:textproc/cmark \
-		mtxclient>=0.2:net-im/mtxclient \
+BUILD_DEPENDS=	mtxclient>=0.2:net-im/mtxclient \
 		nlohmann-json>=3:devel/nlohmann-json \
 		spdlog>=1.3:devel/spdlog
-LIB_DEPENDS=	liblmdb.so:databases/lmdb
+LIB_DEPENDS=	liblmdb.so:databases/lmdb \
+		libsodium.so:security/libsodium \
+		libolm.so:security/olm \
+		libcmark.so:textproc/cmark
 
 USES=		cmake compiler:c++17-lang pkgconfig \
 		localbase:ldflags qt:5 tar:xz



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