diff options
author | Gilles Dartiguelongue <eva@gentoo.org> | 2009-10-29 21:45:12 +0000 |
---|---|---|
committer | Gilles Dartiguelongue <eva@gentoo.org> | 2009-10-29 21:45:12 +0000 |
commit | 19fd184f0d2cca3abc42f1bc6d4869b21192caaf (patch) | |
tree | 236b246f61251080211d7cd9b0bfddb0e441688c | |
parent | New version for GNOME 2.28. Clean up old revision. (diff) | |
download | gentoo-2-19fd184f0d2cca3abc42f1bc6d4869b21192caaf.tar.gz gentoo-2-19fd184f0d2cca3abc42f1bc6d4869b21192caaf.tar.bz2 gentoo-2-19fd184f0d2cca3abc42f1bc6d4869b21192caaf.zip |
New version for GNOME 2.28.
(Portage version: 2.2_rc46/cvs/Linux x86_64)
-rw-r--r-- | x11-misc/alacarte/ChangeLog | 8 | ||||
-rw-r--r-- | x11-misc/alacarte/alacarte-0.12.4.ebuild | 50 |
2 files changed, 57 insertions, 1 deletions
diff --git a/x11-misc/alacarte/ChangeLog b/x11-misc/alacarte/ChangeLog index 8e10edfcaef8..3726a3047c70 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.87 2009/10/24 16:59:38 nixnut Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/alacarte/ChangeLog,v 1.88 2009/10/29 21:45:12 eva Exp $ + +*alacarte-0.12.4 (29 Oct 2009) + + 29 Oct 2009; Gilles Dartiguelongue <eva@gentoo.org> + +alacarte-0.12.4.ebuild: + New version for GNOME 2.28. 24 Oct 2009; nixnut <nixnut@gentoo.org> alacarte-0.12.1.ebuild: ppc stable #281427 diff --git a/x11-misc/alacarte/alacarte-0.12.4.ebuild b/x11-misc/alacarte/alacarte-0.12.4.ebuild new file mode 100644 index 000000000000..e40c4ebab2c9 --- /dev/null +++ b/x11-misc/alacarte/alacarte-0.12.4.ebuild @@ -0,0 +1,50 @@ +# 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.12.4.ebuild,v 1.1 2009/10/29 21:45:12 eva Exp $ + +EAPI="2" +GCONF_DEBUG="no" + +inherit gnome2 python + +DESCRIPTION="Simple GNOME menu editor" +HOMEPAGE="http://live.gnome.org/" + +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.13 + >=gnome-base/gnome-menus-2.27.92[python]" + +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" + +src_prepare() { + gnome2_src_prepare + + # disable pyc compiling + mv py-compile py-compile.orig + ln -s $(type -P true) py-compile +} + +pkg_postinst() { + gnome2_pkg_postinst + python_need_rebuild + python_mod_optimize $(python_get_sitedir)/Alacarte +} + +pkg_postrm() { + gnome2_pkg_postrm + python_mod_cleanup /usr/$(get_libdir)/python*/site-packages/Alacarte +} |