blob: 43fd351f948377aee244307ced51cd73042e092e (
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
|
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit meson systemd
DESCRIPTION="Userspace system daemon to enable security levels for Thunderbolt 3."
HOMEPAGE="https://gitlab.freedesktop.org/bolt/bolt"
SRC_URI="https://gitlab.freedesktop.org/${PN}/${PN}/-/archive/${PV}/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64"
IUSE="doc"
DEPEND="
>=dev-libs/glib-2.50.0:2
virtual/libudev
virtual/udev
sys-auth/polkit[introspection]
doc? ( app-text/asciidoc )"
RDEPEND="${DEPEND}"
src_configure() {
local emesonargs=(
-Dman=$(usex doc true false)
--sysconfdir=/etc
--localstatedir=/var
--sharedstatedir=/var/lib
)
meson_src_configure
}
src_install() {
meson_src_install
keepdir /var/lib/boltd
}
|