Diff mp3c-0.31-r1 with a mp3c-0.31-r2

/usr/portage/media-sound/mp3c/mp3c-0.31-r2.ebuild 2025-07-29 16:22:14.904457701 +0300
1
# Copyright 1999-2020 Gentoo Authors
1
# Copyright 1999-2025 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4
EAPI=7
4
EAPI=8
5 5

  
6
inherit flag-o-matic toolchain-funcs
6
inherit flag-o-matic toolchain-funcs autotools
7 7

  
8 8
DESCRIPTION="console based mp3 ripper, with cddb support"
9 9
HOMEPAGE="http://wspse.de/WSPse/Linux-MP3c.php3"
......
25 25
	vorbis? ( media-sound/vorbis-tools )"
26 26
BDEPEND="virtual/pkgconfig"
27 27

  
28
PATCHES=( "${FILESDIR}"/${PN}-buffer.patch )
28
PATCHES=(
29
	"${FILESDIR}"/${PN}-buffer.patch
30
	"${FILESDIR}"/${PN}-c23.patch
31
)
32

  
33
src_prepare() {
34
	default
35

  
36
	eautoreconf
37
}
29 38

  
30 39
src_configure() {
31 40
	append-libs $($(tc-getPKG_CONFIG) --libs ncurses)
Thank you!