From owner-svn-ports-all@freebsd.org Sat Oct 27 02:27:21 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 200A910D2E22; Sat, 27 Oct 2018 02:27:21 +0000 (UTC) (envelope-from woodsb02@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C7916770C1; Sat, 27 Oct 2018 02:27:20 +0000 (UTC) (envelope-from woodsb02@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A82FD1CDC; Sat, 27 Oct 2018 02:27:20 +0000 (UTC) (envelope-from woodsb02@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w9R2RKvf061620; Sat, 27 Oct 2018 02:27:20 GMT (envelope-from woodsb02@FreeBSD.org) Received: (from woodsb02@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w9R2RKoO061618; Sat, 27 Oct 2018 02:27:20 GMT (envelope-from woodsb02@FreeBSD.org) Message-Id: <201810270227.w9R2RKoO061618@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: woodsb02 set sender to woodsb02@FreeBSD.org using -f From: Ben Woods Date: Sat, 27 Oct 2018 02:27:20 +0000 (UTC) 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 X-SVN-Group: ports-head X-SVN-Commit-Author: woodsb02 X-SVN-Commit-Paths: in head/net: remmina remmina-plugin-nx X-SVN-Commit-Revision: 483100 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 27 Oct 2018 02:27:21 -0000 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 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 # $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