commit: 902cd6d8714b9df57fac6971f913681e791dc617 Author: David Seifert <soap <AT> gentoo <DOT> org> AuthorDate: Sat May 26 11:04:01 2018 +0000 Commit: David Seifert <soap <AT> gentoo <DOT> org> CommitDate: Sat May 26 11:04:46 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=902cd6d8
media-libs/taglib: Force C++11 Closes: https://bugs.gentoo.org/651744 Package-Manager: Portage-2.3.40, Repoman-2.3.9 media-libs/taglib/taglib-1.11.1-r1.ebuild | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/media-libs/taglib/taglib-1.11.1-r1.ebuild b/media-libs/taglib/taglib-1.11.1-r1.ebuild index 426744efbb2..ac42c4b3bf4 100644 --- a/media-libs/taglib/taglib-1.11.1-r1.ebuild +++ b/media-libs/taglib/taglib-1.11.1-r1.ebuild @@ -1,9 +1,9 @@ -# 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-multilib +inherit cmake-multilib flag-o-matic DESCRIPTION="A library for reading and editing audio meta data" HOMEPAGE="https://taglib.github.io/" @@ -36,6 +36,9 @@ src_prepare() { sed -e "s/BUILD_TESTS AND NOT BUILD_SHARED_LIBS/BUILD_TESTS/" \ -i CMakeLists.txt \ -i ConfigureChecks.cmake || die + + # bug 651744 + append-cxxflags -std=c++11 } multilib_src_configure() {
