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 4606D1382C5 for ; Mon, 19 Feb 2018 19:43:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 80DA6E0C9D; Mon, 19 Feb 2018 19:43:16 +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 56A85E0CA2 for ; Mon, 19 Feb 2018 19:43:16 +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 BD25D335C56 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 4018523C 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: <1519069226.4655cbda0d84d7bb645611d14839607140f1acac.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libcdr/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libcdr/libcdr-0.1.4.ebuild media-libs/libcdr/libcdr-9999.ebuild X-VCS-Directories: media-libs/libcdr/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 4655cbda0d84d7bb645611d14839607140f1acac 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: bb90f4c8-4ca3-4877-ad51-09d82235be7b X-Archives-Hash: 5b06b473c924549970d01cdd8de02b45 commit: 4655cbda0d84d7bb645611d14839607140f1acac 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:26 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4655cbda media-libs/libcdr: Always build in C++14 mode Closes: https://bugs.gentoo.org/619448 Package-Manager: Portage-2.3.24, Repoman-2.3.6 media-libs/libcdr/libcdr-0.1.4.ebuild | 7 ++++++- media-libs/libcdr/libcdr-9999.ebuild | 7 ++++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/media-libs/libcdr/libcdr-0.1.4.ebuild b/media-libs/libcdr/libcdr-0.1.4.ebuild index b114fa2e952..2e4ecae4b77 100644 --- a/media-libs/libcdr/libcdr-0.1.4.ebuild +++ b/media-libs/libcdr/libcdr-0.1.4.ebuild @@ -1,8 +1,10 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 +inherit flag-o-matic + EGIT_REPO_URI="https://anongit.freedesktop.org/git/libreoffice/libcdr.git" [[ ${PV} == 9999 ]] && inherit autotools git-r3 @@ -37,6 +39,9 @@ src_prepare() { } src_configure() { + # bug 619448 + append-cxxflags -std=c++14 + econf \ --disable-werror \ $(use_with doc docs) \ diff --git a/media-libs/libcdr/libcdr-9999.ebuild b/media-libs/libcdr/libcdr-9999.ebuild index a7f1ed801fd..3c04d584f9e 100644 --- a/media-libs/libcdr/libcdr-9999.ebuild +++ b/media-libs/libcdr/libcdr-9999.ebuild @@ -1,8 +1,10 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 +inherit flag-o-matic + EGIT_REPO_URI="https://anongit.freedesktop.org/git/libreoffice/libcdr.git" [[ ${PV} == 9999 ]] && inherit autotools git-r3 @@ -37,6 +39,9 @@ src_prepare() { } src_configure() { + # bug 619448 + append-cxxflags -std=c++14 + econf \ --disable-werror \ $(use_with doc docs) \