Diff softgun-0.22 with a softgun-0.22-r1

/usr/portage/app-emulation/softgun/softgun-0.22-r1.ebuild 2023-10-09 14:52:28.732368331 +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 flag-o-matic toolchain-funcs
7 7

  
8 8
DESCRIPTION="ARM software emulator"
9
HOMEPAGE="http://softgun.sourceforge.net/"
9
HOMEPAGE="https://softgun.sourceforge.net/"
10 10
SRC_URI="mirror://sourceforge/${PN}/${P}.tgz"
11 11

  
12 12
LICENSE="GPL-2"
......
16 16
DEPEND="media-libs/alsa-lib"
17 17
RDEPEND="${DEPEND}"
18 18

  
19
PATCHES=( "${FILESDIR}"/${PN}-0.22-make.patch )
19
PATCHES=(
20
	"${FILESDIR}"/${PN}-0.22-make.patch
21
	"${FILESDIR}"/${PN}-0.22-fix-implicit-int.patch
22
	"${FILESDIR}"/${PN}-0.22-fix-declarations-with-type-mismatches.patch
23
)
20 24

  
21 25
src_configure() {
22 26
	append-cflags -fcommon
Thank you!