From fd511cef256c2e34df28fe5e4f3eb09dd1545ba2 Mon Sep 17 00:00:00 2001 From: Eli Schwartz Date: Mon, 6 May 2024 01:22:53 -0400 Subject: [PATCH] dev-games/libnw: remove highly confusing sed to "respect CC" But it's a generated automake Makefile.in, and the sed is removing every line containing "CC = @CC@", so it's puzzling that anyone ever thought to do this. It was originally added in gentoo-historical-2: 29 Jan 2009; Michael Sterrett libnw-1.30.02.ebuild: EAPI=2; respect CC And 15 years later it's the same (2003) tarball and the sed is decidedly not needed (nor ever was). Remove this bloaty junk. Signed-off-by: Eli Schwartz Signed-off-by: Sam James --- dev-games/libnw/libnw-1.30.02.ebuild | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/dev-games/libnw/libnw-1.30.02.ebuild b/dev-games/libnw/libnw-1.30.02.ebuild index f040c741f5879..385052cc6d6e1 100644 --- a/dev-games/libnw/libnw-1.30.02.ebuild +++ b/dev-games/libnw/libnw-1.30.02.ebuild @@ -3,7 +3,7 @@ EAPI=7 -inherit autotools toolchain-funcs +inherit autotools DESCRIPTION="Tools and libraries for NWN file manipulation" HOMEPAGE="https://sourceforge.net/projects/openknights" @@ -23,19 +23,9 @@ DOCS=( AUTHORS ChangeLog NEWS README README.tech TODO ) src_prepare() { default eautoreconf - - local f - while IFS="" read -d $'\0' -r f; do - einfo "Removing hardcoded CC/CXX from ${f}" - sed -i \ - -e '/^CC =/d' \ - -e '/^CXX =/d' \ - "${f}" || die - done < <(find "${S}" -name Makefile.in -type f -print0) } src_configure() { - tc-export CC CXX econf --disable-static }