Diff freeipmi-1.6.11 with a freeipmi-1.6.15

/usr/portage/sys-libs/freeipmi/freeipmi-1.6.15.ebuild 2025-02-03 17:39:35.942678037 +0300
1
# Copyright 1999-2024 Gentoo Authors
1
# Copyright 1999-2025 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 toolchain-funcs
6
inherit flag-o-matic toolchain-funcs
7 7

  
8 8
MY_P="${P/_/.}"
9 9
DESCRIPTION="Provides Remote-Console and System Management Software as per IPMI v1.5/2.0"
......
13 13

  
14 14
LICENSE="GPL-3"
15 15
SLOT="0"
16
KEYWORDS="amd64 ~arm64 hppa ~ppc64 x86"
16
KEYWORDS="~amd64 ~arm64 ~hppa ~ppc64 ~x86"
17 17
IUSE="debug doc nagios without-root"
18 18

  
19 19
RDEPEND="dev-libs/libgcrypt:="
......
29 29
	)
30 30
"
31 31

  
32
PATCHES=(
33
	"${FILESDIR}"/${PN}-1.6.10-header-fixes.patch
34
)
35

  
36 32
src_configure() {
33
	# bug #943813
34
	append-cflags -std=gnu17
35

  
37 36
	local myeconfargs=(
38 37
		$(use_enable debug)
39 38
		$(use_enable doc)
Thank you!