Diff free42-2.5.24 with a free42-3.0.19

/usr/portage/app-emulation/free42/free42-3.0.19.ebuild 2023-10-09 14:52:28.724368331 +0300
1
# Copyright 1999-2021 Gentoo Authors
1
# Copyright 1999-2023 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 6
inherit toolchain-funcs
7 7

  
......
13 13

  
14 14
LICENSE="GPL-2"
15 15
SLOT="0"
16
KEYWORDS="amd64 x86"
16
KEYWORDS="~amd64 ~x86"
17 17
IUSE="+alsa"
18 18

  
19
DEPEND="dev-libs/atk
19
DEPEND="app-accessibility/at-spi2-core
20 20
	x11-libs/cairo
21 21
	x11-libs/gdk-pixbuf
22 22
	x11-libs/gtk+:3
......
28 28
S="${WORKDIR}/${MY_PV}"
29 29

  
30 30
PATCHES=(
31
	"${FILESDIR}/${PN}-2.5.16-fix-makefile.patch"
32
	"${FILESDIR}/${PN}-2.5.3-fix-build-intel-lib.patch"
31
	"${FILESDIR}/${PN}-3.0.14-fix-makefile.patch"
32
	"${FILESDIR}/${PN}-3.0.16-fix-build-intel-lib.patch"
33 33
)
34 34

  
35
src_prepare() {
36
	default
37
}
38

  
39 35
src_compile() {
40 36
	local myconf
41 37
	use alsa && myconf="AUDIO_ALSA=yes"
Thank you!