diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2010-08-11 06:24:01 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2010-08-11 06:24:01 +0000 |
commit | fe0aa7610f9a1587a9d5c35169b9df997fbc95b5 (patch) | |
tree | aa716af60cac073a556456989dc4a6c5a2848e77 /gnome-extra | |
parent | Add back soname/install_name conditional patching for Darwin (diff) | |
download | gentoo-2-fe0aa7610f9a1587a9d5c35169b9df997fbc95b5.tar.gz gentoo-2-fe0aa7610f9a1587a9d5c35169b9df997fbc95b5.tar.bz2 gentoo-2-fe0aa7610f9a1587a9d5c35169b9df997fbc95b5.zip |
Replace OnlyShowIn=GNOME; with NotShowIn=KDE; because polkit-gnome is useful also for LXDE, XFCE, and others.
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'gnome-extra')
-rw-r--r-- | gnome-extra/polkit-gnome/ChangeLog | 9 | ||||
-rw-r--r-- | gnome-extra/polkit-gnome/polkit-gnome-0.96-r1.ebuild | 58 |
2 files changed, 66 insertions, 1 deletions
diff --git a/gnome-extra/polkit-gnome/ChangeLog b/gnome-extra/polkit-gnome/ChangeLog index 8f6a367a5bc0..c51148c41b8d 100644 --- a/gnome-extra/polkit-gnome/ChangeLog +++ b/gnome-extra/polkit-gnome/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for gnome-extra/polkit-gnome # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/polkit-gnome/ChangeLog,v 1.12 2010/07/20 16:46:40 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/polkit-gnome/ChangeLog,v 1.13 2010/08/11 06:24:01 ssuominen Exp $ + +*polkit-gnome-0.96-r1 (11 Aug 2010) + + 11 Aug 2010; Samuli Suominen <ssuominen@gentoo.org> + +polkit-gnome-0.96-r1.ebuild: + Replace OnlyShowIn=GNOME; with NotShowIn=KDE; because polkit-gnome is + useful also for LXDE, XFCE, and others. 20 Jul 2010; Jeroen Roovers <jer@gentoo.org> polkit-gnome-0.95.ebuild, polkit-gnome-0.96.ebuild: diff --git a/gnome-extra/polkit-gnome/polkit-gnome-0.96-r1.ebuild b/gnome-extra/polkit-gnome/polkit-gnome-0.96-r1.ebuild new file mode 100644 index 000000000000..7552c7da69b5 --- /dev/null +++ b/gnome-extra/polkit-gnome/polkit-gnome-0.96-r1.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2010 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.96-r1.ebuild,v 1.1 2010/08/11 06:24:01 ssuominen Exp $ + +EAPI="2" + +inherit autotools eutils gnome2 + +DESCRIPTION="PolicyKit policies and configurations for the GNOME desktop" +HOMEPAGE="http://hal.freedesktop.org/docs/PolicyKit" +SRC_URI="http://hal.freedesktop.org/releases/${P}.tar.bz2" + +LICENSE="LGPL-2 GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" +IUSE="doc examples" #introspection + +RDEPEND=">=x11-libs/gtk+-2.17.1 + >=gnome-base/gconf-2.8 + >=dev-libs/dbus-glib-0.71 + >=sys-auth/polkit-0.95" + # Not ready for tree + #introspection? ( >=dev-libs/gobject-introspection-0.6.2 ) +DEPEND="${RDEPEND} + sys-devel/gettext + >=dev-util/pkgconfig-0.19 + >=dev-util/intltool-0.35.0 + >=app-text/scrollkeeper-0.3.14 + gnome-base/gnome-common + dev-util/gtk-doc-am + doc? ( >=dev-util/gtk-doc-1.3 )" + +DOCS="AUTHORS HACKING NEWS TODO" + +pkg_setup() { + G2CONF="${G2CONF} + --disable-introspection + $(use_enable examples)" + #$(use_enable introspection)" +} + +src_prepare() { + # polkit-gnome is useful also for LXDE, XFCE, and others + sed -i \ + -e 's:OnlyShowIn=GNOME:NotShowIn=KDE:' \ + src/polkit-gnome-authentication-agent-1.desktop.in.in || die + + # Fix make check, bug 298345 + epatch "${FILESDIR}/${PN}-0.95-fix-make-check.patch" + + if use doc; then + # Fix parallel build failure, bug 293247 + epatch "${FILESDIR}/${PN}-0.95-parallel-build-failure.patch" + + gtkdocize || die "gtkdocize failed" + eautoreconf + fi +} |