Diff libnetfilter_conntrack-1.0.9 with a libnetfilter_conntrack-1.0.9-r1

/usr/portage/net-libs/libnetfilter_conntrack/libnetfilter_conntrack-1.0.9-r1.ebuild 2023-10-09 14:52:34.488368476 +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
inherit linux-info verify-sig
6
inherit autotools linux-info verify-sig
7 7

  
8 8
DESCRIPTION="Programming interface (API) to the in-kernel connection tracking state table"
9 9
HOMEPAGE="https://www.netfilter.org/projects/libnetfilter_conntrack/"
......
25 25

  
26 26
PATCHES=(
27 27
	"${FILESDIR}"/${P}-musl.patch
28
	"${FILESDIR}"/${PN}-1.0.9-configure-clang16.patch
28 29
)
29 30

  
30 31
pkg_setup() {
......
44 45
	check_extra_config
45 46
}
46 47

  
48
src_prepare() {
49
	default
50

  
51
	# autoreconf only for clang 16 configure patch
52
	eautoreconf
53
}
54

  
47 55
src_install() {
48 56
	default
49 57

  
Thank you!