diff options
author | Sam James <sam@gentoo.org> | 2021-06-18 23:06:36 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2021-06-18 23:06:36 +0200 |
commit | c6786b850eb2a7c33204665916e532ebb31cb876 (patch) | |
tree | 8ac5debea7b403565b862b7a5e56a02be8dc3da9 /media-plugins | |
parent | dev-perl/Filesys-SmbClient: respect ${PKG_CONFIG} (diff) | |
download | gentoo-c6786b850eb2a7c33204665916e532ebb31cb876.tar.gz gentoo-c6786b850eb2a7c33204665916e532ebb31cb876.tar.bz2 gentoo-c6786b850eb2a7c33204665916e532ebb31cb876.zip |
media-plugins/hexter: respect ${PKG_CONFIG}
Signed-off-by: Sam James <sam@gentoo.org>
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'media-plugins')
-rw-r--r-- | media-plugins/hexter/hexter-1.1.0.ebuild | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/media-plugins/hexter/hexter-1.1.0.ebuild b/media-plugins/hexter/hexter-1.1.0.ebuild index 7ed0c13559b1..c2ad330e29d9 100644 --- a/media-plugins/hexter/hexter-1.1.0.ebuild +++ b/media-plugins/hexter/hexter-1.1.0.ebuild @@ -1,8 +1,10 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 +inherit toolchain-funcs + DESCRIPTION="Yamaha DX7 modeling DSSI plugin" HOMEPAGE="http://smbolton.com/hexter.html" SRC_URI="https://github.com/smbolton/${PN}/releases/download/version_${PV}/${P}.tar.bz2" @@ -30,7 +32,7 @@ DEPEND="${RDEPEND} " src_configure() { - PKG_CONFIG=pkg-config \ + PKG_CONFIG=$(tc-getPKG_CONFIG) \ econf $(use_with gtk2) \ $(use_with readline textui) } |