commit: 52c6f961172a73e219b4b378279103713c3ce445 Author: David Seifert <soap <AT> gentoo <DOT> org> AuthorDate: Mon Feb 19 18:17:21 2018 +0000 Commit: David Seifert <soap <AT> gentoo <DOT> org> CommitDate: Mon Feb 19 19:40:50 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52c6f961
sci-misc/lttoolbox: Always build in C++14 mode Closes: https://bugs.gentoo.org/619446 Package-Manager: Portage-2.3.24, Repoman-2.3.6 sci-misc/lttoolbox/lttoolbox-3.3.3.ebuild | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/sci-misc/lttoolbox/lttoolbox-3.3.3.ebuild b/sci-misc/lttoolbox/lttoolbox-3.3.3.ebuild index ad7dca2d16a..28266cdb4f7 100644 --- a/sci-misc/lttoolbox/lttoolbox-3.3.3.ebuild +++ b/sci-misc/lttoolbox/lttoolbox-3.3.3.ebuild @@ -1,8 +1,9 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 -inherit autotools + +inherit autotools flag-o-matic DESCRIPTION="Toolbox for lexical processing, morphological analysis and generation of words" HOMEPAGE="https://www.apertium.org" @@ -23,5 +24,8 @@ src_prepare() { } src_configure() { + # bug 619446 + append-cxxflags -std=c++14 + econf $(use_enable static-libs static) }
