diff options
author | 2009-02-02 21:16:32 +0000 | |
---|---|---|
committer | 2009-02-02 21:16:32 +0000 | |
commit | d0e3ab8e26a628c85de81d5cdaeb9a8496fcaf0f (patch) | |
tree | 54e5ac45dcb94ccb3f69186721f0d8bd5902824d /x11-misc | |
parent | Drop mask on net-libs/NativeThread, since committing freenet now (diff) | |
download | gentoo-2-d0e3ab8e26a628c85de81d5cdaeb9a8496fcaf0f.tar.gz gentoo-2-d0e3ab8e26a628c85de81d5cdaeb9a8496fcaf0f.tar.bz2 gentoo-2-d0e3ab8e26a628c85de81d5cdaeb9a8496fcaf0f.zip |
Bump to 0.11.8. Translation updates.
(Portage version: 2.2_rc23/cvs/Linux x86_64)
Diffstat (limited to 'x11-misc')
-rw-r--r-- | x11-misc/alacarte/ChangeLog | 8 | ||||
-rw-r--r-- | x11-misc/alacarte/alacarte-0.11.8.ebuild | 56 |
2 files changed, 63 insertions, 1 deletions
diff --git a/x11-misc/alacarte/ChangeLog b/x11-misc/alacarte/ChangeLog index 2231f33c30ed..c02f95401cc6 100644 --- a/x11-misc/alacarte/ChangeLog +++ b/x11-misc/alacarte/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for x11-misc/alacarte # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/alacarte/ChangeLog,v 1.67 2009/02/01 19:40:22 nixnut Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/alacarte/ChangeLog,v 1.68 2009/02/02 21:16:32 eva Exp $ + +*alacarte-0.11.8 (02 Feb 2009) + + 02 Feb 2009; Gilles Dartiguelongue <eva@gentoo.org> + +alacarte-0.11.8.ebuild: + Bump to 0.11.8. Translation updates. 01 Feb 2009; nixnut <nixnut@gentoo.org> alacarte-0.11.6.ebuild: ppc stable #255820 diff --git a/x11-misc/alacarte/alacarte-0.11.8.ebuild b/x11-misc/alacarte/alacarte-0.11.8.ebuild new file mode 100644 index 000000000000..b12895d9979b --- /dev/null +++ b/x11-misc/alacarte/alacarte-0.11.8.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/alacarte/alacarte-0.11.8.ebuild,v 1.1 2009/02/02 21:16:32 eva Exp $ + +inherit gnome2 python eutils + +DESCRIPTION="Simple GNOME menu editor" +HOMEPAGE="http://www.realistanew.com/projects/alacarte" + +LICENSE="GPL-2" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" +IUSE="" +SLOT=0 + +common_depends=">=dev-lang/python-2.4 + >=dev-python/pygobject-2.15.1 + >=dev-python/pygtk-2.8 + >=gnome-base/gnome-menus-2.22.2 + >=dev-python/libgnome-python-2.18" + +RDEPEND="${common_depends} + >=gnome-base/gnome-panel-2.16" + +DEPEND="${common_depends} + sys-devel/gettext + >=dev-util/intltool-0.40.0 + >=dev-util/pkgconfig-0.19" + +DOCS="AUTHORS ChangeLog NEWS README" + +pkg_setup() { + if ! built_with_use gnome-base/gnome-menus python ; then + eerror "You must emerge gnome-base/gnome-menus with the python USE flag" + die "alacarte needs python support in gnome-base/gnome-menus" + fi +} + +src_unpack() { + gnome2_src_unpack + + # disable pyc compiling + mv py-compile py-compile.orig + ln -s $(type -P true) py-compile +} + +pkg_postinst() { + gnome2_pkg_postinst + python_version + python_need_rebuild + python_mod_optimize /usr/$(get_libdir)/python${PYVER}/site-packages/Alacarte +} + +pkg_postrm() { + gnome2_pkg_postrm + python_mod_cleanup /usr/$(get_libdir)/python*/site-packages/Alacarte +} |