Diff libfstrcmp-0.7-r1 with a libfstrcmp-0.7-r3

/usr/portage/dev-libs/libfstrcmp/libfstrcmp-0.7-r3.ebuild 2023-10-09 14:52:29.516368351 +0300
1
# Copyright 1999-2021 Gentoo Authors
1
# Copyright 1999-2022 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="Make fuzzy comparisons of strings and byte arrays"
9 9
HOMEPAGE="http://fstrcmp.sourceforge.net/"
10
SRC_URI="http://fstrcmp.sourceforge.net/fstrcmp-${PV}.D001.tar.gz -> ${P}.tar.gz"
11
S="${WORKDIR}/fstrcmp-${PV}.D001"
10 12

  
11 13
LICENSE="GPL-3+"
12
IUSE="doc static-libs test"
13 14
SLOT="0"
15
IUSE="doc static-libs test"
16
KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
14 17

  
15
SRC_URI="http://fstrcmp.sourceforge.net/fstrcmp-0.7.D001.tar.gz -> ${P}.tar.gz"
16
S="${WORKDIR}/fstrcmp-0.7.D001"
17
KEYWORDS="amd64 ~arm arm64 x86"
18

  
19
DEPEND="
18
BDEPEND="
20 19
	sys-apps/groff
21 20
	doc? ( app-text/ghostscript-gpl )
22 21
	test? ( app-text/ghostscript-gpl )
23 22
"
23

  
24 24
RESTRICT="!test? ( test )"
25 25

  
26
PATCHES=(
27
	"${FILESDIR}"/${P}-libtool.patch # 778371
28
	"${FILESDIR}"/${P}-docdir.patch # 853133
29
)
30

  
26 31
src_prepare() {
27 32
	default
28 33
	eautoreconf
Thank you!