mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
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:
committed by
Miroslav Šulc
parent
c69a91ab2f
commit
297dc7325c
13
media-sound/wavsplit/files/wavsplit-1.2.1-gcc15.patch
Normal file
13
media-sound/wavsplit/files/wavsplit-1.2.1-gcc15.patch
Normal 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);
|
||||
39
media-sound/wavsplit/wavsplit-1.2.1-r3.ebuild
Normal file
39
media-sound/wavsplit/wavsplit-1.2.1-r3.ebuild
Normal 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}
|
||||
}
|
||||
Reference in New Issue
Block a user