Diff aewan-1.0.01-r1 with a aewan-1.0.01-r2

/usr/portage/media-gfx/aewan/aewan-1.0.01-r2.ebuild 2023-10-09 14:52:31.616368404 +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

  
8 8
DESCRIPTION="A curses-based editor for ASCII art"
9 9
HOMEPAGE="https://aewan.sourceforge.net/"
10
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
10
SRC_URI="mirror://sourceforge/project/${PN}/${PN}/${P}/${P}.tar.gz"
11 11

  
12 12
LICENSE="GPL-2"
13 13
SLOT="0"
......
20 20

  
21 21
RDEPEND="${DEPEND}"
22 22

  
23
PATCHES=(
24
		"${FILESDIR}/${P}-debug_aewl-warnings.patch"
25
		"${FILESDIR}/${P}-tinfo.patch"
26
		"${FILESDIR}/${P}-fix-incompatible-function-pointer-types.patch"
27
		"${FILESDIR}/${P}-fix-warnings.patch"
28
)
29

  
23 30
src_prepare() {
24 31
	default
25
	eapply \
26
		"${FILESDIR}/${P}-debug_aewl-warnings.patch" \
27
		"${FILESDIR}/${P}-tinfo.patch"
28 32
	eautoreconf
29 33
}
Thank you!