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 C29B61382C5 for ; Mon, 19 Feb 2018 19:43:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6B915E0C9C; 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 42781E0C9E 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 E4DD7335C58 for ; Mon, 19 Feb 2018 19:43:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D45F0245 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: <1519069250.52c6f961172a73e219b4b378279103713c3ce445.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-misc/lttoolbox/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-misc/lttoolbox/lttoolbox-3.3.3.ebuild X-VCS-Directories: sci-misc/lttoolbox/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 52c6f961172a73e219b4b378279103713c3ce445 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: 620b8b82-ea3a-4b9e-9c8d-c3b4396239a6 X-Archives-Hash: 025632da5841e7f9861fee5e81993484 commit: 52c6f961172a73e219b4b378279103713c3ce445 Author: David Seifert gentoo org> AuthorDate: Mon Feb 19 18:17:21 2018 +0000 Commit: David Seifert gentoo 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) }