gentoo-ebuilds/sys-devel/dwz/dwz-9999.ebuild
idealseal 3281a6d854
sys-devel/dwz: fix prefix installation
Otherwise files would be installed outside of the prefix.

Closes: https://bugs.gentoo.org/955951
Signed-off-by: idealseal <realidealseal@protonmail.com>
Part-of: https://github.com/gentoo/gentoo/pull/41110
Closes: https://github.com/gentoo/gentoo/pull/41110
Signed-off-by: Sam James <sam@gentoo.org>
2025-05-21 17:43:58 +01:00

71 lines
1.6 KiB
Bash

# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit toolchain-funcs
DESCRIPTION="DWARF optimization and duplicate removal tool"
HOMEPAGE="https://sourceware.org/dwz"
if [[ ${PV} == 9999 ]] ; then
EGIT_REPO_URI="https://sourceware.org/git/dwz.git"
inherit git-r3
else
SRC_URI="https://sourceware.org/ftp/dwz/releases/${P}.tar.xz"
S="${WORKDIR}/${PN}"
KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86"
fi
LICENSE="GPL-2+ GPL-3+"
SLOT="0"
IUSE="test"
RESTRICT="!test? ( test )"
RDEPEND="
dev-libs/elfutils
dev-libs/xxhash
elibc_musl? (
>=sys-libs/error-standalone-2.0
sys-libs/obstack-standalone
)
"
DEPEND="${RDEPEND}"
BDEPEND="
test? (
dev-debug/gdb
dev-libs/elfutils[utils]
dev-util/dejagnu
)
virtual/pkgconfig
"
src_prepare() {
default
tc-export CC
}
src_compile() {
export LANG=C LC_ALL=C # grep find nothing for non-ascii locales
local current_binutils_path=$(binutils-config -B)
export READELF="${current_binutils_path}/readelf"
tc-export PKG_CONFIG READELF
export LIBS="-lelf"
if use elibc_musl; then
export CFLAGS="${CFLAGS} $(${PKG_CONFIG} --cflags obstack-standalone error-standalone)"
export LIBS="${LIBS} $(${PKG_CONFIG} --libs obstack-standalone error-standalone)"
fi
emake CFLAGS="${CFLAGS}" LIBS="${LIBS}" srcdir="${S}" prefix="${EPREFIX}/usr"
}
src_test() {
emake CFLAGS="${CFLAGS}" LIBS="${LIBS}" srcdir="${S}" prefix="${EPREFIX}/usr" check
}
src_install() {
emake DESTDIR="${D}" CFLAGS="${CFLAGS}" LIBS="${LIBS}" srcdir="${S}" prefix="${EPREFIX}/usr" install
}