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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1573915808D for ; Mon, 18 Apr 2022 22:29:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2DA72E0833; Mon, 18 Apr 2022 22:29:27 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 40682E0833 for ; Mon, 18 Apr 2022 22:29:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9D5D134184E for ; Mon, 18 Apr 2022 22:29:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EC6E3177 for ; Mon, 18 Apr 2022 22:29:22 +0000 (UTC) From: "Seth Arnold" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Seth Arnold" Message-ID: <1650320952.04bff2dfd6fb44e9b922bceabfdb08c1dc60bd04.Dotz0cat@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: app-misc/walld/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-misc/walld/walld-1.2.ebuild X-VCS-Directories: app-misc/walld/ X-VCS-Committer: Dotz0cat X-VCS-Committer-Name: Seth Arnold X-VCS-Revision: 04bff2dfd6fb44e9b922bceabfdb08c1dc60bd04 X-VCS-Branch: dev Date: Mon, 18 Apr 2022 22:29:22 +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: 1d18c9d4-1224-48a3-b40d-76ff3cc97a53 X-Archives-Hash: 8f6196f4d2a36ef925b32374770029c9 commit: 04bff2dfd6fb44e9b922bceabfdb08c1dc60bd04 Author: Seth Arnold gmail com> AuthorDate: Mon Apr 18 22:26:10 2022 +0000 Commit: Seth Arnold gmail com> CommitDate: Mon Apr 18 22:29:12 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=04bff2df app-misc/walld: fixed calling cc directly Signed-off-by: Seth Arnold gmail.com> app-misc/walld/walld-1.2.ebuild | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app-misc/walld/walld-1.2.ebuild b/app-misc/walld/walld-1.2.ebuild index 462dd9c1f..861b83f09 100644 --- a/app-misc/walld/walld-1.2.ebuild +++ b/app-misc/walld/walld-1.2.ebuild @@ -3,7 +3,7 @@ EAPI=8 -inherit optfeature +inherit optfeature toolchain-funcs DESCRIPTION="A Wallpaper daemon" HOMEPAGE="https://github.com/Dotz0cat/walld" @@ -17,6 +17,10 @@ DEPEND="dev-libs/libevent media-gfx/feh dev-libs/libconfig media-gfx/imagemagick RDEPEND="${DEPEND}" BDEPEND="virtual/pkgconfig" +src_compile() { + emake CC="${tc-getCC}" +} + src_install() { emake DESTDIR="${D}" PREFIX=/usr install }