Diff regex-markup-0.10.0-r1 with a regex-markup-0.10.0-r2

/usr/portage/app-misc/regex-markup/regex-markup-0.10.0-r2.ebuild 2023-10-09 14:52:28.816368333 +0300
1
# Copyright 1999-2017 Gentoo Foundation
1
# Copyright 1999-2023 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4
EAPI=6
4
EAPI=8
5 5

  
6
inherit flag-o-matic
6
inherit flag-o-matic autotools
7 7

  
8 8
DESCRIPTION="A tool to color syslog files as well"
9 9
HOMEPAGE="http://www.nongnu.org/regex-markup/"
......
11 11

  
12 12
LICENSE="GPL-2"
13 13
SLOT="0"
14
KEYWORDS="amd64 ppc x86"
14
KEYWORDS="~amd64 ~ppc ~x86"
15 15
IUSE="examples nls"
16 16

  
17 17
PATCHES=(
18
	"${FILESDIR}/${P}-locale.patch"
18
	"${FILESDIR}"/${P}-locale.patch
19
	"${FILESDIR}"/${PN}-0.10.0-r2-configure.patch
19 20
)
20 21

  
22
src_prepare() {
23
	default
24
	eautoreconf
25
}
26

  
21 27
src_configure() {
22 28
	# fix #570960 by restoring pre-GCC5 inline semantics
23 29
	append-cflags -std=gnu89
24 30

  
25
	econf \
26
		--enable-largefile \
31
	local myconf=(
32
		--enable-largefile
27 33
		$(use_enable nls)
34
	)
35
	econf "${myconf[@]}"
28 36
}
29 37

  
30 38
src_install() {
Thank you!