media-sound/wavsplit: update EAPI 7 -> 8

Closes: https://bugs.gentoo.org/945262
Signed-off-by: Alexey Sokolov <alexey+gentoo@asokolov.org>
Part-of: https://github.com/gentoo/gentoo/pull/43918
Closes: https://github.com/gentoo/gentoo/pull/43918
Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
This commit is contained in:
Alexey Sokolov
2025-09-23 23:19:58 +01:00
committed by Miroslav Šulc
parent c69a91ab2f
commit 297dc7325c
2 changed files with 52 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
https://bugs.gentoo.org/945262
--- a/wavsplit.h
+++ b/wavsplit.h
@@ -113,7 +113,7 @@ static __inline__ short _LE_short (unsigned char *lp)
#endif
-static char *findchunk ();
+static char *findchunk (char *pstart, char *fourcc, size_t n);
static int readheader ();
static void Report (const char *Message, const char *Severity, int Verbose);
static int TokenOK (const char *Message, char **strPtr);

View File

@@ -0,0 +1,39 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit toolchain-funcs
DESCRIPTION="Simple command line tool to split WAV files"
HOMEPAGE="https://sourceforge.net/projects/wavsplit/"
SRC_URI="https://downloads.sourceforge.net/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
#-sparc, -amd64: 1.0: "Only supports PCM wave format" error message.
KEYWORDS="~amd64 -sparc ~x86"
PATCHES=(
"${FILESDIR}"/${P}-Makefile.patch
"${FILESDIR}"/${P}-large-files.patch
"${FILESDIR}"/${P}-64bit.patch
"${FILESDIR}"/${P}-gcc15.patch
)
src_prepare() {
default
emake clean
}
src_compile() {
emake CC="$(tc-getCC)"
}
src_test() { :; } #294302
src_install() {
dobin wav{ren,split}
doman wav{ren,split}.1
dodoc BUGS CHANGES CREDITS README{,.wavren}
}