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 A6C1213835C for ; Fri, 23 Apr 2021 08:47:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D0EAFE093B; Fri, 23 Apr 2021 08:47:55 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 BA169E0949 for ; Fri, 23 Apr 2021 08:47:55 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 D46673412EC for ; Fri, 23 Apr 2021 08:47:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 38679733 for ; Fri, 23 Apr 2021 08:47:38 +0000 (UTC) From: "Haelwenn Monnier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Haelwenn Monnier" Message-ID: <1619104312.5f5f33bef153d5afec4c4cacb1d79542eb51b2e8.lanodan@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: app-misc/brightnessctl/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-misc/brightnessctl/brightnessctl-0.5.1.ebuild X-VCS-Directories: app-misc/brightnessctl/ X-VCS-Committer: lanodan X-VCS-Committer-Name: Haelwenn Monnier X-VCS-Revision: 5f5f33bef153d5afec4c4cacb1d79542eb51b2e8 X-VCS-Branch: master Date: Fri, 23 Apr 2021 08:47:38 +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: 8085fc48-8c7b-4ca2-a723-04d246bf3a67 X-Archives-Hash: ec8e65f5c54474debea3afaa54997355 commit: 5f5f33bef153d5afec4c4cacb1d79542eb51b2e8 Author: Octiabrina Terrien-Puig myrvogna net> AuthorDate: Thu Apr 22 15:11:52 2021 +0000 Commit: Haelwenn Monnier hacktivis me> CommitDate: Thu Apr 22 15:11:52 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5f5f33be app-misc/brightnessctl: fix cc direct call Closes: https://bugs.gentoo.org/784821 Signed-off-by: Octiabrina Terrien-Puig myrvogna.net> app-misc/brightnessctl/brightnessctl-0.5.1.ebuild | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app-misc/brightnessctl/brightnessctl-0.5.1.ebuild b/app-misc/brightnessctl/brightnessctl-0.5.1.ebuild index 0546b3ac0..04c56bbe6 100644 --- a/app-misc/brightnessctl/brightnessctl-0.5.1.ebuild +++ b/app-misc/brightnessctl/brightnessctl-0.5.1.ebuild @@ -3,6 +3,8 @@ EAPI=7 +inherit toolchain-funcs + DESCRIPTION="A program to read and control device brightness" HOMEPAGE="https://github.com/Hummer12007/brightnessctl" SRC_URI="https://github.com/Hummer12007/brightnessctl/archive/${PV}.tar.gz -> ${P}.tar.gz" @@ -22,6 +24,7 @@ BDEPEND=" " src_compile() { + tc-export CC use systemd && export ENABLE_SYSTEMD=1 emake } @@ -39,6 +42,6 @@ src_install() { myconf="INSTALL_UDEV_RULES=0" fi - emake install ${myconf} DESTDIR="${D}" + emake ${myconf} DESTDIR="${D}" install dodoc README.md }