From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3951F13835A for ; Fri, 22 Jan 2021 05:21:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7611EE0896; Fri, 22 Jan 2021 05:21:27 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 61A79E0896 for ; Fri, 22 Jan 2021 05:21:27 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8ABC43410D1 for ; Fri, 22 Jan 2021 05:21:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B95724A6 for ; Fri, 22 Jan 2021 05:21:23 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1611292869.a60867b3db254b7b257c3edd7a82ea98b2f0d4f4.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/aucatctl/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/aucatctl/aucatctl-0.1.ebuild X-VCS-Directories: media-sound/aucatctl/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: a60867b3db254b7b257c3edd7a82ea98b2f0d4f4 X-VCS-Branch: master Date: Fri, 22 Jan 2021 05:21:23 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 356ef3b5-9341-4cd3-91af-baaee367ab5d X-Archives-Hash: 1a8c1b9fd26818b77b89b9c73e3db000 commit: a60867b3db254b7b257c3edd7a82ea98b2f0d4f4 Author: Sam James gentoo org> AuthorDate: Fri Jan 22 05:12:27 2021 +0000 Commit: Sam James gentoo org> CommitDate: Fri Jan 22 05:21:09 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a60867b3 media-sound/aucatctl: respect CC Package-Manager: Portage-3.0.14, Repoman-3.0.2 Signed-off-by: Sam James gentoo.org> media-sound/aucatctl/aucatctl-0.1.ebuild | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/media-sound/aucatctl/aucatctl-0.1.ebuild b/media-sound/aucatctl/aucatctl-0.1.ebuild index 1357fbb643e..a04a482f9d1 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 +}