mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-06 02:17:34 -08:00
It appears to work with lld. Closes: https://bugs.gentoo.org/948267 Signed-off-by: Mike Gilbert <floppym@gentoo.org>
74 lines
1.4 KiB
Bash
74 lines
1.4 KiB
Bash
# Copyright 2014-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit toolchain-funcs
|
|
|
|
DESCRIPTION="Tools and library to manipulate EFI variables"
|
|
HOMEPAGE="https://github.com/rhboot/efivar"
|
|
SRC_URI="https://github.com/rhboot/efivar/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0/1"
|
|
KEYWORDS="amd64 arm arm64 ~loong ppc64 ~riscv x86"
|
|
IUSE="test"
|
|
RESTRICT="!test? ( test )"
|
|
|
|
BDEPEND="
|
|
app-text/mandoc
|
|
test? ( sys-boot/grub:2 )
|
|
"
|
|
RDEPEND="
|
|
dev-libs/popt
|
|
"
|
|
DEPEND="${RDEPEND}
|
|
>=sys-kernel/linux-headers-3.18
|
|
virtual/pkgconfig
|
|
"
|
|
|
|
src_prepare() {
|
|
local PATCHES=(
|
|
# Rejected upstream, keep this for ia64 support
|
|
"${FILESDIR}"/efivar-38-ia64-relro.patch
|
|
)
|
|
default
|
|
}
|
|
|
|
src_configure() {
|
|
tc-export_build_env
|
|
|
|
unset CROSS_COMPILE
|
|
export COMPILER=$(tc-getCC)
|
|
export HOSTCC=$(tc-getBUILD_CC)
|
|
export HOST_CFLAGS=${BUILD_CFLAGS}
|
|
export HOST_LDFLAGS=${BUILD_LDFLAGS}
|
|
|
|
export PREFIX="${EPREFIX}/usr"
|
|
export LIBDIR="${EPREFIX}/usr/$(get_libdir)"
|
|
|
|
# https://bugs.gentoo.org/562004
|
|
unset LIBS
|
|
|
|
# Avoid -Werror
|
|
export ERRORS=
|
|
|
|
if [[ -n ${GCC_SPECS} ]]; then
|
|
# The environment overrides the command line.
|
|
GCC_SPECS+=":${S}/src/include/gcc.specs"
|
|
fi
|
|
|
|
# Used by tests/Makefile
|
|
export GRUB_PREFIX=grub
|
|
}
|
|
|
|
src_compile() {
|
|
# HOST_MARCH: https://bugs.gentoo.org/831334
|
|
emake HOST_MARCH=
|
|
}
|
|
|
|
src_test() {
|
|
# https://bugs.gentoo.org/924370
|
|
emake -j1 test
|
|
}
|