gentoo-ebuilds/sys-apps/bolt/bolt-0.9.8-r1.ebuild
NHOrus a96cc9c522
sys-apps/bolt: C23 porting: upstream patch
9f85914f1e
Also pushed Python to 3.13

Bug: https://bugs.gentoo.org/937273
Signed-off-by: NHOrus <jy6x2b32pie9@yahoo.com>
Closes: https://github.com/gentoo/gentoo/pull/40011
Signed-off-by: Patrick McLean <chutzpah@gentoo.org>
2025-01-06 14:42:26 -08:00

86 lines
1.8 KiB
Bash

# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_1{0..3} )
inherit linux-info python-any-r1 meson udev
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.bz2"
LICENSE="LGPL-2.1 GPL-2+"
SLOT="0"
KEYWORDS="amd64 ~loong ~riscv ~x86"
IUSE="selinux test"
RESTRICT="!test? ( test )"
RDEPEND="
>=dev-libs/glib-2.56.0:2
virtual/libudev:=
virtual/udev
sys-auth/polkit[introspection]
selinux? ( sec-policy/selinux-thunderbolt )
"
DEPEND="
${RDEPEND}
test? (
dev-util/umockdev
)
"
BDEPEND="
app-text/asciidoc
dev-util/glib-utils
virtual/pkgconfig
test? (
dev-util/umockdev
${PYTHON_DEPS}
$(python_gen_any_dep \
'dev-python/pygobject[${PYTHON_USEDEP}]' \
'dev-python/dbus-python[${PYTHON_USEDEP}]' \
'dev-python/python-dbusmock[${PYTHON_USEDEP}]'
)
)
"
PATCHES=( "${FILESDIR}"/${P}-sockaddr.patch )
pkg_setup() {
if use kernel_linux && kernel_is lt 5 6; then
CONFIG_CHECK="~THUNDERBOLT"
ERROR_THUNDERBOLT="This package requires the thunderbolt kernel driver."
else
CONFIG_CHECK="~USB4"
ERROR_USB4="This package requires the USB4 kernel driver for Thunderbolt support."
fi
CONFIG_CHECK+=" ~HOTPLUG_PCI"
ERROR_HOTPLUG_PCI="Thunderbolt requires PCI hotplug support."
linux-info_pkg_setup
python-any-r1_pkg_setup
}
src_configure() {
local emesonargs=(
-Dman=true
--sysconfdir="${EPREFIX}"/etc
--localstatedir="${EPREFIX}"/var
--sharedstatedir="${EPREFIX}"/var/lib
)
meson_src_configure
}
src_install() {
meson_src_install
newinitd "${FILESDIR}"/${PN}.openrc-r1 boltd
keepdir /var/lib/boltd
}
pkg_postinst() {
udev_reload
}
pkg_postrm() {
udev_reload
}