Diff scummvm-2.6.0-r1 with a scummvm-2.6.1

/usr/portage/games-engines/scummvm/scummvm-2.6.1.ebuild 2023-10-09 14:52:31.092368390 +0300
13 13
else
14 14
	SRC_URI="https://downloads.scummvm.org/frs/scummvm/${PV}/${P}.tar.xz"
15 15
	KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~riscv ~x86"
16
	S="${WORKDIR}/${PN}-${P}"
16
	S=${WORKDIR}/${P/_/}
17 17
fi
18 18

  
19 19
LICENSE="GPL-2+ LGPL-2.1 BSD GPL-3-with-font-exception"
20 20
SLOT="0"
21
IUSE="a52 aac alsa debug flac fluidsynth fribidi gif +gtk jpeg lua mpeg2 mp3 +net opengl png sndio speech theora truetype unsupported vorbis zlib"
21
IUSE="
22
	a52 aac alsa debug flac fluidsynth fribidi gif +gtk jpeg lua mpeg2
23
	mp3 +net opengl png sndio speech theora truetype unsupported vorbis
24
	zlib
25
"
22 26
RESTRICT="test"  # it only looks like there's a test there #77507
23 27

  
24
RDEPEND="
28
DEPEND="
25 29
	>=media-libs/libsdl2-2.0.0[sound,joystick,video]
26 30
	a52? ( media-libs/a52dec )
27 31
	aac? ( media-libs/faad2 )
......
59 63
	)
60 64
	zlib? ( sys-libs/zlib:= )
61 65
"
62
DEPEND="${RDEPEND}"
66
RDEPEND="
67
	${DEPEND}
68
"
63 69
BDEPEND="
64 70
	app-arch/xz-utils
65 71
	truetype? ( virtual/pkgconfig )
66 72
	x86? ( dev-lang/nasm )
67 73
"
68 74

  
69
S="${WORKDIR}/${P/_/}"
70

  
71 75
src_prepare() {
72 76
	default
73 77

  
......
121 125
		$(use_enable x86 nasm)
122 126
	)
123 127
	echo "configure ${myconf[@]}"
124
	# NOT AN AUTOCONF SCRIPT SO DONT CALL ECONF
128
	# not an autoconf script, so don't call econf
125 129
	SDL_CONFIG="sdl2-config" \
126 130
	./configure "${myconf[@]}" ${EXTRA_ECONF} || die
127 131
}
Thank you!