89 lines
1.7 KiB
Bash
89 lines
1.7 KiB
Bash
# Copyright 2022 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit meson vala virtualx
|
|
|
|
DESCRIPTION="Flatpak portal library"
|
|
HOMEPAGE="https://github.com/flatpak/libportal"
|
|
SRC_URI="https://github.com/flatpak/libportal/releases/download/${PV}/${P}.tar.xz"
|
|
|
|
LICENSE="LGPL-3"
|
|
SLOT="0/1-1-1-1" # soname of libportal{,-gtk3,-gtk4,-qt5}.so
|
|
KEYWORDS="amd64 ~arm arm64 ~ia64 ~loong ~ppc ~ppc64 ~riscv ~sparc x86"
|
|
IUSE="gtk gtk-doc +introspection qt5 test +vala"
|
|
RESTRICT="!test? ( test )"
|
|
REQUIRED_USE="
|
|
gtk-doc? ( introspection )
|
|
vala? ( introspection )
|
|
"
|
|
|
|
RDEPEND="
|
|
>=dev-libs/glib-2.58:2
|
|
introspection? ( dev-libs/gobject-introspection:= )
|
|
gtk? (
|
|
x11-libs/gtk+:3
|
|
gui-libs/gtk:4
|
|
)
|
|
qt5? (
|
|
dev-qt/qtcore:=
|
|
dev-qt/qtgui:=
|
|
dev-qt/qtx11extras:=
|
|
dev-qt/qtwidgets:=
|
|
)
|
|
"
|
|
DEPEND="${RDEPEND}
|
|
qt5? (
|
|
test? ( dev-qt/qttest:= )
|
|
)
|
|
"
|
|
BDEPEND="
|
|
dev-util/glib-utils
|
|
virtual/pkgconfig
|
|
gtk-doc? ( dev-util/gi-docgen )
|
|
qt5? (
|
|
test? ( dev-qt/linguist-tools )
|
|
)
|
|
vala? ( $(vala_depend) )
|
|
"
|
|
|
|
src_prepare() {
|
|
default
|
|
vala_setup
|
|
}
|
|
|
|
src_configure() {
|
|
local backends
|
|
use gtk && backends+="gtk3,gtk4,"
|
|
use qt5 && backends+="qt5,"
|
|
|
|
local emesonargs=(
|
|
-Dbackends=${backends%,}
|
|
-Dportal-tests=false
|
|
$(meson_use introspection)
|
|
$(meson_use vala vapi)
|
|
$(meson_use gtk-doc docs)
|
|
$(meson_use test tests)
|
|
)
|
|
meson_src_configure
|
|
}
|
|
|
|
src_test() {
|
|
# Tests only exist for Qt5
|
|
if use qt5; then
|
|
virtx meson_src_test
|
|
else
|
|
# run meson_src_test to notice if tests are added
|
|
meson_src_test
|
|
fi
|
|
}
|
|
|
|
src_install() {
|
|
meson_src_install
|
|
|
|
if use gtk-doc; then
|
|
mkdir -p "${ED}"/usr/share/gtk-doc/html/ || die
|
|
mv "${ED}"/usr/share/doc/${PN}-1 "${ED}"/usr/share/gtk-doc/html/ || die
|
|
fi
|
|
}
|