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 CF24813933E for ; Wed, 30 Jun 2021 18:23:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 06F0EE082B; Wed, 30 Jun 2021 18:23:42 +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 DDE40E082B for ; Wed, 30 Jun 2021 18:23:41 +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 AF98633CEF2 for ; Wed, 30 Jun 2021 18:23:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1E6124C3 for ; Wed, 30 Jun 2021 18:23:39 +0000 (UTC) From: "Thomas Beierlein" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Beierlein" Message-ID: <1625077404.6ae6627d53481ea1859fd1f071949f062e441a0a.tomjbe@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-electronics/puff/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-electronics/puff/puff-20100127-r1.ebuild sci-electronics/puff/puff-20181104.ebuild X-VCS-Directories: sci-electronics/puff/ X-VCS-Committer: tomjbe X-VCS-Committer-Name: Thomas Beierlein X-VCS-Revision: 6ae6627d53481ea1859fd1f071949f062e441a0a X-VCS-Branch: master Date: Wed, 30 Jun 2021 18:23:39 +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: eecf854a-4e7a-4968-83c0-a9f7f7c1711c X-Archives-Hash: cae7bdda84863948976aa497aad5338e commit: 6ae6627d53481ea1859fd1f071949f062e441a0a Author: Thomas Beierlein gentoo org> AuthorDate: Wed Jun 30 18:23:24 2021 +0000 Commit: Thomas Beierlein gentoo org> CommitDate: Wed Jun 30 18:23:24 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ae6627d sci-electronics/puff: Do not call gcc directly Closes: https://bugs.gentoo.org/799269 Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Thomas Beierlein gentoo.org> sci-electronics/puff/puff-20100127-r1.ebuild | 5 +++-- sci-electronics/puff/puff-20181104.ebuild | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/sci-electronics/puff/puff-20100127-r1.ebuild b/sci-electronics/puff/puff-20100127-r1.ebuild index c13ddfb1131..1c89266a793 100644 --- a/sci-electronics/puff/puff-20100127-r1.ebuild +++ b/sci-electronics/puff/puff-20100127-r1.ebuild @@ -3,7 +3,7 @@ EAPI=7 -inherit flag-o-matic +inherit flag-o-matic toolchain-funcs DESCRIPTION="microwave CAD software" HOMEPAGE="https://wwwhome.cs.utwente.nl/~ptdeboer/ham/puff/" @@ -22,13 +22,14 @@ src_prepare() { # fix lib path for X11 and dont ignore LDFLAGS sed -i -e "s#lib\\\/#$(get_libdir)\\\/#" \ -e 's/CFLAGS/#CFLAGS/' \ + -e 's/CC =/#CC =/' \ -e 's/link.res/.res/g' \ -e 's/.res pu/.res $(LDFLAGS) pu/' Makefile || die } src_compile() { LDFLAGS="$(raw-ldflags)" - emake -j1 + emake -j1 CC="$(tc-getCC)" } src_install() { diff --git a/sci-electronics/puff/puff-20181104.ebuild b/sci-electronics/puff/puff-20181104.ebuild index 9d07d1e9fd6..bf281406eae 100644 --- a/sci-electronics/puff/puff-20181104.ebuild +++ b/sci-electronics/puff/puff-20181104.ebuild @@ -3,7 +3,7 @@ EAPI=7 -inherit flag-o-matic +inherit flag-o-matic toolchain-funcs DESCRIPTION="microwave CAD software" HOMEPAGE="https://wwwhome.cs.utwente.nl/~ptdeboer/ham/puff/" @@ -21,13 +21,14 @@ src_prepare() { default # fix lib path for X11 and dont ignore LDFLAGS sed -i -e 's/CFLAGS/#CFLAGS/' \ + -e 's/CC =/#CC =/' \ -e 's/link.res/.res/g' \ -e 's/.res pu/.res $(LDFLAGS) pu/' Makefile || die } src_compile() { LDFLAGS="$(raw-ldflags)" - emake -j1 + emake -j1 CC="$(tc-getCC)" } src_install() {