diff options
author | Pacho Ramos <pacho@gentoo.org> | 2015-06-07 14:20:05 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2015-06-07 14:20:05 +0000 |
commit | f7a85a83804a698ee2d7076e1149f1d277b3fed9 (patch) | |
tree | a1c18caa0dcbbe335a46147255fc1f7f29ad26d3 /x11-misc/alacarte | |
parent | Add github to remote-id in metadata.xml (diff) | |
download | gentoo-2-f7a85a83804a698ee2d7076e1149f1d277b3fed9.tar.gz gentoo-2-f7a85a83804a698ee2d7076e1149f1d277b3fed9.tar.bz2 gentoo-2-f7a85a83804a698ee2d7076e1149f1d277b3fed9.zip |
Version bump
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Diffstat (limited to 'x11-misc/alacarte')
-rw-r--r-- | x11-misc/alacarte/ChangeLog | 9 | ||||
-rw-r--r-- | x11-misc/alacarte/alacarte-3.11.91.ebuild | 62 |
2 files changed, 69 insertions, 2 deletions
diff --git a/x11-misc/alacarte/ChangeLog b/x11-misc/alacarte/ChangeLog index fbbff4b63811..8bc9cb735c4b 100644 --- a/x11-misc/alacarte/ChangeLog +++ b/x11-misc/alacarte/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-misc/alacarte -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/alacarte/ChangeLog,v 1.128 2014/11/13 12:40:55 pacho Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/alacarte/ChangeLog,v 1.129 2015/06/07 14:20:05 pacho Exp $ + +*alacarte-3.11.91 (07 Jun 2015) + + 07 Jun 2015; Pacho Ramos <pacho@gentoo.org> +alacarte-3.11.91.ebuild: + Version bump 13 Nov 2014; Pacho Ramos <pacho@gentoo.org> -alacarte-0.13.2.ebuild: Drop old (#508854) diff --git a/x11-misc/alacarte/alacarte-3.11.91.ebuild b/x11-misc/alacarte/alacarte-3.11.91.ebuild new file mode 100644 index 000000000000..76a5092b2007 --- /dev/null +++ b/x11-misc/alacarte/alacarte-3.11.91.ebuild @@ -0,0 +1,62 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/alacarte/alacarte-3.11.91.ebuild,v 1.1 2015/06/07 14:20:05 pacho Exp $ + +EAPI="5" +GCONF_DEBUG="no" +# FIXME: support python3 but installs in a weird location +PYTHON_COMPAT=( python2_7 ) +PYTHON_REQ_USE="xml" + +inherit gnome2 python-r1 + +DESCRIPTION="Simple GNOME menu editor" +HOMEPAGE="https://git.gnome.org/browse/alacarte" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" +IUSE="" + +COMMON_DEPEND=" + ${PYTHON_DEPS} + dev-python/pygobject:3[${PYTHON_USEDEP}] + >=gnome-base/gnome-menus-3.5.3:3[introspection] +" +RDEPEND="${COMMON_DEPEND} + x11-libs/gdk-pixbuf:2[introspection] + x11-libs/gtk+:3[introspection] +" +DEPEND="${COMMON_DEPEND} + >=dev-util/intltool-0.40.0 + sys-devel/gettext + virtual/pkgconfig +" + +src_prepare() { + gnome2_src_prepare + python_copy_sources +} + +src_configure() { + python_foreach_impl run_in_build_dir gnome2_src_configure +} + +src_compile() { + python_foreach_impl run_in_build_dir gnome2_src_compile +} + +src_test() { + python_foreach_impl run_in_build_dir default +} + +src_install() { + installing() { + gnome2_src_install + # Massage shebang to make python_doscript happy + sed -e 's:#! '"${PYTHON}:#!/usr/bin/python:" \ + -i alacarte || die + python_doscript alacarte + } + python_foreach_impl run_in_build_dir installing +} |