diff options
author | NHOrus <jy6x2b32pie9@yahoo.com> | 2025-01-09 16:09:39 +0400 |
---|---|---|
committer | Miroslav Šulc <fordfrog@gentoo.org> | 2025-01-10 10:09:00 +0100 |
commit | 47a80abd5c3fdd6ed00b2085324f60f093f031e5 (patch) | |
tree | 9d09cf9bd69b96a46bed91661bdecbe17c1208e4 /media-sound/flake/flake-0.11.ebuild | |
parent | dev-vcs/stgit: version bump 2.5.0, drop 2.4.12 (diff) | |
download | gentoo-47a80abd5c3fdd6ed00b2085324f60f093f031e5.tar.gz gentoo-47a80abd5c3fdd6ed00b2085324f60f093f031e5.tar.bz2 gentoo-47a80abd5c3fdd6ed00b2085324f60f093f031e5.zip |
media-sound/flake: fix direct calls to cc, impl. declarations
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>
Diffstat (limited to 'media-sound/flake/flake-0.11.ebuild')
-rw-r--r-- | media-sound/flake/flake-0.11.ebuild | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/media-sound/flake/flake-0.11.ebuild b/media-sound/flake/flake-0.11.ebuild deleted file mode 100644 index 995a85be4f49..000000000000 --- a/media-sound/flake/flake-0.11.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# 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 - ./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 -} |