mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-08 00:05:33 +03:00
Removing remote-id as most of GNOME doesn't include it Signed-off-by: zyxhere💭 <zyx@envs.net> Part-of: https://github.com/gentoo/gentoo/pull/44128 Closes: https://github.com/gentoo/gentoo/pull/44128 Signed-off-by: Sam James <sam@gentoo.org>
54 lines
1.1 KiB
Bash
54 lines
1.1 KiB
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 meson python-any-r1 virtualx
|
|
|
|
DESCRIPTION="C++ interface for GTK+"
|
|
HOMEPAGE="https://gtkmm.gnome.org/en/index.html"
|
|
|
|
LICENSE="LGPL-2.1+"
|
|
SLOT="4.0"
|
|
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux"
|
|
IUSE="gtk-doc test"
|
|
|
|
RESTRICT="!test? ( test )"
|
|
|
|
RDEPEND="
|
|
>=dev-cpp/glibmm-2.68.0:2.68[gtk-doc?]
|
|
>=gui-libs/gtk-4.14.0:4
|
|
<gui-libs/gtk-4.20:4
|
|
>=dev-cpp/cairomm-1.15.4:1.16[gtk-doc?]
|
|
>=dev-cpp/pangomm-2.50.0:2.48[gtk-doc?]
|
|
>=x11-libs/gdk-pixbuf-2.35.5:2
|
|
>=media-libs/libepoxy-1.2
|
|
"
|
|
DEPEND="
|
|
${RDEPEND}
|
|
gtk-doc? ( dev-libs/libsigc++:3 )
|
|
"
|
|
BDEPEND="
|
|
virtual/pkgconfig
|
|
gtk-doc? (
|
|
app-text/doxygen[dot]
|
|
dev-lang/perl
|
|
dev-libs/libxslt
|
|
)
|
|
${PYTHON_DEPS}
|
|
"
|
|
|
|
src_configure() {
|
|
local emesonargs=(
|
|
-Dbuild-demos=false
|
|
$(meson_use gtk-doc build-documentation)
|
|
$(meson_use test build-tests)
|
|
)
|
|
meson_src_configure
|
|
}
|
|
|
|
src_test() {
|
|
virtx meson_src_test
|
|
}
|