summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuli Suominen <ssuominen@gentoo.org>2014-02-28 14:14:24 +0000
committerSamuli Suominen <ssuominen@gentoo.org>2014-02-28 14:14:24 +0000
commita8752d7029f829db178f1d37996b744bcc625566 (patch)
tree7f58b804520cdb381a4bf920da20ffe3eba33cb8 /gnome-extra/polkit-gnome
parentAdded Shapely package (diff)
downloadgentoo-2-a8752d7029f829db178f1d37996b744bcc625566.tar.gz
gentoo-2-a8752d7029f829db178f1d37996b744bcc625566.tar.bz2
gentoo-2-a8752d7029f829db178f1d37996b744bcc625566.zip
Insert MATE to NotShowIn= in the xdg autostart .desktop file since they have their own mate-polkit with a pkg-config file, library and headers -- and a .desktop file with OnlyShowIn= set to MATE
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)
Diffstat (limited to 'gnome-extra/polkit-gnome')
-rw-r--r--gnome-extra/polkit-gnome/ChangeLog13
-rw-r--r--gnome-extra/polkit-gnome/polkit-gnome-0.105-r1.ebuild45
2 files changed, 55 insertions, 3 deletions
diff --git a/gnome-extra/polkit-gnome/ChangeLog b/gnome-extra/polkit-gnome/ChangeLog
index 731a1053bf64..b13651feb63c 100644
--- a/gnome-extra/polkit-gnome/ChangeLog
+++ b/gnome-extra/polkit-gnome/ChangeLog
@@ -1,6 +1,14 @@
# ChangeLog for gnome-extra/polkit-gnome
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/gnome-extra/polkit-gnome/ChangeLog,v 1.58 2012/05/05 06:25:18 jdhore Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/gnome-extra/polkit-gnome/ChangeLog,v 1.59 2014/02/28 14:14:24 ssuominen Exp $
+
+*polkit-gnome-0.105-r1 (28 Feb 2014)
+
+ 28 Feb 2014; Samuli Suominen <ssuominen@gentoo.org>
+ +polkit-gnome-0.105-r1.ebuild:
+ Insert MATE to NotShowIn= in the xdg autostart .desktop file since they have
+ their own mate-polkit with a pkg-config file, library and headers -- and a
+ .desktop file with OnlyShowIn= set to MATE
05 May 2012; Jeff Horelick <jdhore@gentoo.org> polkit-gnome-0.102.ebuild,
polkit-gnome-0.105.ebuild:
@@ -246,4 +254,3 @@
29 Oct 2009; Gilles Dartiguelongue <eva@gentoo.org>
+polkit-gnome-0.94.ebuild, +metadata.xml:
Initial ebuild for GNOME 2.28.
-
diff --git a/gnome-extra/polkit-gnome/polkit-gnome-0.105-r1.ebuild b/gnome-extra/polkit-gnome/polkit-gnome-0.105-r1.ebuild
new file mode 100644
index 000000000000..40a0c4f84f4f
--- /dev/null
+++ b/gnome-extra/polkit-gnome/polkit-gnome-0.105-r1.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/gnome-extra/polkit-gnome/polkit-gnome-0.105-r1.ebuild,v 1.1 2014/02/28 14:14:24 ssuominen Exp $
+
+EAPI=4
+inherit gnome.org
+
+DESCRIPTION="A dbus session bus service that is used to bring up authentication dialogs"
+HOMEPAGE="http://www.freedesktop.org/wiki/Software/PolicyKit"
+
+LICENSE="LGPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
+IUSE=""
+
+RDEPEND=">=dev-libs/glib-2.30
+ >=sys-auth/polkit-0.102
+ x11-libs/gtk+:3
+ !lxde-base/lxpolkit"
+DEPEND="${RDEPEND}
+ 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
+}