gentoo/app-admin/coreboot-utils/coreboot-utils-25.06.ebuild
Michał Górny 3f9689daa1
*/*: Use := on virtual/zlib deps, part 6
Done via:

```
git grep -l 'virtual/zlib"' | xargs sed -i -e 's@virtual/zlib"@virtual/zlib:="@'
```

Signed-off-by: Michał Górny <mgorny@gentoo.org>
2025-11-04 11:08:49 +01:00

68 lines
1.6 KiB
Bash

# Copyright 2022-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit toolchain-funcs
DESCRIPTION="A selection from coreboot/utils useful in general"
HOMEPAGE="https://www.coreboot.org/"
SRC_URI="https://coreboot.org/releases/coreboot-${PV}.tar.xz"
S="${WORKDIR}/coreboot-${PV}"
LICENSE="GPL-2+ GPL-2"
SLOT="0"
KEYWORDS="~amd64"
DEPEND="sys-apps/pciutils
virtual/zlib:="
RDEPEND="${DEPEND}"
PATCHES=(
"${FILESDIR}"/${PN}-25.06-includes.patch
"${FILESDIR}"/${PN}-25.06-Oz.patch
)
# selection from README.md that seem useful outside coreboot
coreboot_utils=(
#cbfstool has textrels and is not really necessary outside coreboot
cbmem
ifdtool
intelmetool
inteltool
me_cleaner
nvramtool
pmh7tool
superiotool
)
src_prepare() {
default
# drop some CFLAGS that hurt compilation on modern toolchains or
# force optimisation
# can't do this in one sed, because it all happens back-to-back
for e in '-O[01234567s]' '-g' '-Werror' '-ansi' '-pendantic' ; do
sed -i -e 's/\( \|=\)'"${e}"'\( \|$\)/\1/g' util/*/Makefile* \
|| die
done
}
src_compile() {
tc-export CC
export HOSTCFLAGS="${CFLAGS}"
for tool in ${coreboot_utils[*]} ; do
[[ -f util/${tool}/Makefile ]] || continue
emake -C util/${tool} V=1
done
}
src_install() {
exeinto /usr/sbin
for tool in ${coreboot_utils[*]} ; do
[[ -e util/${tool}/${tool} ]] && doexe util/${tool}/${tool}
[[ -e util/${tool}/${tool}.py ]] && doexe util/${tool}/${tool}.py
[[ -e util/${tool}/${tool}.8 ]] && doman util/${tool}/${tool}.8
[[ -d util/${tool}/man ]] && doman util/${tool}/man/*.[12345678]
done
}