diff options
author | 2016-08-29 07:33:41 +0200 | |
---|---|---|
committer | 2016-08-29 07:34:16 +0200 | |
commit | e86684bba95e0b230eba11eb941beb0c4c27dbf5 (patch) | |
tree | 8e76f6e59c2195bdd5f2cbf9d9694fa65efc60c5 /x11-misc/menulibre/menulibre-2.0.7.ebuild | |
parent | dev-util/android-studio: bump to 2.1.3 (diff) | |
download | gentoo-e86684bba95e0b230eba11eb941beb0c4c27dbf5.tar.gz gentoo-e86684bba95e0b230eba11eb941beb0c4c27dbf5.tar.bz2 gentoo-e86684bba95e0b230eba11eb941beb0c4c27dbf5.zip |
x11-misc/menulibre: Version bump (bug #592312 by Kete Tefid).
Package-Manager: portage-2.3.0
Diffstat (limited to 'x11-misc/menulibre/menulibre-2.0.7.ebuild')
-rw-r--r-- | x11-misc/menulibre/menulibre-2.0.7.ebuild | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/x11-misc/menulibre/menulibre-2.0.7.ebuild b/x11-misc/menulibre/menulibre-2.0.7.ebuild new file mode 100644 index 00000000000..b71392b8978 --- /dev/null +++ b/x11-misc/menulibre/menulibre-2.0.7.ebuild @@ -0,0 +1,69 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +PYTHON_COMPAT=( python3_{3,4} ) +PYTHON_REQ_USE="xml" +DISTUTILS_IN_SOURCE_BUILD=1 +inherit distutils-r1 eutils gnome2-utils versionator + +DESCRIPTION="Advanced freedesktop.org compliant menu editor" +HOMEPAGE="http://www.smdavis.us/projects/menulibre/" +SRC_URI="https://launchpad.net/${PN}/$(get_version_component_range 1-2)/${PV}/+download/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND=" + dev-python/python-distutils-extra[${PYTHON_USEDEP}] +" +RDEPEND=" + dev-libs/gobject-introspection + dev-python/psutil[${PYTHON_USEDEP}] + dev-python/pygobject:3[${PYTHON_USEDEP}] + dev-python/pyxdg[${PYTHON_USEDEP}] + gnome-base/gnome-menus[introspection] + x11-libs/gdk-pixbuf[X,introspection] + x11-libs/gtk+:3[X,introspection] + x11-libs/gtksourceview:3.0[introspection] + x11-themes/hicolor-icon-theme +" + +python_prepare_all() { + # too many categories + sed -i \ + -e 's/X-GNOME-Settings-Panel;X-GNOME-PersonalSettings;DesktopSettings;X-XFCE;//' \ + menulibre.desktop.in || die + + local i + # fix incorrect behavior when LINGUAS is set to an empty string + # https://bugs.launchpad.net/python-distutils-extra/+bug/1133594 + if [[ -n "${LINGUAS+x}" ]] ; then # if LINGUAS is set + for i in $(cd "${S}"/po ; for p in *.po ; do echo ${p%.po} ; done) ; do # for every supported language + if ! has ${i} ${LINGUAS} ; then # if language is disabled + rm po/${i}.po || die + fi + done + fi + + distutils-r1_python_prepare_all +} + +python_install_all() { + distutils-r1_python_install_all +} + +pkg_preinst() { + gnome2_icon_savelist +} + +pkg_postinst() { + gnome2_icon_cache_update +} + +pkg_postrm() { + gnome2_icon_cache_update +} |