mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-06-08 06:09:43 +02:00
35 lines
757 B
Bash
35 lines
757 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
PYTHON_COMPAT=( python3_{10..13} )
|
|
PYTHON_REQ_USE="xml(+)"
|
|
|
|
inherit gnome2 python-single-r1
|
|
|
|
DESCRIPTION="Simple GNOME menu editor"
|
|
HOMEPAGE="https://gitlab.gnome.org/GNOME/alacarte"
|
|
|
|
LICENSE="GPL-2+"
|
|
SLOT="0"
|
|
KEYWORDS="~alpha amd64 ~ppc ~ppc64 ~sparc x86"
|
|
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
|
|
|
DEPEND="
|
|
${PYTHON_DEPS}
|
|
$(python_gen_cond_dep 'dev-python/pygobject:3[${PYTHON_USEDEP}]')
|
|
>=gnome-base/gnome-menus-3.5.3:3[introspection]
|
|
"
|
|
RDEPEND="${DEPEND}
|
|
x11-libs/gdk-pixbuf:2[introspection]
|
|
x11-libs/gtk+:3[introspection]
|
|
"
|
|
BDEPEND="
|
|
>=sys-devel/gettext-0.19.8
|
|
virtual/pkgconfig
|
|
"
|
|
|
|
src_install() {
|
|
gnome2_src_install
|
|
python_optimize
|
|
}
|