Diff freexl-1.0.5 with a freexl-1.0.6

/usr/portage/dev-libs/freexl/freexl-1.0.6.ebuild 2024-12-25 14:59:48.363270071 +0300
1
# Copyright 1999-2021 Gentoo Authors
1
# Copyright 1999-2024 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=7
5 5

  
6
inherit libtool
7

  
6 8
DESCRIPTION="Simple XLS data extraction library"
7 9
HOMEPAGE="https://www.gaia-gis.it/fossil/freexl/index"
8 10
SRC_URI="https://www.gaia-gis.it/gaia-sins/${PN}-sources/${P}.tar.gz"
9 11

  
10 12
LICENSE="|| ( MPL-1.1 GPL-2+ LGPL-2.1+ )"
11 13
SLOT="0"
12
KEYWORDS="amd64 ~arm arm64 ppc ppc64 x86"
14
KEYWORDS="amd64 ~arm arm64 ppc ppc64 ~riscv x86"
13 15

  
14 16
DEPEND="virtual/libiconv"
15 17
RDEPEND="${DEPEND}"
16 18

  
19
src_prepare() {
20
	default
21
	elibtoolize
22
}
23

  
17 24
src_configure() {
18 25
	econf --disable-static
19 26
}
......
21 28
src_install() {
22 29
	default
23 30

  
24
	find "${D}" -name '*.la' -type f -delete || die
31
	find "${ED}" -name '*.la' -type f -delete || die
25 32
}
Thank you!