Diff normaliz-3.10.1 with a normaliz-3.10.5

/usr/portage/sci-mathematics/normaliz/normaliz-3.10.5.ebuild 2025-07-29 16:22:17.344467791 +0300
1
# Copyright 1999-2023 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 autotools toolchain-funcs
6
inherit toolchain-funcs
7 7

  
8 8
DESCRIPTION="Tool for computations in affine monoids and more"
9 9
HOMEPAGE="https://www.normaliz.uni-osnabrueck.de/"
......
11 11

  
12 12
LICENSE="GPL-3"
13 13
SLOT="0/3"
14
KEYWORDS="amd64 ~arm ~riscv ~x86 ~amd64-linux ~x86-linux"
14
KEYWORDS="~amd64 ~arm ~riscv ~x86 ~amd64-linux ~x86-linux"
15 15
IUSE="doc extras nauty openmp"
16 16

  
17 17
RDEPEND="
......
32 32
	[[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp
33 33
}
34 34

  
35
src_prepare() {
36
	# Fix C standard compliance.
37
	default
38
	eautoreconf
39
}
40

  
41 35
src_configure() {
42 36
	# flint (and arb, which doesn't make an appearance in ./configure --help)
43 37
	# is somehow connected to e-antic, which we do not yet package. Likewise
Thank you!