Diff stfl-0.24-r4 with a stfl-0.24-r5

/usr/portage/dev-libs/stfl/stfl-0.24-r5.ebuild 2024-12-25 14:59:48.383270072 +0300
1
# Copyright 1999-2023 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
PYTHON_COMPAT=( python3_{9..11} )
6
PYTHON_COMPAT=( python3_{10..11} )
7 7
GENTOO_DEPEND_ON_PERL=no
8 8
inherit perl-module python-r1 toolchain-funcs
9 9

  
......
28 28
	python? ( >=dev-lang/swig-1.3.40 )
29 29
	ruby? ( dev-lang/swig )
30 30
"
31
BDEPEND="virtual/pkgconfig"
31 32
RESTRICT="test"  # Upstream does not provide tests #730112
32 33

  
33 34
PATCHES=(
......
35 36
	"${FILESDIR}/${PN}-0.22-soname-symlink.patch"
36 37
	"${FILESDIR}/${PN}-0.22-ruby-sharedlib.patch"
37 38
	"${FILESDIR}/${PN}-0.22-pc-libdir.patch"
39
	"${FILESDIR}/${PN}-0.24-ncurses-widechar.patch"
38 40
)
39 41

  
40 42
src_prepare() {
......
72 74
src_configure() { :; }
73 75

  
74 76
src_compile() {
75
	emake CC="$(tc-getCC)" AR="$(tc-getAR)" RANLIB="$(tc-getRANLIB)"
77
	emake CC="$(tc-getCC)" AR="$(tc-getAR)" RANLIB="$(tc-getRANLIB)" PKG_CONFIG="$(tc-getPKG_CONFIG)"
76 78

  
77 79
	if use python ; then
78 80
		local BUILD_DIR="${S}/python"
Thank you!