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 525821382C5 for ; Wed, 23 Dec 2020 10:25:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 235ED2BC03B; Wed, 23 Dec 2020 10:25:03 +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 0D4FE2BC03B for ; Wed, 23 Dec 2020 10:25:03 +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 2464C34199B for ; Wed, 23 Dec 2020 10:25:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8C560451 for ; Wed, 23 Dec 2020 10:24:59 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1608713325.8df34eaef31967d02fbe917bbb5ebe9f2f429b1a.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: media-gfx/azpainter/ X-VCS-Repository: repo/proj/guru X-VCS-Files: media-gfx/azpainter/azpainter-2.1.6.ebuild X-VCS-Directories: media-gfx/azpainter/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 8df34eaef31967d02fbe917bbb5ebe9f2f429b1a X-VCS-Branch: master Date: Wed, 23 Dec 2020 10:24:59 +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: fc9fd960-bce1-42dc-bcde-2e3a9c2583c7 X-Archives-Hash: 2665c18eb7e98190b1c08d7fbe16e0e3 commit: 8df34eaef31967d02fbe917bbb5ebe9f2f429b1a Author: Haelwenn (lanodan) Monnier hacktivis me> AuthorDate: Wed Dec 23 08:46:44 2020 +0000 Commit: Andrew Ammerlaan riseup net> CommitDate: Wed Dec 23 08:48:45 2020 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=8df34eae media-gfx/azpainter: Give CC to configure Signed-off-by: Haelwenn (lanodan) Monnier hacktivis.me> media-gfx/azpainter/azpainter-2.1.6.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/media-gfx/azpainter/azpainter-2.1.6.ebuild b/media-gfx/azpainter/azpainter-2.1.6.ebuild index 9ce319e1..2775db14 100644 --- a/media-gfx/azpainter/azpainter-2.1.6.ebuild +++ b/media-gfx/azpainter/azpainter-2.1.6.ebuild @@ -3,6 +3,8 @@ EAPI=7 +inherit toolchain-funcs + DESCRIPTION="Full color painting software for Linux for illustration drawing" HOMEPAGE="http://azsky2.html.xdomain.jp/soft/azpainter.html https://github.com/Symbian9/azpainter" SRC_URI="https://github.com/Symbian9/azpainter/releases/download/v${PV}/${P}.tar.xz" @@ -30,5 +32,5 @@ PATCHES=( ) src_configure() { - sh ./configure --prefix=/usr CFLAGS="${CFLAGS:-02}" LDFLAGS="${LDFLAGS}" + sh ./configure --prefix=/usr CC="$(tc-getCC)" CFLAGS="${CFLAGS:-02}" LDFLAGS="${LDFLAGS}" }