Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/bino/
Date: Thu, 29 Nov 2018 21:59:40
Message-Id: 1543528746.115c5abe1f92131d0f68487b4f81fb9119e063f3.soap@gentoo
1 commit: 115c5abe1f92131d0f68487b4f81fb9119e063f3
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Thu Nov 29 21:59:06 2018 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Thu Nov 29 21:59:06 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=115c5abe
7
8 media-video/bino: Fix building with GCC 5
9
10 Closes: https://bugs.gentoo.org/649282
11 Package-Manager: Portage-2.3.52, Repoman-2.3.12
12 Signed-off-by: David Seifert <soap <AT> gentoo.org>
13
14 media-video/bino/bino-1.6.6.ebuild | 3 +++
15 media-video/bino/bino-1.6.7.ebuild | 5 ++++-
16 2 files changed, 7 insertions(+), 1 deletion(-)
17
18 diff --git a/media-video/bino/bino-1.6.6.ebuild b/media-video/bino/bino-1.6.6.ebuild
19 index b082c236f10..8d2731215ba 100644
20 --- a/media-video/bino/bino-1.6.6.ebuild
21 +++ b/media-video/bino/bino-1.6.6.ebuild
22 @@ -32,6 +32,9 @@ DEPEND="${RDEPEND}
23 "
24
25 src_configure() {
26 + # Qt5 now requires C++11, #649282
27 + append-cxxflags -std=c++11
28 +
29 use video_cards_nvidia && append-cppflags "-I/usr/include/NVCtrl" \
30 && append-ldflags "-L/usr/$(get_libdir)/opengl/nvidia/lib \
31 -L/usr/$(get_libdir)" && append-libs "Xext"
32
33 diff --git a/media-video/bino/bino-1.6.7.ebuild b/media-video/bino/bino-1.6.7.ebuild
34 index 5a98d40353a..feefaa39d38 100644
35 --- a/media-video/bino/bino-1.6.7.ebuild
36 +++ b/media-video/bino/bino-1.6.7.ebuild
37 @@ -1,4 +1,4 @@
38 -# Copyright 1999-2018 Gentoo Foundation
39 +# Copyright 1999-2018 Gentoo Authors
40 # Distributed under the terms of the GNU General Public License v2
41
42 EAPI=6
43 @@ -34,6 +34,9 @@ DEPEND="${RDEPEND}
44 "
45
46 src_configure() {
47 + # Qt5 now requires C++11, #649282
48 + append-cxxflags -std=c++11
49 +
50 if use video_cards_nvidia; then
51 append-cppflags "-I/usr/include/NVCtrl"
52 append-ldflags "-L/usr/$(get_libdir)/opengl/nvidia/lib -L/usr/$(get_libdir)"