void-packages/srcpkgs/elfutils/template
oreo639 001b9bc896 elfutils: update to 0.192.
Fix bulid with gcc14 and musl
2025-03-17 15:22:14 -07:00

81 lines
2.4 KiB
Bash

# Template file for 'elfutils'
pkgname=elfutils
version=0.192
revision=1
build_style=gnu-configure
configure_args="--program-prefix=eu- --enable-debuginfod --enable-libdebuginfod"
hostmakedepends="pkg-config m4"
_devel_depends="bzip2-devel liblzma-devel zlib-devel libzstd-devel"
makedepends="${_devel_depends} libcurl-devel libarchive-devel sqlite-devel
libmicrohttpd-devel json-c-devel"
checkdepends="zstd bzip2 curl rpm cpio iproute2 procps-ng"
short_desc="Utilities to handle ELF object files"
maintainer="Érico Nogueira <ericonr@disroot.org>"
license="GPL-3.0-or-later"
homepage="https://sourceware.org/elfutils/"
changelog="https://sourceware.org/git/?p=elfutils.git;a=blob_plain;f=NEWS;hb=HEAD"
distfiles="https://sourceware.org/pub/elfutils/${version}/elfutils-${version}.tar.bz2"
checksum=616099beae24aba11f9b63d86ca6cc8d566d968b802391334c91df54eab416b4
# subpackages require explicit ordering
subpackages="debuginfod libdebuginfod libelf elfutils-devel"
CFLAGS="-Wno-error=deprecated-declarations" # curl 7.55+
if [ "$XBPS_TARGET_LIBC" = musl ]; then
makedepends+=" argp-standalone musl-fts-devel musl-obstack-devel"
# mainly warnings from using error.h
CFLAGS+=" -Wno-error"
# XXX: breaks some expected functionality
CFLAGS+=" -DFNM_EXTMATCH=0"
# warnings and avoid blowing the stack
CXXFLAGS="-Wno-error -Wl,-z,stack-size=2097152"
fi
do_check() {
# test failures also expected if building with debug disabled
make check ${makejobs} || {
if [ "$XBPS_TARGET_LIBC" = musl ]; then
msg_warn "Expected testsuite failure: using musl\n"
elif [ -z "$XBPS_DEBUG_PKGS" ]; then
msg_warn "Expected testsuite failure: debug is disabled\n"
else
msg_error "Testsuite failure\n"
fi
}
}
libdebuginfod_package() {
short_desc+=" - debuginfod library"
pkg_install() {
vmove "usr/lib/libdebuginfod*.so*"
vmove etc/profile.d
}
}
debuginfod_package() {
short_desc+=" - debuginfod programs"
pkg_install() {
vmove "usr/bin/debuginfod*"
vmove usr/share/man/man1/debuginfod-find.1
vmove usr/share/man/man8/debuginfod.8
}
}
libelf_package() {
short_desc+=" - runtime library"
pkg_install() {
vmove "usr/lib/*.so*"
}
}
elfutils-devel_package() {
depends="libelf>=${version}_${revision} libdebuginfod>=${version}_${revision}
${_devel_depends}"
short_desc+=" - development files"
pkg_install() {
vmove usr/include
vmove usr/lib/pkgconfig
vmove "usr/lib/*.a"
vmove usr/share/man/man3
}
}