commit: c726ba3c6207624a63f185dccfe11c4b51ceba61 Author: Lukas Schmelting <lschmelting <AT> posteo <DOT> com> AuthorDate: Sat Sep 20 19:18:49 2025 +0000 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org> CommitDate: Sun Dec 14 10:37:24 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c726ba3c
net-libs/msgraph: fix gtk-doc handling Closes: https://bugs.gentoo.org/937229 Closes: https://bugs.gentoo.org/963153 Signed-off-by: Lukas Schmelting <lschmelting <AT> posteo.com> Part-of: https://github.com/gentoo/gentoo/pull/43876 Closes: https://github.com/gentoo/gentoo/pull/43876 Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org> net-libs/msgraph/msgraph-0.2.3.ebuild | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/net-libs/msgraph/msgraph-0.2.3.ebuild b/net-libs/msgraph/msgraph-0.2.3.ebuild index 93f661c2f493..971a3c614797 100644 --- a/net-libs/msgraph/msgraph-0.2.3.ebuild +++ b/net-libs/msgraph/msgraph-0.2.3.ebuild @@ -45,3 +45,11 @@ src_configure() { ) meson_src_configure } + +src_install(){ + meson_install + if use gtk-doc; then + mkdir -p "${ED}"/usr/share/gtk-doc/html || die + mv "${ED}"/usr/share/doc/msgraph-* "${ED}"/usr/share/gtk-doc/html || die + fi +}
