blob: db1ed710f65814bb4c6fcee8494f16141e94dde1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
# 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
}
|