175 lines
4.4 KiB
Bash
175 lines
4.4 KiB
Bash
# Copyright 1999-2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
PYTHON_COMPAT=( python3_{8..10} )
|
|
|
|
inherit linux-info meson python-single-r1 vala xdg toolchain-funcs
|
|
|
|
DESCRIPTION="Aims to make updating firmware on Linux automatic, safe and reliable"
|
|
HOMEPAGE="https://fwupd.org"
|
|
SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="LGPL-2.1+"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
|
|
IUSE="agent amt archive bluetooth dell elogind flashrom gnutls gtk-doc gusb introspection lzma +man minimal modemmanager nvme policykit spi synaptics systemd test thunderbolt tpm uefi"
|
|
REQUIRED_USE="${PYTHON_REQUIRED_USE}
|
|
^^ ( elogind minimal systemd )
|
|
dell? ( uefi )
|
|
minimal? ( !introspection )
|
|
spi? ( lzma )
|
|
synaptics? ( gnutls )
|
|
uefi? ( gnutls )
|
|
"
|
|
RESTRICT="!test? ( test )"
|
|
|
|
BDEPEND="$(vala_depend)
|
|
virtual/pkgconfig
|
|
gtk-doc? ( dev-util/gtk-doc )
|
|
introspection? ( dev-libs/gobject-introspection )
|
|
man? (
|
|
app-text/docbook-sgml-utils
|
|
sys-apps/help2man
|
|
)
|
|
test? (
|
|
thunderbolt? ( dev-util/umockdev )
|
|
net-libs/gnutls[tools]
|
|
)
|
|
"
|
|
COMMON_DEPEND="${PYTHON_DEPS}
|
|
>=app-arch/gcab-1.0
|
|
dev-db/sqlite
|
|
>=dev-libs/glib-2.45.8:2
|
|
dev-libs/json-glib
|
|
dev-libs/libgpg-error
|
|
dev-libs/libgudev:=
|
|
>=dev-libs/libjcat-0.1.0[gpg,pkcs7]
|
|
>=dev-libs/libxmlb-0.1.13:=
|
|
$(python_gen_cond_dep '
|
|
dev-python/pillow[${PYTHON_USEDEP}]
|
|
dev-python/pycairo[${PYTHON_USEDEP}]
|
|
dev-python/pygobject:3[cairo,${PYTHON_USEDEP}]
|
|
')
|
|
>=net-libs/libsoup-2.51.92:2.4[introspection?]
|
|
net-misc/curl
|
|
virtual/libelf:0=
|
|
virtual/udev
|
|
archive? ( app-arch/libarchive:= )
|
|
dell? ( >=sys-libs/libsmbios-2.4.0 )
|
|
elogind? ( >=sys-auth/elogind-211 )
|
|
flashrom? ( >=sys-apps/flashrom-1.2-r3 )
|
|
gnutls? ( net-libs/gnutls )
|
|
gusb? ( >=dev-libs/libgusb-0.3.5[introspection?] )
|
|
lzma? ( app-arch/xz-utils )
|
|
modemmanager? ( net-misc/modemmanager[qmi] )
|
|
policykit? ( >=sys-auth/polkit-0.103 )
|
|
systemd? ( >=sys-apps/systemd-211 )
|
|
tpm? ( app-crypt/tpm2-tss )
|
|
uefi? (
|
|
sys-apps/fwupd-efi
|
|
sys-boot/efibootmgr
|
|
sys-fs/udisks
|
|
sys-libs/efivar
|
|
)
|
|
"
|
|
# Block sci-chemistry/chemical-mime-data for bug #701900
|
|
RDEPEND="
|
|
!<sci-chemistry/chemical-mime-data-0.1.94-r4
|
|
${COMMON_DEPEND}
|
|
sys-apps/dbus
|
|
"
|
|
|
|
DEPEND="
|
|
${COMMON_DEPEND}
|
|
x11-libs/pango[introspection]
|
|
"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}"/${PN}-1.5.7-logind_plugin.patch
|
|
)
|
|
|
|
pkg_setup() {
|
|
python-single-r1_pkg_setup
|
|
if use nvme ; then
|
|
kernel_is -ge 4 4 || die "NVMe support requires kernel >= 4.4"
|
|
fi
|
|
}
|
|
|
|
src_prepare() {
|
|
default
|
|
# c.f. https://github.com/fwupd/fwupd/issues/1414
|
|
sed -e "/test('thunderbolt-self-test', e, env: test_env, timeout : 120)/d" \
|
|
-i plugins/thunderbolt/meson.build || die
|
|
|
|
sed -e '/platform-integrity/d' \
|
|
-i plugins/meson.build || die #753521
|
|
|
|
sed -e "/install_dir.*'doc'/s/fwupd/${PF}/" \
|
|
-i data/builder/meson.build || die
|
|
|
|
vala_src_prepare
|
|
}
|
|
|
|
src_configure() {
|
|
local plugins=(
|
|
$(meson_use amt plugin_amt)
|
|
$(meson_use dell plugin_dell)
|
|
$(meson_use flashrom plugin_flashrom)
|
|
$(meson_use gusb plugin_altos)
|
|
$(meson_use modemmanager plugin_modem_manager)
|
|
$(meson_use nvme plugin_nvme)
|
|
$(meson_use spi plugin_intel_spi)
|
|
$(meson_use synaptics plugin_synaptics_mst)
|
|
$(meson_use synaptics plugin_synaptics_rmi)
|
|
$(meson_use thunderbolt plugin_thunderbolt)
|
|
$(meson_use tpm plugin_tpm)
|
|
$(meson_use uefi plugin_uefi_capsule)
|
|
$(meson_use uefi plugin_uefi_capsule_splash)
|
|
$(meson_use uefi plugin_uefi_pk)
|
|
)
|
|
use ppc64 && plugins+=( -Dplugin_msr="false" )
|
|
use riscv && plugins+=( -Dplugin_msr="false" )
|
|
|
|
local emesonargs=(
|
|
--localstatedir "${EPREFIX}"/var
|
|
-Dbuild="$(usex minimal standalone all)"
|
|
-Dconsolekit="false"
|
|
-Dcurl="true"
|
|
-Ddocs="$(usex gtk-doc gtkdoc none)"
|
|
-Defi_binary="false"
|
|
-Dsupported_build="true"
|
|
$(meson_use agent)
|
|
$(meson_use archive libarchive)
|
|
$(meson_use bluetooth bluez)
|
|
$(meson_use elogind)
|
|
$(meson_use gnutls)
|
|
$(meson_use gusb)
|
|
$(meson_use lzma)
|
|
$(meson_use man)
|
|
$(meson_use introspection)
|
|
$(meson_use policykit polkit)
|
|
$(meson_use systemd)
|
|
$(meson_use test tests)
|
|
|
|
${plugins[@]}
|
|
)
|
|
use uefi && emesonargs+=( -Defi_os_dir="gentoo" )
|
|
export CACHE_DIRECTORY="${T}"
|
|
meson_src_configure
|
|
}
|
|
|
|
src_install() {
|
|
meson_src_install
|
|
|
|
if ! use minimal ; then
|
|
newinitd "${FILESDIR}"/${PN}-r2 ${PN}
|
|
|
|
if ! use systemd ; then
|
|
# Don't timeout when fwupd is running (#673140)
|
|
sed '/^IdleTimeout=/s@=[[:digit:]]\+@=0@' \
|
|
-i "${ED}"/etc/${PN}/daemon.conf || die
|
|
fi
|
|
fi
|
|
}
|