Diff calf-0.90.3-r2 with a calf-9999

/usr/portage/media-plugins/calf/calf-9999.ebuild 2023-10-09 14:52:31.724368406 +0300
13 13
	EGIT_REPO_URI="https://github.com/calf-studio-gear/calf.git"
14 14
else
15 15
	SRC_URI="https://github.com/calf-studio-gear/calf/archive/${PV}.tar.gz -> ${P}.tar.gz"
16
	KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 x86"
16
	KEYWORDS="~amd64 ~x86"
17 17
fi
18 18

  
19 19
LICENSE="LGPL-2.1"
......
46 46
	"${FILESDIR}/${PN}-0.90.1-no-automagic.patch"
47 47
	"${FILESDIR}/${PN}-0.90.1-htmldir.patch"
48 48
	"${FILESDIR}/${PN}-0.90.1-desktop.patch"
49
	"${FILESDIR}/${PN}-0.90.3-fix-build-with-lld.patch"
49
	"${FILESDIR}/${PN}-9999-fix-build-with-lld.patch"
50 50
	"${FILESDIR}/${PN}-0.90.3-replace-std-bind2nd.patch"
51
	"${FILESDIR}/${PN}-0.90.3-clang-lerp_table_lookup_float_mask.patch"
52 51
)
53 52

  
54 53
src_prepare() {
......
56 55
	eautoreconf
57 56
}
58 57

  
59
src_configure()  {
58
src_configure() {
60 59
	# Upstream append -ffast-math by default, however since libtool links C++
61 60
	# shared libs with -nostdlib, this causes symbol resolution error for
62 61
	# __powidn2 when using compiler-rt. Disable fast math on compiler-rt until
Thank you!