Diff refind-0.13.2 with a refind-0.13.3.1

/usr/portage/sys-boot/refind/refind-0.13.3.1.ebuild 2023-10-09 14:52:35.448368500 +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
inherit multiprocessing toolchain-funcs
6
inherit toolchain-funcs secureboot
7 7

  
8 8
DESCRIPTION="The UEFI Boot Manager by Rod Smith"
9 9
HOMEPAGE="https://www.rodsbooks.com/refind/"
......
11 11

  
12 12
LICENSE="BSD GPL-2 GPL-3 FDL-1.3"
13 13
SLOT="0"
14
KEYWORDS="amd64 x86"
14
KEYWORDS="~amd64 ~x86"
15 15
FS_USE="btrfs +ext2 +ext4 hfs +iso9660 ntfs reiserfs"
16 16
IUSE="${FS_USE} custom-cflags doc"
17 17

  
......
19 19

  
20 20
DOCS=( README.txt )
21 21

  
22
PATCHES=(
23
	"${FILESDIR}"/${P}-gnuefi-3.0.14.patch
24
)
25

  
26 22
pkg_pretend() {
27 23
	if use custom-cflags; then
28 24
		ewarn
......
43 39
		export EFIARCH=x64
44 40
		export BUILDARCH=x86_64
45 41
	fi
42
	secureboot_pkg_setup
46 43
}
47 44

  
48 45
src_prepare() {
......
115 112
	dosbin "mkrlconf"
116 113
	dosbin "mvrefind"
117 114
	dosbin "refind-mkdefault"
115

  
116
	secureboot_auto_sign --in-place
118 117
}
119 118

  
120 119
pkg_postinst() {
Thank you!