dev-cpp/pangomm: disable py3.11 and fix gtk-doc PATHs

Signed-off-by: Pacho Ramos <pacho@gentoo.org>
This commit is contained in:
Pacho Ramos
2026-09-12 20:47:15 +02:00
parent 0c1cfd86ab
commit cc39aaa5bc

View File

@@ -3,7 +3,7 @@
EAPI=8
PYTHON_COMPAT=( python3_{11..14} )
PYTHON_COMPAT=( python3_{12..14} )
inherit gnome.org meson-multilib python-any-r1
DESCRIPTION="C++ interface for pango"
@@ -38,3 +38,10 @@ multilib_src_configure() {
)
meson_src_configure
}
multilib_src_install_all() {
if use gtk-doc; then
mkdir -p "${ED}"/usr/share/gtk-doc/html/ || die
mv "${ED}"/usr/share/doc/pangomm-1.4 "${ED}"/usr/share/gtk-doc/html/ || die
fi
}