Diff foremost-1.5.7-r3 with a foremost-1.5.7-r4

/usr/portage/app-forensics/foremost/foremost-1.5.7-r4.ebuild 2023-10-09 14:52:28.748368331 +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=7
5 5

  
6
inherit toolchain-funcs
6
inherit toolchain-funcs prefix
7 7

  
8 8
DESCRIPTION="Console program to recover files based on their headers and footers"
9 9
HOMEPAGE="http://foremost.sourceforge.net/"
......
13 13

  
14 14
LICENSE="public-domain"
15 15
SLOT="0"
16
KEYWORDS="amd64 ppc x86"
16
KEYWORDS="amd64 ~ppc x86 ~arm64-macos ~x64-macos"
17 17
IUSE=""
18 18

  
19
PATCHES=(
20
	"${FILESDIR}/${PN}-1.4-config-location.patch"
21
	"${FILESDIR}/${PN}-1.5.7-format-security.patch" # bug 521038
22
	"${FILESDIR}/${PN}-1.5.7-set-but-unused.patch" # bug 706886
23
	"${FILESDIR}/${PN}-1.5.7-fno-common.patch" # bug 722196
24
	"${FILESDIR}/${PN}-1.5.7-musl.patch" # bug 830473
25
)
19
src_prepare() {
20
	PATCHES=(
21
		"${FILESDIR}/${PN}-1.4-config-location.patch"
22
		"${FILESDIR}/${PN}-1.5.7-format-security.patch" # bug 521038
23
		"${FILESDIR}/${PN}-1.5.7-set-but-unused.patch" # bug 706886
24
		"${FILESDIR}/${PN}-1.5.7-fno-common.patch" # bug 722196
25
		"${FILESDIR}/${PN}-1.5.7-musl.patch" # bug 830473
26
	)
27

  
28
	default
29
	hprefixify config.c
30
}
26 31

  
27 32
src_compile() {
28 33
	emake \
Thank you!