mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-06-14 09:02:26 +02:00
Closes: https://bugs.gentoo.org/952476 Signed-off-by: 1vybridge <openrc@posteo.de> Closes: https://github.com/gentoo/gentoo/pull/41389 Signed-off-by: Pacho Ramos <pacho@gentoo.org>
47 lines
915 B
Bash
47 lines
915 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} )
|
|
inherit gnome.org gnome2-utils meson python-any-r1 vala xdg
|
|
|
|
DESCRIPTION="Clear hidden mines from a minefield"
|
|
HOMEPAGE="https://gitlab.gnome.org/GNOME/gnome-mines"
|
|
|
|
LICENSE="GPL-3+ CC-BY-SA-3.0"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ~arm arm64 ~loong ~riscv x86"
|
|
|
|
RDEPEND="
|
|
>=dev-libs/glib-2.40:2
|
|
dev-libs/libgee:0.8
|
|
>=x11-libs/gtk+-3.24:3
|
|
>=dev-libs/libgnome-games-support-1.7.1:1=
|
|
>=gnome-base/librsvg-2.32.0:2
|
|
"
|
|
DEPEND="${RDEPEND}"
|
|
BDEPEND="
|
|
${PYTHON_DEPS}
|
|
$(vala_depend)
|
|
dev-libs/appstream-glib
|
|
dev-libs/libxml2:2
|
|
dev-util/itstool
|
|
>=sys-devel/gettext-0.19.8
|
|
virtual/pkgconfig
|
|
gnome-base/librsvg:2[vala]
|
|
"
|
|
|
|
src_prepare() {
|
|
default
|
|
vala_setup
|
|
}
|
|
|
|
pkg_postinst() {
|
|
xdg_pkg_postinst
|
|
gnome2_schemas_update
|
|
}
|
|
|
|
pkg_postrm() {
|
|
xdg_pkg_postrm
|
|
gnome2_schemas_update
|
|
}
|