gentoo-ebuilds/gui-apps/gnome-console/gnome-console-47.2.1.ebuild
Sam James 9597de5a79
gui-apps/gnome-console: style tweak
Signed-off-by: Sam James <sam@gentoo.org>
2025-06-09 03:41:55 +01:00

60 lines
1.1 KiB
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 xdg
DESCRIPTION="A simple user-friendly terminal emulator for the GNOME desktop"
HOMEPAGE="https://apps.gnome.org/Console/ https://gitlab.gnome.org/GNOME/console"
LICENSE="LGPL-3+"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~loong"
IUSE="test"
RESTRICT="!test? ( test )"
RDEPEND="
>=dev-libs/glib-2.80:2
>=gui-libs/gtk-4.14:4
>=gui-libs/libadwaita-1.6:1
>=gui-libs/vte-0.77.0:2.91-gtk4
gnome-base/libgtop:2=
>=dev-libs/libpcre2-10.32:0=
gnome-base/gsettings-desktop-schemas
x11-libs/pango
"
DEPEND="${RDEPEND}"
BDEPEND="
virtual/pkgconfig
test? (
dev-util/desktop-file-utils
dev-libs/appstream-glib
)
"
PATCHES=(
# https://bugs.gentoo.org/956695
# This is fixed in 48.x releases and upstream insists to use that
# instead of backporting the fix in 47
"${FILESDIR}"/${P}-musl.patch
)
src_configure() {
local emesonargs=(
-Ddevel=false
$(meson_use test tests)
)
meson_src_configure
}
pkg_postinst() {
xdg_pkg_postinst
gnome2_schemas_update
}
pkg_postrm() {
xdg_pkg_postrm
gnome2_schemas_update
}