Diff boehm-gc-8.2.2-r1 with a boehm-gc-8.2.4

/usr/portage/dev-libs/boehm-gc/boehm-gc-8.2.4.ebuild 2023-10-09 14:52:29.488368350 +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=8
5 5

  
6
# autotools for Clang 15 configure patch
7
inherit autotools multilib-minimal #libtool
6
inherit multilib-minimal libtool
8 7

  
9 8
MY_P="gc-${PV}"
10 9

  
......
18 17
# We've been using subslot 0 for these instead of "1.1".
19 18
SLOT="0"
20 19
# Upstream marked this version as "Pre-release"
21
KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
20
KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ~ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris"
22 21
IUSE="cxx +large static-libs +threads"
23 22

  
24 23
RDEPEND=">=dev-libs/libatomic_ops-7.4[${MULTILIB_USEDEP}]"
25 24
DEPEND="${RDEPEND}"
26 25
BDEPEND="virtual/pkgconfig"
27 26

  
28
PATCHES=(
29
	"${FILESDIR}"/${PN}-8.2.2-clang-15-configure.patch
30
)
31

  
32 27
src_prepare() {
33 28
	default
34 29

  
35 30
	# bug #594754
36
	#elibtoolize
37

  
38
	eautoreconf
31
	elibtoolize
39 32
}
40 33

  
41 34
multilib_src_configure() {
Thank you!