From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 8F3BB138206 for ; Tue, 2 Jan 2018 16:33:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7793AE0857; Tue, 2 Jan 2018 16:33:55 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4316AE0857 for ; Tue, 2 Jan 2018 16:33:55 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 576FD335C0E for ; Tue, 2 Jan 2018 16:33:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 73F4E12D for ; Tue, 2 Jan 2018 16:33:51 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1514910822.47d1bce7036ce6a1b2e6841706d21bb85a4cfc1f.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/virtualbox/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emulation/virtualbox/virtualbox-5.1.30.ebuild app-emulation/virtualbox/virtualbox-5.2.2.ebuild app-emulation/virtualbox/virtualbox-5.2.4.ebuild X-VCS-Directories: app-emulation/virtualbox/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 47d1bce7036ce6a1b2e6841706d21bb85a4cfc1f X-VCS-Branch: master Date: Tue, 2 Jan 2018 16:33:51 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 1d50df6f-74c1-4e61-9e66-fa974bb1abb1 X-Archives-Hash: 033e1e93a76725f72e948de0ec040271 commit: 47d1bce7036ce6a1b2e6841706d21bb85a4cfc1f Author: Lars Wendler gentoo org> AuthorDate: Tue Jan 2 16:20:01 2018 +0000 Commit: Lars Wendler gentoo org> CommitDate: Tue Jan 2 16:33:42 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47d1bce7 app-emulation/virtualbox: Only place VRDPAuth.so with USE="pam". Closes: https://bugs.gentoo.org/643120 Package-Manager: Portage-2.3.19, Repoman-2.3.6 app-emulation/virtualbox/virtualbox-5.1.30.ebuild | 8 +++++--- app-emulation/virtualbox/virtualbox-5.2.2.ebuild | 8 +++++--- app-emulation/virtualbox/virtualbox-5.2.4.ebuild | 8 +++++--- 3 files changed, 15 insertions(+), 9 deletions(-) diff --git a/app-emulation/virtualbox/virtualbox-5.1.30.ebuild b/app-emulation/virtualbox/virtualbox-5.1.30.ebuild index 9a20365745c..31a7801b26b 100644 --- a/app-emulation/virtualbox/virtualbox-5.1.30.ebuild +++ b/app-emulation/virtualbox/virtualbox-5.1.30.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -316,8 +316,10 @@ src_install() { done dosym ${vbox_inst_path}/VBoxTunctl /usr/bin/VBoxTunctl - # VRDPAuth only works with this (bug #351949) - dosym VBoxAuth.so ${vbox_inst_path}/VRDPAuth.so + if use pam ; then + # VRDPAuth only works with this (bug #351949) + dosym VBoxAuth.so ${vbox_inst_path}/VRDPAuth.so + fi # set an env-variable for 3rd party tools echo -n "VBOX_APP_HOME=${vbox_inst_path}" > "${T}/90virtualbox" diff --git a/app-emulation/virtualbox/virtualbox-5.2.2.ebuild b/app-emulation/virtualbox/virtualbox-5.2.2.ebuild index f6ef3647989..292349146a9 100644 --- a/app-emulation/virtualbox/virtualbox-5.2.2.ebuild +++ b/app-emulation/virtualbox/virtualbox-5.2.2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -316,8 +316,10 @@ src_install() { done dosym ${vbox_inst_path}/VBoxTunctl /usr/bin/VBoxTunctl - # VRDPAuth only works with this (bug #351949) - dosym VBoxAuth.so ${vbox_inst_path}/VRDPAuth.so + if use pam ; then + # VRDPAuth only works with this (bug #351949) + dosym VBoxAuth.so ${vbox_inst_path}/VRDPAuth.so + fi # set an env-variable for 3rd party tools echo -n "VBOX_APP_HOME=${vbox_inst_path}" > "${T}/90virtualbox" diff --git a/app-emulation/virtualbox/virtualbox-5.2.4.ebuild b/app-emulation/virtualbox/virtualbox-5.2.4.ebuild index f6ef3647989..292349146a9 100644 --- a/app-emulation/virtualbox/virtualbox-5.2.4.ebuild +++ b/app-emulation/virtualbox/virtualbox-5.2.4.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -316,8 +316,10 @@ src_install() { done dosym ${vbox_inst_path}/VBoxTunctl /usr/bin/VBoxTunctl - # VRDPAuth only works with this (bug #351949) - dosym VBoxAuth.so ${vbox_inst_path}/VRDPAuth.so + if use pam ; then + # VRDPAuth only works with this (bug #351949) + dosym VBoxAuth.so ${vbox_inst_path}/VRDPAuth.so + fi # set an env-variable for 3rd party tools echo -n "VBOX_APP_HOME=${vbox_inst_path}" > "${T}/90virtualbox"