diff options
author | Markos Chandras <hwoarang@gentoo.org> | 2011-07-26 08:18:22 +0000 |
---|---|---|
committer | Markos Chandras <hwoarang@gentoo.org> | 2011-07-26 08:18:22 +0000 |
commit | c5e268689ff4684957085485d7b5a3f121ad2ad2 (patch) | |
tree | a6b45351cb237708cc0f04ffcef6aa0c8be47849 /lxde-base/lxpolkit | |
parent | Version bump (diff) | |
download | gentoo-2-c5e268689ff4684957085485d7b5a3f121ad2ad2.tar.gz gentoo-2-c5e268689ff4684957085485d7b5a3f121ad2ad2.tar.bz2 gentoo-2-c5e268689ff4684957085485d7b5a3f121ad2ad2.zip |
Version bump
(Portage version: 2.2.0_alpha46/cvs/Linux x86_64)
Diffstat (limited to 'lxde-base/lxpolkit')
-rw-r--r-- | lxde-base/lxpolkit/ChangeLog | 7 | ||||
-rw-r--r-- | lxde-base/lxpolkit/lxpolkit-0.1.0.ebuild | 35 |
2 files changed, 41 insertions, 1 deletions
diff --git a/lxde-base/lxpolkit/ChangeLog b/lxde-base/lxpolkit/ChangeLog index 1eb15bc58642..c0611e9ecef4 100644 --- a/lxde-base/lxpolkit/ChangeLog +++ b/lxde-base/lxpolkit/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for lxde-base/lxpolkit # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/lxde-base/lxpolkit/ChangeLog,v 1.6 2011/05/15 11:18:14 phajdan.jr Exp $ +# $Header: /var/cvsroot/gentoo-x86/lxde-base/lxpolkit/ChangeLog,v 1.7 2011/07/26 08:18:22 hwoarang Exp $ + +*lxpolkit-0.1.0 (26 Jul 2011) + + 26 Jul 2011; Markos Chandras <hwoarang@gentoo.org> +lxpolkit-0.1.0.ebuild: + Version bump 15 May 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> lxpolkit-0_p20110329.ebuild: diff --git a/lxde-base/lxpolkit/lxpolkit-0.1.0.ebuild b/lxde-base/lxpolkit/lxpolkit-0.1.0.ebuild new file mode 100644 index 000000000000..4b8b7a803a3c --- /dev/null +++ b/lxde-base/lxpolkit/lxpolkit-0.1.0.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2011 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.ebuild,v 1.1 2011/07/26 08:18:22 hwoarang Exp $ + +EAPI=4 +inherit autotools + +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.99-r1 + >=x11-libs/gtk+-2.12:2 + !gnome-extra/polkit-gnome" +DEPEND="${RDEPEND} + >=dev-util/intltool-0.40.0 + dev-util/pkgconfig + sys-devel/gettext" + +src_prepare() { + sed -i -e 's:GNOME;::' data/lxpolkit.desktop.in.in || die + + local x + for x in lxpolkit.desktop.in ui/lxpolkit.ui; do #352716 + echo data/${x} >> po/POTFILES.skip + done + + intltoolize --force --copy --automake || die + eautoreconf +} |