Diff avarice-2.14 with a avarice-2.14-r1

/usr/portage/dev-embedded/avarice/avarice-2.14-r1.ebuild 2023-10-09 14:52:29.348368347 +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
inherit flag-o-matic
6
inherit autotools flag-o-matic
7 7

  
8 8
DESCRIPTION="Interface for GDB to Atmel AVR JTAGICE in circuit emulator"
9 9
HOMEPAGE="https://avarice.sourceforge.net/"
......
13 13
SLOT="0"
14 14
KEYWORDS="~amd64 ~x86"
15 15

  
16
PATCHES=( "${FILESDIR}"/${P}-broken-__unused-macro.patch )
16
PATCHES=(
17
	"${FILESDIR}"/${P}-broken-__unused-macro.patch
18
	"${FILESDIR}"/${P}-implicit-function-declarations.patch
19
)
20

  
21
src_prepare() {
22
	default
23
	eautoreconf
24
}
17 25

  
18 26
src_configure() {
19 27
	# bug #788295
Thank you!