Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/Filesys-SmbClient/
Date: Fri, 18 Jun 2021 21:07:42
Message-Id: 1624050393.f0da870f170fa4a22b31fba321416cf35d43f6fa.soap@gentoo
1 commit: f0da870f170fa4a22b31fba321416cf35d43f6fa
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jun 18 21:06:33 2021 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Fri Jun 18 21:06:33 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0da870f
7
8 dev-perl/Filesys-SmbClient: respect ${PKG_CONFIG}
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11 Signed-off-by: David Seifert <soap <AT> gentoo.org>
12
13 dev-perl/Filesys-SmbClient/Filesys-SmbClient-3.200.0-r4.ebuild | 8 ++++----
14 1 file changed, 4 insertions(+), 4 deletions(-)
15
16 diff --git a/dev-perl/Filesys-SmbClient/Filesys-SmbClient-3.200.0-r4.ebuild b/dev-perl/Filesys-SmbClient/Filesys-SmbClient-3.200.0-r4.ebuild
17 index adf20536a0e..adf0d3316b0 100644
18 --- a/dev-perl/Filesys-SmbClient/Filesys-SmbClient-3.200.0-r4.ebuild
19 +++ b/dev-perl/Filesys-SmbClient/Filesys-SmbClient-3.200.0-r4.ebuild
20 @@ -1,11 +1,11 @@
21 -# Copyright 1999-2020 Gentoo Authors
22 +# Copyright 1999-2021 Gentoo Authors
23 # Distributed under the terms of the GNU General Public License v2
24
25 EAPI=7
26
27 DIST_AUTHOR=ALIAN
28 DIST_VERSION=3.2
29 -inherit perl-module autotools
30 +inherit perl-module autotools toolchain-funcs
31
32 DESCRIPTION="Provide Perl API for libsmbclient.so"
33
34 @@ -36,8 +36,8 @@ src_prepare() {
35 eautoreconf
36 }
37 src_configure() {
38 - GENTOO_INC_SMBCLIENT="$( pkg-config --variable=includedir smbclient )" \
39 - GENTOO_LIB_SMBCLIENT="$( pkg-config --variable=libdir smbclient )" \
40 + GENTOO_INC_SMBCLIENT="$( $(tc-getPKG_CONFIG) --variable=includedir smbclient )" \
41 + GENTOO_LIB_SMBCLIENT="$( $(tc-getPKG_CONFIG) --variable=libdir smbclient )" \
42 perl-module_src_configure
43 }
44 src_compile() {