Diff gbsplay-0.0.94 with a gbsplay-0.0.94-r1

/usr/portage/media-sound/gbsplay/gbsplay-0.0.94-r1.ebuild 2023-10-09 14:52:31.776368408 +0300
1
# Copyright 1999-2022 Gentoo Authors
1
# Copyright 1999-2023 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=8
5 5

  
6 6
PLOCALES="de en"
7
inherit plocale toolchain-funcs
7
inherit edo plocale toolchain-funcs
8 8

  
9 9
DESCRIPTION="Nintendo Gameboy sound player for GBS format"
10 10
HOMEPAGE="https://www.cgarbs.de/gbsplay.en.html"
......
33 33
	"${FILESDIR}/${P}-no-install-desktop-mime.patch"
34 34
)
35 35

  
36
src_prepare() {
37
	default
38

  
39
	# Don't clobber toolchain defaults
40
	sed -i -e 's:-D_FORTIFY_SOURCE=2::' configure || die
41
}
42

  
36 43
src_configure() {
37 44
	tc-export AR CC
38 45

  
......
51 58
	)
52 59

  
53 60
	# No econf, because "unknown option '--libdir=/usr/lib64"
54
	./configure ${myconfargs[@]} || die "Configure failed."
61
	edo ./configure "${myconfargs[@]}"
55 62
}
56 63

  
57 64
src_compile() {
58
	emake CC="$(tc-getCC)" SPLINT="true"
65
	emake CC="$(tc-getCC)" SPLINT="true" V=1
59 66
}
60 67

  
61 68
src_install() {
Thank you!