From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1116929-garchives=archives.gentoo.org@lists.gentoo.org> 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 5910D138335 for <garchives@archives.gentoo.org>; Tue, 15 Oct 2019 16:33:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 493DDE0871; Tue, 15 Oct 2019 16:33:58 +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 2ED5BE0867 for <gentoo-commits@lists.gentoo.org>; Tue, 15 Oct 2019 16:33:58 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 05B6C34BE40 for <gentoo-commits@lists.gentoo.org>; Tue, 15 Oct 2019 16:33:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9337E83F for <gentoo-commits@lists.gentoo.org>; Tue, 15 Oct 2019 16:33:54 +0000 (UTC) From: "Matthias Maier" <tamiko@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matthias Maier" <tamiko@gentoo.org> Message-ID: <1571157187.0bb32c6f2dd9b6faf2b596b77f9fb3402ce95291.tamiko@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/spice-vdagent/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emulation/spice-vdagent/spice-vdagent-0.19.0-r1.ebuild app-emulation/spice-vdagent/spice-vdagent-0.19.0.ebuild X-VCS-Directories: app-emulation/spice-vdagent/ X-VCS-Committer: tamiko X-VCS-Committer-Name: Matthias Maier X-VCS-Revision: 0bb32c6f2dd9b6faf2b596b77f9fb3402ce95291 X-VCS-Branch: master Date: Tue, 15 Oct 2019 16:33:54 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: b00d425e-5074-481e-a3a2-ef02bf5ab314 X-Archives-Hash: 63c52e6f822897a5e9d1c21599a97d8f commit: 0bb32c6f2dd9b6faf2b596b77f9fb3402ce95291 Author: Matthias Maier <tamiko <AT> gentoo <DOT> org> AuthorDate: Tue Oct 15 16:20:02 2019 +0000 Commit: Matthias Maier <tamiko <AT> gentoo <DOT> org> CommitDate: Tue Oct 15 16:33:07 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0bb32c6f app-emulation/spice-vdagent: fix automagic dependency Closes: https://bugs.gentoo.org/691028 Package-Manager: Portage-2.3.76, Repoman-2.3.17 Signed-off-by: Matthias Maier <tamiko <AT> gentoo.org> .../{spice-vdagent-0.19.0.ebuild => spice-vdagent-0.19.0-r1.ebuild} | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app-emulation/spice-vdagent/spice-vdagent-0.19.0.ebuild b/app-emulation/spice-vdagent/spice-vdagent-0.19.0-r1.ebuild similarity index 94% rename from app-emulation/spice-vdagent/spice-vdagent-0.19.0.ebuild rename to app-emulation/spice-vdagent/spice-vdagent-0.19.0-r1.ebuild index 3948123638e..de4e147bf83 100644 --- a/app-emulation/spice-vdagent/spice-vdagent-0.19.0.ebuild +++ b/app-emulation/spice-vdagent/spice-vdagent-0.19.0-r1.ebuild @@ -15,7 +15,7 @@ SRC_URI="https://www.spice-space.org/download/releases/${MY_P}.tar.bz2" LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="consolekit selinux systemd" +IUSE="consolekit gtk selinux systemd" S="${WORKDIR}/${MY_P}" CDEPEND=" @@ -28,6 +28,7 @@ CDEPEND=" x11-libs/libX11 x11-libs/libXinerama consolekit? ( sys-auth/consolekit sys-apps/dbus ) + gtk? ( x11-libs/gtk+:3 ) systemd? ( sys-apps/systemd )" DEPEND="${CDEPEND} virtual/pkgconfig" @@ -56,6 +57,7 @@ src_configure() { econf \ --with-init-script=systemd \ --localstatedir="${EPREFIX}"/var \ + $(use_with gtk) \ "${opt[@]}" }