mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-07-26 00:45:46 +02:00
Bespoke configure demands bespoke methods. Also prepare for C23 Closes: https://bugs.gentoo.org/947767 Signed-off-by: NHOrus <jy6x2b32pie9@yahoo.com> Closes: https://github.com/gentoo/gentoo/pull/40068 Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
39 lines
937 B
Bash
39 lines
937 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit toolchain-funcs
|
|
|
|
DESCRIPTION="An alternative to the FLAC reference encoder"
|
|
HOMEPAGE="https://flake-enc.sourceforge.net"
|
|
SRC_URI="https://downloads.sourceforge.net/flake-enc/${P}.tar.bz2"
|
|
|
|
LICENSE="LGPL-2.1"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 x86"
|
|
|
|
PATCHES=("${FILESDIR}"/${P}-make-instability.patch)
|
|
|
|
src_configure() {
|
|
# NIH configure script that uses hardcoded cc for discovery
|
|
# https://bugs.gentoo.org/947767
|
|
sed -i -e "s:cc=\"gcc\":cc=\"$(tc-getCC)\":" configure \
|
|
|| die failed to patch CC
|
|
|
|
./configure \
|
|
--ar="$(tc-getAR)" \
|
|
--cc="$(tc-getCC)" \
|
|
--ranlib="$(tc-getRANLIB)" \
|
|
--prefix="${EPREFIX}"/usr \
|
|
--disable-opts \
|
|
--disable-debug \
|
|
--disable-strip || die "configure failed"
|
|
}
|
|
|
|
src_install() {
|
|
dobin flake/flake
|
|
doheader libflake/flake.h
|
|
dolib.a libflake/libflake.a
|
|
dodoc Changelog README
|
|
}
|