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 4B8091382C5 for ; Mon, 19 Feb 2018 19:43:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 77832E0CA1; Mon, 19 Feb 2018 19:43:16 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 52497E0CA1 for ; Mon, 19 Feb 2018 19:43:16 +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 BDBD9335C5C for ; Mon, 19 Feb 2018 19:43:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1A38B238 for ; Mon, 19 Feb 2018 19:42:42 +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: <1519069220.de7baa46c52d1a9ba69e466ed567b19fb5d82dc8.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/freepv/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/freepv/freepv-0.3.0-r5.ebuild X-VCS-Directories: media-gfx/freepv/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: de7baa46c52d1a9ba69e466ed567b19fb5d82dc8 X-VCS-Branch: master Date: Mon, 19 Feb 2018 19:42:42 +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-Archives-Salt: 1a8a716f-498c-45ae-a99b-61cefe70fce2 X-Archives-Hash: 667c0c220d4766294cd4012846e285b8 commit: de7baa46c52d1a9ba69e466ed567b19fb5d82dc8 Author: David Seifert gentoo org> AuthorDate: Mon Feb 19 18:17:20 2018 +0000 Commit: David Seifert gentoo org> CommitDate: Mon Feb 19 19:40:20 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de7baa46 media-gfx/freepv: Always build in C++14 mode Closes: https://bugs.gentoo.org/618856 Package-Manager: Portage-2.3.24, Repoman-2.3.6 media-gfx/freepv/freepv-0.3.0-r5.ebuild | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/media-gfx/freepv/freepv-0.3.0-r5.ebuild b/media-gfx/freepv/freepv-0.3.0-r5.ebuild index 6188c0ed162..018aec18a7d 100644 --- a/media-gfx/freepv/freepv-0.3.0-r5.ebuild +++ b/media-gfx/freepv/freepv-0.3.0-r5.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 -inherit cmake-utils +inherit cmake-utils flag-o-matic DESCRIPTION="Panorama viewer (Quicktime, PangeaVR, GLPanoView formats)" HOMEPAGE="http://freepv.sourceforge.net/" @@ -41,3 +41,10 @@ src_prepare() { sed -e 's:^INSTALL(.*)::' \ -i src/libfreepv/CMakeLists.txt || die } + +src_configure() { + # bug 618856 + append-cxxflags -std=c++14 + + cmake-utils_src_configure +}