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 40A7B138239 for ; Thu, 29 Nov 2018 21:59:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EB369E08A2; Thu, 29 Nov 2018 21:59:38 +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 C00BFE08A2 for ; Thu, 29 Nov 2018 21:59:38 +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 CB093335C08 for ; Thu, 29 Nov 2018 21:59:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AA4A1A8 for ; Thu, 29 Nov 2018 21:59:34 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1543528746.115c5abe1f92131d0f68487b4f81fb9119e063f3.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/bino/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-video/bino/bino-1.6.6.ebuild media-video/bino/bino-1.6.7.ebuild X-VCS-Directories: media-video/bino/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 115c5abe1f92131d0f68487b4f81fb9119e063f3 X-VCS-Branch: master Date: Thu, 29 Nov 2018 21:59:34 +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: 73e7cd85-1405-425b-9aa5-70add7c7536e X-Archives-Hash: b3147e40a20a9a6253a0fc908e54e43e commit: 115c5abe1f92131d0f68487b4f81fb9119e063f3 Author: David Seifert gentoo org> AuthorDate: Thu Nov 29 21:59:06 2018 +0000 Commit: David Seifert gentoo org> CommitDate: Thu Nov 29 21:59:06 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=115c5abe media-video/bino: Fix building with GCC 5 Closes: https://bugs.gentoo.org/649282 Package-Manager: Portage-2.3.52, Repoman-2.3.12 Signed-off-by: David Seifert gentoo.org> media-video/bino/bino-1.6.6.ebuild | 3 +++ media-video/bino/bino-1.6.7.ebuild | 5 ++++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/media-video/bino/bino-1.6.6.ebuild b/media-video/bino/bino-1.6.6.ebuild index b082c236f10..8d2731215ba 100644 --- a/media-video/bino/bino-1.6.6.ebuild +++ b/media-video/bino/bino-1.6.6.ebuild @@ -32,6 +32,9 @@ DEPEND="${RDEPEND} " src_configure() { + # Qt5 now requires C++11, #649282 + append-cxxflags -std=c++11 + use video_cards_nvidia && append-cppflags "-I/usr/include/NVCtrl" \ && append-ldflags "-L/usr/$(get_libdir)/opengl/nvidia/lib \ -L/usr/$(get_libdir)" && append-libs "Xext" diff --git a/media-video/bino/bino-1.6.7.ebuild b/media-video/bino/bino-1.6.7.ebuild index 5a98d40353a..feefaa39d38 100644 --- a/media-video/bino/bino-1.6.7.ebuild +++ b/media-video/bino/bino-1.6.7.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -34,6 +34,9 @@ DEPEND="${RDEPEND} " src_configure() { + # Qt5 now requires C++11, #649282 + append-cxxflags -std=c++11 + if use video_cards_nvidia; then append-cppflags "-I/usr/include/NVCtrl" append-ldflags "-L/usr/$(get_libdir)/opengl/nvidia/lib -L/usr/$(get_libdir)"