Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-plugins/hexter/
Date: Fri, 18 Jun 2021 21:07:42
Message-Id: 1624050396.c6786b850eb2a7c33204665916e532ebb31cb876.soap@gentoo
1 commit: c6786b850eb2a7c33204665916e532ebb31cb876
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jun 18 21:06:36 2021 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Fri Jun 18 21:06:36 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6786b85
7
8 media-plugins/hexter: 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 media-plugins/hexter/hexter-1.1.0.ebuild | 6 ++++--
14 1 file changed, 4 insertions(+), 2 deletions(-)
15
16 diff --git a/media-plugins/hexter/hexter-1.1.0.ebuild b/media-plugins/hexter/hexter-1.1.0.ebuild
17 index 7ed0c13559b..c2ad330e29d 100644
18 --- a/media-plugins/hexter/hexter-1.1.0.ebuild
19 +++ b/media-plugins/hexter/hexter-1.1.0.ebuild
20 @@ -1,8 +1,10 @@
21 -# Copyright 1999-2019 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 +inherit toolchain-funcs
28 +
29 DESCRIPTION="Yamaha DX7 modeling DSSI plugin"
30 HOMEPAGE="http://smbolton.com/hexter.html"
31 SRC_URI="https://github.com/smbolton/${PN}/releases/download/version_${PV}/${P}.tar.bz2"
32 @@ -30,7 +32,7 @@ DEPEND="${RDEPEND}
33 "
34
35 src_configure() {
36 - PKG_CONFIG=pkg-config \
37 + PKG_CONFIG=$(tc-getPKG_CONFIG) \
38 econf $(use_with gtk2) \
39 $(use_with readline textui)
40 }