mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-21 21:17:37 -08:00
Closes: https://bugs.gentoo.org/937229 Closes: https://bugs.gentoo.org/963153 Signed-off-by: Lukas Schmelting <lschmelting@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@gentoo.org>
56 lines
1.2 KiB
Bash
56 lines
1.2 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit gnome.org meson
|
|
|
|
DESCRIPTION="GLib-based library for accessing online serive APIs using MS Graph protocol."
|
|
HOMEPAGE="https://gitlab.gnome.org/GNOME/msgraph"
|
|
|
|
LICENSE="LGPL-2+"
|
|
SLOT="0/1"
|
|
KEYWORDS="amd64 ~arm arm64 ~loong ~ppc64 ~riscv x86"
|
|
|
|
IUSE="debug gtk-doc +introspection man test"
|
|
REQUIRED_USE="gtk-doc? ( introspection )"
|
|
RESTRICT="!test? ( test )"
|
|
|
|
RDEPEND="
|
|
>=dev-libs/glib-2.28.0:2
|
|
dev-libs/json-glib
|
|
net-libs/rest:1.0
|
|
net-libs/libsoup:3.0
|
|
net-libs/gnome-online-accounts:=
|
|
>=net-libs/uhttpmock-0.11.0:1.0
|
|
introspection? ( >=dev-libs/gobject-introspection-1.82.0-r2:= )
|
|
"
|
|
|
|
DEPEND="${RDEPEND}
|
|
>=dev-util/gdbus-codegen-2.30.0
|
|
>=sys-devel/gettext-0.19.8
|
|
virtual/pkgconfig
|
|
dev-libs/gobject-introspection-common
|
|
"
|
|
BDEPEND="
|
|
gtk-doc? ( dev-util/gi-docgen )
|
|
test? ( net-libs/uhttpmock:1.0 )
|
|
"
|
|
|
|
src_configure() {
|
|
local emesonargs=(
|
|
$(meson_use gtk-doc gtk_doc)
|
|
$(meson_use introspection)
|
|
$(meson_use test tests)
|
|
)
|
|
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
|
|
}
|