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 74D42139694 for ; Thu, 3 Aug 2017 17:33:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B83751FC014; Thu, 3 Aug 2017 17:33:27 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 94C9B1FC014 for ; Thu, 3 Aug 2017 17:33:27 +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 3C9B8341830 for ; Thu, 3 Aug 2017 17:33:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B2A5B75EE for ; Thu, 3 Aug 2017 17:33:24 +0000 (UTC) From: "Sebastien Fabbro" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sebastien Fabbro" Message-ID: <1501781584.a54d848892e3cc60c4a172ceefdd15da614e54d8.bicatali@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/symengine/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/symengine/symengine-0.3.0.ebuild X-VCS-Directories: sci-libs/symengine/ X-VCS-Committer: bicatali X-VCS-Committer-Name: Sebastien Fabbro X-VCS-Revision: a54d848892e3cc60c4a172ceefdd15da614e54d8 X-VCS-Branch: master Date: Thu, 3 Aug 2017 17:33:24 +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: f6620f26-9fbc-40b0-9683-6b25678a6d0e X-Archives-Hash: 77b14522d1d80a4713b60ab6c4a09c93 commit: a54d848892e3cc60c4a172ceefdd15da614e54d8 Author: Sébastien Fabbro gentoo org> AuthorDate: Wed Aug 2 18:43:07 2017 +0000 Commit: Sebastien Fabbro gentoo org> CommitDate: Thu Aug 3 17:33:04 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a54d8488 sci-libs/symengine: fix for cxxflags C++11 Package-Manager: Portage-2.3.6, Repoman-2.3.3 sci-libs/symengine/symengine-0.3.0.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sci-libs/symengine/symengine-0.3.0.ebuild b/sci-libs/symengine/symengine-0.3.0.ebuild index 5e0894d0d97..45298fd2cbb 100644 --- a/sci-libs/symengine/symengine-0.3.0.ebuild +++ b/sci-libs/symengine/symengine-0.3.0.ebuild @@ -3,7 +3,7 @@ EAPI=6 -inherit cmake-utils +inherit cmake-utils flag-o-matic DESCRIPTION="Fast symbolic manipulation library, written in C++" HOMEPAGE="https://github.com/sympy/symengine" @@ -67,5 +67,6 @@ src_configure() { -DWITH_PTHREAD="$(usex threads)" -DWITH_TCMALLOC="$(usex tcmalloc)" ) + test-flag-CXX -std=c++11 && append-cxxflags -std=c++11 CMAKE_BUILD_TYPE=Release cmake-utils_src_configure }