mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-06-09 06:35:19 +02:00
Signed-off-by: Guillermo Joandet <gjoandet@gmail.com> Closes: https://github.com/gentoo/gentoo/pull/38685 Signed-off-by: Pacho Ramos <pacho@gentoo.org>
43 lines
803 B
Bash
43 lines
803 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit gnome.org gnome2-utils meson vala xdg
|
|
|
|
DESCRIPTION="Disk usage browser for GNOME"
|
|
HOMEPAGE="https://gitlab.gnome.org/GNOME/baobab"
|
|
|
|
LICENSE="GPL-2+ FDL-1.1+"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux"
|
|
|
|
RDEPEND="
|
|
>=dev-libs/glib-2.44:2
|
|
>=gui-libs/gtk-4.15.1:4
|
|
>=gui-libs/libadwaita-1.6_alpha:1
|
|
"
|
|
DEPEND="${RDEPEND}"
|
|
BDEPEND="
|
|
$(vala_depend)
|
|
>=gui-libs/libadwaita-1.4_alpha:1[vala]
|
|
dev-util/itstool
|
|
>=sys-devel/gettext-0.21
|
|
virtual/pkgconfig
|
|
"
|
|
|
|
src_prepare() {
|
|
default
|
|
vala_setup
|
|
xdg_environment_reset
|
|
}
|
|
|
|
pkg_postinst() {
|
|
xdg_pkg_postinst
|
|
gnome2_schemas_update
|
|
}
|
|
|
|
pkg_postrm() {
|
|
xdg_pkg_postrm
|
|
gnome2_schemas_update
|
|
}
|