Diff iverilog-11.0 with a iverilog-12.0

/usr/portage/sci-electronics/iverilog/iverilog-12.0.ebuild 2023-10-09 14:52:35.044368490 +0300
1 1
# Copyright 1999-2023 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4
EAPI=7
4
EAPI=8
5 5

  
6 6
inherit autotools
7 7

  
......
36 36
	sys-devel/flex
37 37
"
38 38

  
39
PATCHES=(
40
	"${FILESDIR}/${P}-autoconf-2.70.patch" #749870
41
)
42

  
43 39
src_prepare() {
44 40
	default
45 41

  
......
51 47
	eautoconf
52 48

  
53 49
	# Precompiling lexor_keyword.gperf
54
	gperf -o -i 7 -C -k 1-4,6,9,\$ -H keyword_hash -N check_identifier -t ./lexor_keyword.gperf > lexor_keyword.cc || die
50
	gperf -o -i 7 -C -k 1-4,6,9,\$ -H keyword_hash -N check_identifier -t ./lexor_keyword.gperf \
51
		> lexor_keyword.cc || die
55 52
	# Precompiling vhdlpp/lexor_keyword.gperf
56 53
	cd vhdlpp || die
57
	gperf -o -i 7 --ignore-case -C -k 1-4,6,9,\$ -H keyword_hash -N check_identifier -t ./lexor_keyword.gperf > lexor_keyword.cc || die
54
	gperf -o -i 7 --ignore-case -C -k 1-4,6,9,\$ -H keyword_hash -N check_identifier -t ./lexor_keyword.gperf \
55
		> lexor_keyword.cc || die
58 56
}
59 57

  
60 58
src_install() {
Thank you!