Diff usermode-utilities-20070815-r4 with a usermode-utilities-20070815-r5

/usr/portage/sys-apps/usermode-utilities/usermode-utilities-20070815-r5.ebuild 2023-10-09 14:52:35.416368500 +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 4
EAPI=7
......
10 10

  
11 11
LICENSE="GPL-2"
12 12
SLOT="0"
13
KEYWORDS="amd64 arm x86"
13
KEYWORDS="~amd64 ~arm ~x86"
14 14
IUSE="fuse"
15 15

  
16 16
RDEPEND="
......
21 21

  
22 22
S="${WORKDIR}"/tools-${PV}
23 23

  
24
src_prepare() {
25
	default
26

  
24
PATCHES=(
27 25
	# Merge previous patches with fix for bug #331099
28
	eapply "${FILESDIR}"/${P}-rollup.patch
26
	"${FILESDIR}"/${P}-rollup.patch
29 27
	# Fix owner of humfsify; bug #364531
30
	eapply "${FILESDIR}"/${P}-humfsify-owner.patch
31
	eapply "${FILESDIR}"/${P}-headers.patch #580816
28
	"${FILESDIR}"/${P}-humfsify-owner.patch
29
	"${FILESDIR}"/${P}-headers.patch #580816
30
	# Fix build /w clang-16, bug #898550
31
	"${FILESDIR}"/${PN}-fix-memset.patch
32
)
32 33

  
34
src_prepare() {
35
	default
33 36
	sed -i -e 's:-o \$(BIN):$(LDFLAGS) -o $(BIN):' "${S}"/*/Makefile || die "LDFLAGS sed failed"
34 37
	sed -i -e 's:-o \$@:$(LDFLAGS) -o $@:' "${S}"/moo/Makefile || die "LDFLAGS sed (moo) failed"
35 38
	if ! use fuse; then
Thank you!