Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in gnome-extra/polkit-gnome: polkit-gnome-0.105-r1.ebuild ChangeLog
Date: Fri, 28 Feb 2014 14:14:28
Message-Id: 20140228141424.65EB52004C@flycatcher.gentoo.org
1 ssuominen 14/02/28 14:14:24
2
3 Modified: ChangeLog
4 Added: polkit-gnome-0.105-r1.ebuild
5 Log:
6 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
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)
9
10 Revision Changes Path
11 1.59 gnome-extra/polkit-gnome/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/polkit-gnome/ChangeLog?rev=1.59&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/polkit-gnome/ChangeLog?rev=1.59&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/polkit-gnome/ChangeLog?r1=1.58&r2=1.59
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/gnome-extra/polkit-gnome/ChangeLog,v
20 retrieving revision 1.58
21 retrieving revision 1.59
22 diff -u -r1.58 -r1.59
23 --- ChangeLog 5 May 2012 06:25:18 -0000 1.58
24 +++ ChangeLog 28 Feb 2014 14:14:24 -0000 1.59
25 @@ -1,6 +1,14 @@
26 # ChangeLog for gnome-extra/polkit-gnome
27 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/polkit-gnome/ChangeLog,v 1.58 2012/05/05 06:25:18 jdhore Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/polkit-gnome/ChangeLog,v 1.59 2014/02/28 14:14:24 ssuominen Exp $
31 +
32 +*polkit-gnome-0.105-r1 (28 Feb 2014)
33 +
34 + 28 Feb 2014; Samuli Suominen <ssuominen@g.o>
35 + +polkit-gnome-0.105-r1.ebuild:
36 + Insert MATE to NotShowIn= in the xdg autostart .desktop file since they have
37 + their own mate-polkit with a pkg-config file, library and headers -- and a
38 + .desktop file with OnlyShowIn= set to MATE
39
40 05 May 2012; Jeff Horelick <jdhore@g.o> polkit-gnome-0.102.ebuild,
41 polkit-gnome-0.105.ebuild:
42 @@ -246,4 +254,3 @@
43 29 Oct 2009; Gilles Dartiguelongue <eva@g.o>
44 +polkit-gnome-0.94.ebuild, +metadata.xml:
45 Initial ebuild for GNOME 2.28.
46 -
47
48
49
50 1.1 gnome-extra/polkit-gnome/polkit-gnome-0.105-r1.ebuild
51
52 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/polkit-gnome/polkit-gnome-0.105-r1.ebuild?rev=1.1&view=markup
53 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/polkit-gnome/polkit-gnome-0.105-r1.ebuild?rev=1.1&content-type=text/plain
54
55 Index: polkit-gnome-0.105-r1.ebuild
56 ===================================================================
57 # Copyright 1999-2014 Gentoo Foundation
58 # Distributed under the terms of the GNU General Public License v2
59 # $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 $
60
61 EAPI=4
62 inherit gnome.org
63
64 DESCRIPTION="A dbus session bus service that is used to bring up authentication dialogs"
65 HOMEPAGE="http://www.freedesktop.org/wiki/Software/PolicyKit"
66
67 LICENSE="LGPL-2"
68 SLOT="0"
69 KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
70 IUSE=""
71
72 RDEPEND=">=dev-libs/glib-2.30
73 >=sys-auth/polkit-0.102
74 x11-libs/gtk+:3
75 !lxde-base/lxpolkit"
76 DEPEND="${RDEPEND}
77 dev-util/intltool
78 virtual/pkgconfig
79 sys-devel/gettext"
80
81 DOCS=( AUTHORS HACKING NEWS README TODO )
82
83 src_install() {
84 default
85
86 cat <<-EOF > "${T}"/polkit-gnome-authentication-agent-1.desktop
87 [Desktop Entry]
88 Name=PolicyKit Authentication Agent
89 Comment=PolicyKit Authentication Agent
90 Exec=/usr/libexec/polkit-gnome-authentication-agent-1
91 Terminal=false
92 Type=Application
93 Categories=
94 NoDisplay=true
95 NotShowIn=MATE;KDE;
96 AutostartCondition=GNOME3 if-session gnome-fallback
97 EOF
98
99 insinto /etc/xdg/autostart
100 doins "${T}"/polkit-gnome-authentication-agent-1.desktop
101 }