x11-misc/menulibre: Version 2.2.1
authorJeroen Roovers <jer@gentoo.org>
Sun, 2 Jun 2019 11:56:38 +0000 (13:56 +0200)
committerJeroen Roovers <jer@gentoo.org>
Sun, 2 Jun 2019 11:57:44 +0000 (13:57 +0200)
Package-Manager: Portage-2.3.67, Repoman-2.3.13
Signed-off-by: Jeroen Roovers <jer@gentoo.org>
x11-misc/menulibre/Manifest
x11-misc/menulibre/menulibre-2.2.1.ebuild [new file with mode: 0644]

index aa9ea202a9dfa4d873990636f55921ea586d4ee9..7eadfff900e70c47fc500ae05d3c11e305fe1f65 100644 (file)
@@ -1,3 +1,4 @@
 DIST menulibre-2.1.3.tar.gz 231336 BLAKE2B f15f962b41071f40cebdaa3fbab082932f1acad30026b89bb2b4672a860b4f7cc3caa668eadee48195a091783b6a8d5558ca44ed05034640247cad02394d3b93 SHA512 0a9040bcb311fe993238e5d1fc459db2400466c538c729ecd5bf2ff20cf9c7300ef2543c56ae4ef7cfa44cd66768ee9a9001ab997fd2507d8d74a246b2029c7a
 DIST menulibre-2.1.5.tar.gz 443986 BLAKE2B 5397e1f9d4371c017c8d2358e65bdad58b0ac10765f00fa51b2b20d9e404f19229da00719c6cb209020e5894708882d42adb30f4668e82929e0d1904ca7d3cf5 SHA512 d1bcd055d7f5c77df02470b4b6362ea5af8a6f4dd41f217c73673b63f413c3edca0ae18ccb6cff179a514ee0218613c3201e7687ec36de34436556b8a60a0856
 DIST menulibre-2.2.0.tar.gz 430567 BLAKE2B 7910f9f8e23b2ca3254b5a83a7c16315620bec38ff458a2fe3f65328b8b08ba424d853abb1fdb7334fd2b38da54b632a8d5b178a7cf876873d52c1903adcdab2 SHA512 d08d61fee3c5a9716581716c116d5b82c3221dff24093c765f6ad72d9dc17fde40ebdd2f17bcee7952b22bc4c78bdf1057cbc57af3c4651dfa6dc01cbd3ecbeb
+DIST menulibre-2.2.1.tar.gz 453217 BLAKE2B 86b3d2d8b20bfc7dcfcba380f656ec1e99f1d5dbc3779eadb9e7cc3a2b8c96afc0c2efe72802d0c93833f6c705c67d05a4ba6cc6cf9b95e0c9b9850ae4424fee SHA512 cf1425d604af26b7bde92106aa758a1f7dcc66ad1fbcdcd4c23db90bc7b6de5fe1160b917035f1d949daa1af8ba6b1145d7376ae637c8937a25cb108bf8cd15f
diff --git a/x11-misc/menulibre/menulibre-2.2.1.ebuild b/x11-misc/menulibre/menulibre-2.2.1.ebuild
new file mode 100644 (file)
index 0000000..c0aa8ef
--- /dev/null
@@ -0,0 +1,66 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{5,6} )
+PYTHON_REQ_USE="xml"
+DISTUTILS_IN_SOURCE_BUILD=1
+inherit desktop distutils-r1 xdg-utils
+
+DESCRIPTION="Advanced freedesktop.org compliant menu editor"
+HOMEPAGE="https://bluesabre.org/projects/menulibre/"
+SRC_URI="https://launchpad.net/${PN}/$(ver_cut 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;//' \
+               -e '/^OnlyShowIn/d' \
+               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
+       rm -r "${ED}"/usr/share/doc/${PN} || die
+}
+
+pkg_postinst() {
+       xdg_icon_cache_update
+}
+
+pkg_postrm() {
+       xdg_icon_cache_update
+}