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 A776B138335 for ; Wed, 24 Apr 2019 20:15:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 82D9FE0963; Wed, 24 Apr 2019 20:15:14 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 694FDE0963 for ; Wed, 24 Apr 2019 20:15:14 +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 AB3953423FB for ; Wed, 24 Apr 2019 20:15:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8FCAB567 for ; Wed, 24 Apr 2019 20:15:10 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1556136878.31c29f64f190b810e41ebc23bc3736a2b70c591a.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: gnome-extra/polkit-gnome/ X-VCS-Repository: repo/gentoo X-VCS-Files: gnome-extra/polkit-gnome/polkit-gnome-0.105-r2.ebuild X-VCS-Directories: gnome-extra/polkit-gnome/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 31c29f64f190b810e41ebc23bc3736a2b70c591a X-VCS-Branch: master Date: Wed, 24 Apr 2019 20:15:10 +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: 03f0edf7-796e-43a3-b7c5-2149a892d4e9 X-Archives-Hash: 3416eaaa9e423678c282da9b8de15321 commit: 31c29f64f190b810e41ebc23bc3736a2b70c591a Author: Matija Skala gmx com> AuthorDate: Sun Jan 6 12:07:18 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed Apr 24 20:14:38 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31c29f64 gnome-extra/polkit-gnome: port to EAPI 7 Signed-off-by: Matija Skala gmx.com> Closes: https://github.com/gentoo/gentoo/pull/10753 Signed-off-by: Andreas Sturmlechner gentoo.org> .../polkit-gnome/polkit-gnome-0.105-r2.ebuild | 44 ++++++++++++++++++++++ 1 file changed, 44 insertions(+) diff --git a/gnome-extra/polkit-gnome/polkit-gnome-0.105-r2.ebuild b/gnome-extra/polkit-gnome/polkit-gnome-0.105-r2.ebuild new file mode 100644 index 00000000000..b271426d6e2 --- /dev/null +++ b/gnome-extra/polkit-gnome/polkit-gnome-0.105-r2.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit gnome.org + +DESCRIPTION="A dbus session bus service that is used to bring up authentication dialogs" +HOMEPAGE="https://www.freedesktop.org/wiki/Software/polkit" + +LICENSE="LGPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd" +IUSE="" + +DEPEND=">=dev-libs/glib-2.30 + >=sys-auth/polkit-0.102 + x11-libs/gtk+:3" +RDEPEND="${DEPEND} + !lxde-base/lxpolkit" +BDEPEND="dev-util/intltool + virtual/pkgconfig + sys-devel/gettext" + +DOCS=( AUTHORS HACKING NEWS README TODO ) + +src_install() { + default + + cat <<-EOF > "${T}"/polkit-gnome-authentication-agent-1.desktop + [Desktop Entry] + Name=PolicyKit Authentication Agent + Comment=PolicyKit Authentication Agent + Exec=/usr/libexec/polkit-gnome-authentication-agent-1 + Terminal=false + Type=Application + Categories= + NoDisplay=true + NotShowIn=MATE;KDE; + AutostartCondition=GNOME3 if-session gnome-fallback + EOF + + insinto /etc/xdg/autostart + doins "${T}"/polkit-gnome-authentication-agent-1.desktop +}