blob: 5bdf62da3b894db8c87e0cbbf69dae0d27e28a71 (
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
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit meson xdg
DESCRIPTION="Install firmware on devices"
HOMEPAGE="https://gitlab.gnome.org/World/gnome-firmware"
SRC_URI="https://people.freedesktop.org/~hughsient/releases/${P}.tar.xz"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~amd64"
IUSE="+man elogind systemd"
RDEPEND="
>=gui-libs/gtk-4.2:4
>=dev-libs/glib-2.74.0:2
>=sys-apps/fwupd-1.8.11[elogind?,systemd?]
>=dev-libs/libxmlb-0.1.7:=
>=gui-libs/libadwaita-1.4:1
elogind? ( sys-auth/elogind )
systemd? ( sys-apps/systemd )
"
DEPEND="${RDEPEND}"
BDEPEND="
sys-devel/gettext
virtual/pkgconfig
man? ( sys-apps/help2man )
"
DOCS=( README.md )
src_configure() {
local emesonargs=(
-Dconsolekit=false
-Ddevel=false
$(meson_use elogind)
$(meson_use man)
$(meson_use systemd)
)
meson_src_configure
}
|