Diff popt-1.18 with a popt-1.19

/usr/portage/dev-libs/popt/popt-1.19.ebuild 2023-10-09 14:52:29.752368357 +0300
1 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
inherit flag-o-matic multilib-minimal libtool toolchain-funcs
7 7

  
......
16 16

  
17 17
RDEPEND="nls? ( >=virtual/libintl-0-r1[${MULTILIB_USEDEP}] )"
18 18
DEPEND="${RDEPEND}"
19
BDEPEND="nls? ( sys-devel/gettext )"
19
BDEPEND="nls? ( >=sys-devel/gettext-0.19.8 )"
20 20

  
21 21
src_prepare() {
22 22
	default
23

  
24
	# Unclear what the background to this is, perhaps
25
	# https://gitlab.exherbo.org/exherbo/arbor/-/commit/5545d22d3493279acf7a55246179f818ef22f5fa
23 26
	sed -i -e 's:lt-test1:test1:' tests/testit.sh || die
27

  
24 28
	elibtoolize
25 29
}
26 30

  
......
33 37
	fi
34 38

  
35 39
	local myeconfargs=(
40
		--disable-werror
36 41
		$(use_enable static-libs static)
37 42
		$(use_enable nls)
38 43
	)
44

  
39 45
	ECONF_SOURCE="${S}" econf "${myeconfargs[@]}"
40 46
}
41 47

  
42 48
multilib_src_install_all() {
43
	dodoc CHANGES README
49
	einstalldocs
50

  
44 51
	find "${ED}" -type f -name "*.la" -delete || die
45 52
}
Thank you!