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 0688213835A for ; Thu, 20 Aug 2020 13:31:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 16641E0CCF; Thu, 20 Aug 2020 13:31:15 +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 F12B0E0CCF for ; Thu, 20 Aug 2020 13:31:14 +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 87AAE34F0E7 for ; Thu, 20 Aug 2020 13:31:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 03A7C2EE for ; Thu, 20 Aug 2020 13:31:12 +0000 (UTC) From: "Akinori Hattori" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Akinori Hattori" Message-ID: <1597930022.c76d8f2283b24bedcdcf7d478412adc6db54bdb2.hattya@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-i18n/canfep/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-i18n/canfep/canfep-1.0-r1.ebuild app-i18n/canfep/canfep-1.0.ebuild X-VCS-Directories: app-i18n/canfep/ X-VCS-Committer: hattya X-VCS-Committer-Name: Akinori Hattori X-VCS-Revision: c76d8f2283b24bedcdcf7d478412adc6db54bdb2 X-VCS-Branch: master Date: Thu, 20 Aug 2020 13:31:12 +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: 095d906d-f286-4944-bf97-01ed9b2a9862 X-Archives-Hash: 085549dc4266b84f1f4561a426354f0f commit: c76d8f2283b24bedcdcf7d478412adc6db54bdb2 Author: Akinori Hattori gentoo org> AuthorDate: Thu Aug 20 13:27:02 2020 +0000 Commit: Akinori Hattori gentoo org> CommitDate: Thu Aug 20 13:27:02 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c76d8f22 app-i18n/canfep: respect CXXFLAGS Closes: https://bugs.gentoo.org/734236 Package-Manager: Portage-2.3.103, Repoman-2.3.23 Signed-off-by: Akinori Hattori gentoo.org> app-i18n/canfep/canfep-1.0-r1.ebuild | 3 ++- app-i18n/canfep/canfep-1.0.ebuild | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/app-i18n/canfep/canfep-1.0-r1.ebuild b/app-i18n/canfep/canfep-1.0-r1.ebuild index c78e54ada07..47db7408be3 100644 --- a/app-i18n/canfep/canfep-1.0-r1.ebuild +++ b/app-i18n/canfep/canfep-1.0-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="6" @@ -36,6 +36,7 @@ src_prepare() { src_compile() { emake \ CC="$(tc-getCXX)" \ + CFLAGS="${CXXFLAGS}" \ LIBS="-lcanna $($(tc-getPKG_CONFIG) --libs ncurses)" } diff --git a/app-i18n/canfep/canfep-1.0.ebuild b/app-i18n/canfep/canfep-1.0.ebuild index a290748825d..318da4e8944 100644 --- a/app-i18n/canfep/canfep-1.0.ebuild +++ b/app-i18n/canfep/canfep-1.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="6" @@ -30,6 +30,7 @@ src_prepare() { src_compile() { emake \ CC="$(tc-getCXX)" \ + CFLAGS="${CXXFLAGS}" \ LIBS="-lcanna $(pkg-config --libs ncurses)" }