Diff ta-lib-0.4.0 with a ta-lib-0.4.0-r1

/usr/portage/sci-libs/ta-lib/ta-lib-0.4.0-r1.ebuild 2023-10-09 14:52:35.100368492 +0300
1
# Copyright 1999-2020 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

  
......
15 15

  
16 16
S="${WORKDIR}/${PN}"
17 17

  
18
PATCHES=( "${FILESDIR}"/${P}-asneeded.patch )
18
PATCHES=(
19
	"${FILESDIR}"/${P}-asneeded.patch
20
	"${FILESDIR}"/${P}-slibtool.patch # 790770
21
)
19 22

  
20 23
src_prepare() {
21 24
	default
22
	mv configure.{in,ac} || die
23
	eautoreconf
24
}
25 25

  
26
src_configure() {
27
	econf --disable-static
26
	eautoreconf
28 27
}
29 28

  
30 29
src_test() {
......
34 33
src_install() {
35 34
	default
36 35

  
37
	# no static archives
38 36
	find "${D}" -name '*.la' -delete || die
39 37
}
Thank you!