Diff libebook-0.1.3-r2 with a libebook-0.1.3-r3

/usr/portage/app-text/libebook/libebook-0.1.3-r3.ebuild 2023-10-09 14:52:28.880368335 +0300
1
# Copyright 1999-2022 Gentoo Authors
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
MY_P="libe-book-${PV}"
7
inherit autotools flag-o-matic
7
inherit autotools
8 8

  
9 9
DESCRIPTION="Library parsing various ebook formats"
10 10
HOMEPAGE="https://sourceforge.net/projects/libebook/"
11 11
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.bz2"
12
S="${WORKDIR}/${MY_P}"
12 13

  
13 14
LICENSE="MPL-2.0"
14 15
SLOT="0"
15
KEYWORDS="amd64 ~arm arm64 ~loong ~ppc64 ~riscv x86"
16
KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
16 17
IUSE="doc test tools"
17 18

  
18 19
RESTRICT="!test? ( test )"
......
34 35
	test? ( dev-util/cppunit )
35 36
"
36 37

  
37
S="${WORKDIR}/${MY_P}"
38

  
39 38
PATCHES=( "${FILESDIR}/${P}-icu-68.patch" )
40 39

  
41 40
src_prepare() {
......
45 44

  
46 45
src_configure() {
47 46
	local myeconfargs=(
48
		--disable-static
49 47
		--disable-werror
50 48
		$(use_with doc docs)
51 49
		$(use_enable test tests)
Thank you!