Gentoo Archives: gentoo-commits

From: Akinori Hattori <hattya@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-i18n/canfep/
Date: Thu, 20 Aug 2020 13:31:16
Message-Id: 1597930022.c76d8f2283b24bedcdcf7d478412adc6db54bdb2.hattya@gentoo
1 commit: c76d8f2283b24bedcdcf7d478412adc6db54bdb2
2 Author: Akinori Hattori <hattya <AT> gentoo <DOT> org>
3 AuthorDate: Thu Aug 20 13:27:02 2020 +0000
4 Commit: Akinori Hattori <hattya <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 20 13:27:02 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c76d8f22
7
8 app-i18n/canfep: respect CXXFLAGS
9
10 Closes: https://bugs.gentoo.org/734236
11 Package-Manager: Portage-2.3.103, Repoman-2.3.23
12 Signed-off-by: Akinori Hattori <hattya <AT> gentoo.org>
13
14 app-i18n/canfep/canfep-1.0-r1.ebuild | 3 ++-
15 app-i18n/canfep/canfep-1.0.ebuild | 3 ++-
16 2 files changed, 4 insertions(+), 2 deletions(-)
17
18 diff --git a/app-i18n/canfep/canfep-1.0-r1.ebuild b/app-i18n/canfep/canfep-1.0-r1.ebuild
19 index c78e54ada07..47db7408be3 100644
20 --- a/app-i18n/canfep/canfep-1.0-r1.ebuild
21 +++ b/app-i18n/canfep/canfep-1.0-r1.ebuild
22 @@ -1,4 +1,4 @@
23 -# Copyright 1999-2019 Gentoo Authors
24 +# Copyright 1999-2020 Gentoo Authors
25 # Distributed under the terms of the GNU General Public License v2
26
27 EAPI="6"
28 @@ -36,6 +36,7 @@ src_prepare() {
29 src_compile() {
30 emake \
31 CC="$(tc-getCXX)" \
32 + CFLAGS="${CXXFLAGS}" \
33 LIBS="-lcanna $($(tc-getPKG_CONFIG) --libs ncurses)"
34 }
35
36
37 diff --git a/app-i18n/canfep/canfep-1.0.ebuild b/app-i18n/canfep/canfep-1.0.ebuild
38 index a290748825d..318da4e8944 100644
39 --- a/app-i18n/canfep/canfep-1.0.ebuild
40 +++ b/app-i18n/canfep/canfep-1.0.ebuild
41 @@ -1,4 +1,4 @@
42 -# Copyright 1999-2017 Gentoo Foundation
43 +# Copyright 1999-2020 Gentoo Authors
44 # Distributed under the terms of the GNU General Public License v2
45
46 EAPI="6"
47 @@ -30,6 +30,7 @@ src_prepare() {
48 src_compile() {
49 emake \
50 CC="$(tc-getCXX)" \
51 + CFLAGS="${CXXFLAGS}" \
52 LIBS="-lcanna $(pkg-config --libs ncurses)"
53 }