diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2014-02-28 14:15:50 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2014-02-28 14:15:50 +0000 |
commit | 17b91c2fa40a0021064fc0c14a46b340785426f7 (patch) | |
tree | 82d72d68ed3b69ffa5633206cbd2729b578400b5 /lxde-base | |
parent | Insert MATE to NotShowIn= in the xdg autostart .desktop file since they have ... (diff) | |
download | gentoo-2-17b91c2fa40a0021064fc0c14a46b340785426f7.tar.gz gentoo-2-17b91c2fa40a0021064fc0c14a46b340785426f7.tar.bz2 gentoo-2-17b91c2fa40a0021064fc0c14a46b340785426f7.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 'lxde-base')
-rw-r--r-- | lxde-base/lxpolkit/ChangeLog | 12 | ||||
-rw-r--r-- | lxde-base/lxpolkit/lxpolkit-0.1.0-r2.ebuild | 30 |
2 files changed, 39 insertions, 3 deletions
diff --git a/lxde-base/lxpolkit/ChangeLog b/lxde-base/lxpolkit/ChangeLog index 6284f7b2a451..18dee0fb408e 100644 --- a/lxde-base/lxpolkit/ChangeLog +++ b/lxde-base/lxpolkit/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for lxde-base/lxpolkit -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/lxde-base/lxpolkit/ChangeLog,v 1.17 2012/05/04 05:50:41 jdhore Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/lxde-base/lxpolkit/ChangeLog,v 1.18 2014/02/28 14:15:50 ssuominen Exp $ + +*lxpolkit-0.1.0-r2 (28 Feb 2014) + + 28 Feb 2014; Samuli Suominen <ssuominen@gentoo.org> +lxpolkit-0.1.0-r2.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 04 May 2012; Jeff Horelick <jdhore@gentoo.org> lxpolkit-0.1.0-r1.ebuild: dev-util/pkgconfig -> virtual/pkgconfig @@ -66,4 +73,3 @@ 25 Dec 2010; Samuli Suominen <ssuominen@gentoo.org> +lxpolkit-0_p20101225.ebuild: Initial commit. - diff --git a/lxde-base/lxpolkit/lxpolkit-0.1.0-r2.ebuild b/lxde-base/lxpolkit/lxpolkit-0.1.0-r2.ebuild new file mode 100644 index 000000000000..db5d6c84b909 --- /dev/null +++ b/lxde-base/lxpolkit/lxpolkit-0.1.0-r2.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/lxde-base/lxpolkit/lxpolkit-0.1.0-r2.ebuild,v 1.1 2014/02/28 14:15:50 ssuominen Exp $ + +EAPI=5 + +DESCRIPTION="A simple PolicyKit authentication agent" +HOMEPAGE="http://lxde.git.sourceforge.net/git/gitweb.cgi?p=lxde/lxpolkit;a=summary http://blog.lxde.org/?p=674" +SRC_URI="mirror://sourceforge/project/lxde/LXPolkit/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=">=sys-auth/polkit-0.102 + x11-libs/gtk+:3 + !gnome-extra/polkit-gnome" +DEPEND="${RDEPEND} + >=dev-util/intltool-0.40.0 + sys-devel/gettext + virtual/pkgconfig" + +src_prepare() { + local f=data/lxpolkit.desktop.in.in + sed -i -e '/^NotShowIn/s:=.*:=MATE;KDE;:' ${f} || die + echo 'AutostartCondition=GNOME3 if-session gnome-fallback' >> ${f} +} + +src_configure() { econf --enable-gtk3; } |