svn commit: r483100 - in head/net: remmina remmina-plugin-nx

Ben Woods woodsb02 at FreeBSD.org
Sat Oct 27 02:27:21 UTC 2018


Author: woodsb02
Date: Sat Oct 27 02:27:20 2018
New Revision: 483100
URL: https://svnweb.freebsd.org/changeset/ports/483100

Log:
  net/remmina: Fix build with security/libssh 0.8 branch
  
  libssh 0.8.x no longer installs libssh_threads.so [1], [2], [3].
  The upstream remmina code has been updated to accomodate this [4].
  Therefore the remmina port Makefiles simply need to be updated to depend
  on libssh.so instead of libssh_threads.so.
  
   [1] https://git.libssh.org/projects/libssh.git/commit/?id=83b43443e51b5db06184750fb874e1e8d7ece95a
   [2] https://git.libssh.org/projects/libssh.git/commit/?id=8425dce7b27d9e6868735b7ca6dc4e50094af9fa
   [3] https://git.libssh.org/projects/libssh.git/commit/?id=d0f3cdfa10436d2108e0b75aad53ce976db3e546
   [4] https://github.com/FreeRDP/Remmina/commit/8d654eca784d5e1b2c6e853b7beb7ad3d8322290#diff-b467acb9761e344e80ab07b9e7325b66
  
  PR:		232376
  Reported by:	Graham Perrin <grahamperrin at gmail.com>

Modified:
  head/net/remmina-plugin-nx/Makefile
  head/net/remmina/Makefile

Modified: head/net/remmina-plugin-nx/Makefile
==============================================================================
--- head/net/remmina-plugin-nx/Makefile	Sat Oct 27 02:25:01 2018	(r483099)
+++ head/net/remmina-plugin-nx/Makefile	Sat Oct 27 02:27:20 2018	(r483100)
@@ -1,6 +1,7 @@
 # Created by: Koichiro IWAO <meta+ports at vmeta.jp>
 # $FreeBSD$
 
+PORTREVISION=	1
 PKGNAMESUFFIX=	-nx
 
 COMMENT=	Remmina plugin for NX
@@ -10,6 +11,6 @@ USE_XORG+=	x11 xkbfile
 
 MASTERDIR=	${.CURDIR}/../remmina-plugins
 
-LIB_DEPENDS+=	libssh_threads.so:security/libssh
+LIB_DEPENDS+=	libssh.so:security/libssh
 
 .include "${MASTERDIR}/Makefile"

Modified: head/net/remmina/Makefile
==============================================================================
--- head/net/remmina/Makefile	Sat Oct 27 02:25:01 2018	(r483099)
+++ head/net/remmina/Makefile	Sat Oct 27 02:27:20 2018	(r483100)
@@ -3,6 +3,7 @@
 
 PORTNAME=	remmina
 DISTVERSION=	1.2.31.4
+PORTREVISION=	1
 CATEGORIES=	net gnome
 
 MAINTAINER=	woodsb02 at FreeBSD.org
@@ -45,7 +46,7 @@ GCRYPT_CMAKE_BOOL=	WITH_GCRYPT
 
 NLS_CMAKE_BOOL=		WITH_TRANSLATIONS
 
-SSH_LIB_DEPENDS=	libssh_threads.so:security/libssh
+SSH_LIB_DEPENDS=	libssh.so:security/libssh
 SSH_LDFLAGS=		-fstack-protector
 SSH_CMAKE_BOOL=		WITH_LIBSSH
 


More information about the svn-ports-all mailing list