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 D13AA1382C5 for ; Tue, 12 Jan 2021 18:33:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D8502E0AC4; Tue, 12 Jan 2021 18:33:41 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 C52B6E0AC4 for ; Tue, 12 Jan 2021 18:33:41 +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 CB319340C3F for ; Tue, 12 Jan 2021 18:33:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6681846B for ; Tue, 12 Jan 2021 18:33:39 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1610476415.31d842f837309420465aacfe18a69333b8d835d5.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: xfce-base/xfce4-session/ X-VCS-Repository: repo/gentoo X-VCS-Files: xfce-base/xfce4-session/xfce4-session-4.16.0.ebuild X-VCS-Directories: xfce-base/xfce4-session/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 31d842f837309420465aacfe18a69333b8d835d5 X-VCS-Branch: master Date: Tue, 12 Jan 2021 18:33:39 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 180e0669-1e16-4886-afa5-8d09a848e3ff X-Archives-Hash: 4e4ff29a3f48fbecca6cb6a8fb6592a6 commit: 31d842f837309420465aacfe18a69333b8d835d5 Author: David Michael gmail com> AuthorDate: Fri Jan 8 00:14:01 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Jan 12 18:33:35 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31d842f8 xfce-base/xfce4-session: specify the runtime iceauth path This value is just used for substitution (i.e. it is not executed), so it can be moved from DEPEND to RDEPEND. The configure script would fail trying to find it in BROOT while DEPEND installed it in SYSROOT. Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: David Michael gmail.com> Signed-off-by: Michał Górny gentoo.org> xfce-base/xfce4-session/xfce4-session-4.16.0.ebuild | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/xfce-base/xfce4-session/xfce4-session-4.16.0.ebuild b/xfce-base/xfce4-session/xfce4-session-4.16.0.ebuild index 8d006dbb328..d0e08959ff1 100644 --- a/xfce-base/xfce4-session/xfce4-session-4.16.0.ebuild +++ b/xfce-base/xfce4-session/xfce4-session-4.16.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -14,8 +14,7 @@ SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux" IUSE="nls policykit +xscreensaver" -DEPEND="x11-apps/iceauth - >=dev-libs/glib-2.50 +DEPEND=">=dev-libs/glib-2.50 >=x11-libs/gtk+-3.22:3 x11-libs/libSM x11-libs/libwnck:3 @@ -25,6 +24,7 @@ DEPEND="x11-apps/iceauth >=xfce-base/xfconf-4.12:= policykit? ( >=sys-auth/polkit-0.102 )" RDEPEND="${DEPEND} + x11-apps/iceauth x11-apps/xrdb nls? ( x11-misc/xdg-user-dirs ) xscreensaver? ( || ( @@ -50,6 +50,7 @@ src_configure() { local myconf=( $(use_enable policykit polkit) --with-xsession-prefix="${EPREFIX}"/usr + ICEAUTH="${EPREFIX}"/usr/bin/iceauth ) econf "${myconf[@]}"