Files
gentoo/dev-libs/libmanette/libmanette-0.2.13.ebuild
Lukas Schmelting 4822ce7293 dev-libs/libmanette: add 0.2.13
Signed-off-by: Lukas Schmelting <lschmelting@posteo.com>
Part-of: https://github.com/gentoo/gentoo/pull/44499
Signed-off-by: Pacho Ramos <pacho@gentoo.org>
2025-12-14 11:25:06 +01:00

53 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 vala xdg
DESCRIPTION="Simple GObject game controller library"
HOMEPAGE="https://gitlab.gnome.org/GNOME/libmanette"
LICENSE="LGPL-2.1+"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86"
IUSE="doc +introspection +udev +vala test"
RESTRICT="!test? ( test )"
REQUIRED_USE="vala? ( introspection ) doc? ( introspection )"
RDEPEND="
>=dev-libs/glib-2.50:2
udev? ( dev-libs/libgudev[introspection?] )
dev-libs/libevdev
dev-libs/hidapi
introspection? ( >=dev-libs/gobject-introspection-1.83.2:= )
"
DEPEND="${RDEPEND}"
# libmanette usage of `g-ir-scanner --doc-format` requires >=dev-lang/vala-0.56.18
# See https://bugs.gentoo.org/952906
BDEPEND="
doc? ( dev-util/gi-docgen )
vala? (
$(vala_depend)
>=dev-lang/vala-0.56.18
)
virtual/pkgconfig
"
src_prepare() {
default
use vala && vala_setup
}
src_configure() {
local emesonargs=(
-Ddemos=false
$(meson_use test build-tests)
-Dinstall-tests=false
$(meson_use doc doc)
$(meson_use introspection)
$(meson_use vala vapi)
$(meson_feature udev gudev)
)
meson_src_configure
}