mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-06 08:25:01 +01:00
47 lines
1.2 KiB
Bash
47 lines
1.2 KiB
Bash
# Copyright 1999-2020 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
PYTHON_COMPAT=( python3_{10..11} )
|
|
inherit python-single-r1
|
|
|
|
DESCRIPTION="a tool for generating freedesktop-compliant menus"
|
|
HOMEPAGE="https://github.com/pentoo/genmenu"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
|
|
if [ "${PV}" = "9999" ];then
|
|
inherit git-r3
|
|
EGIT_REPO_URI="https://github.com/pentoo/genmenu.git"
|
|
else
|
|
KEYWORDS="amd64 x86"
|
|
COMMIT="dac9f9eaff891d6de9def7fe659e88c56367b038"
|
|
SRC_URI="https://github.com/pentoo/genmenu/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
|
|
S="${WORKDIR}/${PN}-${COMMIT}"
|
|
fi
|
|
|
|
#gnome-base/gnome-menus"
|
|
DEPEND="${PYTHON_DEPS}
|
|
$(python_gen_cond_dep ' dev-python/lxml[${PYTHON_USEDEP}] ')"
|
|
RDEPEND="${DEPEND}"
|
|
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
|
|
|
src_install() {
|
|
insinto /usr/
|
|
doins -r "${S}"/src/share
|
|
chown -R root:root "${ED}"
|
|
dobin src/bin/genmenu.py src/bin/launch
|
|
}
|
|
|
|
pkg_postinst() {
|
|
einfo
|
|
einfo "The genmenu has been updated."
|
|
einfo "You should run the following command to regenerate the main Pentoo menu for a local user:"
|
|
einfo "E17: genmenu.py -e"
|
|
einfo "Xfce: genmenu.py -x"
|
|
einfo "KDE: genmenu.py -k"
|
|
einfo
|
|
einfo "See -h for more options"
|
|
}
|