diff options
author | Sam James <sam@gentoo.org> | 2021-01-22 05:12:27 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-01-22 05:21:09 +0000 |
commit | a60867b3db254b7b257c3edd7a82ea98b2f0d4f4 (patch) | |
tree | 036f9f3851f0dfb464c59d60b03031297b604ba0 /media-sound/aucatctl | |
parent | media-sound/sndio: minor fixups (diff) | |
download | gentoo-a60867b3db254b7b257c3edd7a82ea98b2f0d4f4.tar.gz gentoo-a60867b3db254b7b257c3edd7a82ea98b2f0d4f4.tar.bz2 gentoo-a60867b3db254b7b257c3edd7a82ea98b2f0d4f4.zip |
media-sound/aucatctl: respect CC
Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'media-sound/aucatctl')
-rw-r--r-- | media-sound/aucatctl/aucatctl-0.1.ebuild | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/media-sound/aucatctl/aucatctl-0.1.ebuild b/media-sound/aucatctl/aucatctl-0.1.ebuild index 1357fbb643e4..a04a482f9d15 100644 --- a/media-sound/aucatctl/aucatctl-0.1.ebuild +++ b/media-sound/aucatctl/aucatctl-0.1.ebuild @@ -1,11 +1,14 @@ -# Copyright 2020 Gentoo Authors +# Copyright 2020-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 +inherit toolchain-funcs + DESCRIPTION="A tool for controlling aucat and/or sndiod volume through MIDI" HOMEPAGE="http://www.sndio.org/" SRC_URI="http://www.sndio.org/${P}.tar.gz" + LICENSE="ISC" SLOT="0" KEYWORDS="~amd64" @@ -25,3 +28,8 @@ src_prepare() { -e 's?LDADD = -lsndio?LDADD = -lbsd -lsndio?' \ Makefile || die "Failed modifying Makefile" } + +src_compile() { + tc-export CC + default +} |