Date: Sat, 27 Oct 2018 02:27:20 +0000 (UTC) From: Ben Woods <woodsb02@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r483100 - in head/net: remmina remmina-plugin-nx Message-ID: <201810270227.w9R2RKoO061618@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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@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@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@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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201810270227.w9R2RKoO061618>