This commit is contained in:
Gerben Jan Dijkman 2022-10-04 00:55:41 +02:00
parent f7d45bf248
commit 478d100846
2 changed files with 45 additions and 0 deletions

View File

@ -0,0 +1 @@
DIST libcloudproviders-0.3.1.tar.xz 22072 BLAKE2B ecd573507b75c144d94678b693181efc9420fed2d9103cb35653a5f83435e544e77cba232c490ad946ace1eb3cc7382d746ca9fadb55a69c87f55ba3aa09ec83 SHA512 66e951380da8447529d04cc9cbaa0587f40152ab0b66787ce3939104a49eeb16808499a5dcdcd38b7ae9c8cca8bec66ae0bbf04524e7ff8fdf6d420e8a71d609

View File

@ -0,0 +1,44 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit gnome.org meson vala
DESCRIPTION="DBus API that allows cloud storage sync clients to expose their services"
HOMEPAGE="https://gitlab.gnome.org/World/libcloudproviders"
LICENSE="LGPL-3"
SLOT="0"
IUSE="gtk-doc +introspection vala"
REQUIRED_USE="vala? ( introspection )"
KEYWORDS="~amd64"
DEPEND=">=dev-libs/glib-2.51.2:2"
RDEPEND="${DEPEND}"
BDEPEND="
dev-util/gdbus-codegen
dev-util/glib-utils
gtk-doc? ( dev-util/gtk-doc )
vala? ( $(vala_depend) )
"
src_prepare() {
default
use vala && vala_setup
}
src_configure() {
local emesonargs=(
$(meson_use gtk-doc enable-gtk-doc)
-Dinstalled-tests=false
$(meson_use introspection)
$(meson_use vala vapigen)
)
meson_src_configure
}
src_install() {
meson_src_install
}