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 AC569138350 for ; Sun, 8 Mar 2020 16:02:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A4C87E0905; Sun, 8 Mar 2020 16:02:07 +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 855A8E0905 for ; Sun, 8 Mar 2020 16:02:07 +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 05F8C34F699 for ; Sun, 8 Mar 2020 16:02:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 70637170 for ; Sun, 8 Mar 2020 16:02:01 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1583683290.1b1ddcb4a9746a55216d63b20c54ca42198f8c45.asturm@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.5.0.ebuild X-VCS-Directories: sci-libs/symengine/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 1b1ddcb4a9746a55216d63b20c54ca42198f8c45 X-VCS-Branch: master Date: Sun, 8 Mar 2020 16:02:01 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 0dfddd89-20bc-435e-bd2c-407eff0605e8 X-Archives-Hash: 2df83fdda26447c412ed6da1c5d48616 commit: 1b1ddcb4a9746a55216d63b20c54ca42198f8c45 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Mar 8 15:42:55 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Mar 8 16:01:30 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b1ddcb4 sci-libs/symengine: Fix unused cmake var warning Closes: https://bugs.gentoo.org/659512 Package-Manager: Portage-2.3.93, Repoman-2.3.20 Signed-off-by: Andreas Sturmlechner gentoo.org> sci-libs/symengine/symengine-0.5.0.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sci-libs/symengine/symengine-0.5.0.ebuild b/sci-libs/symengine/symengine-0.5.0.ebuild index 5949ae7acbb..15ce1011677 100644 --- a/sci-libs/symengine/symengine-0.5.0.ebuild +++ b/sci-libs/symengine/symengine-0.5.0.ebuild @@ -56,7 +56,6 @@ src_configure() { int_class=gmp fi local mycmakeargs=( - -DARB_INCLUDE_DIR="${EPREFIX}/usr/include" -DINTEGER_CLASS="${int_class}" -DBUILD_BENCHMARKS="$(usex benchmarks)" -DBUILD_DOXYGEN="$(usex doc)" @@ -74,6 +73,8 @@ src_configure() { -DWITH_TCMALLOC="$(usex tcmalloc)" -DWITH_ECM="$(usex ecm)" ) + use arb && mycmakeargs+=( -DARB_INCLUDE_DIR="${EPREFIX}/usr/include" ) + test-flag-CXX -std=c++11 && append-cxxflags -std=c++11 cmake_src_configure }