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 259F61382DE for ; Sat, 2 Jul 2016 09:02:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8654214120; Sat, 2 Jul 2016 09:02:52 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1D82E14120 for ; Sat, 2 Jul 2016 09:02:52 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A1D86340E69 for ; Sat, 2 Jul 2016 09:02:50 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 02BF62413 for ; Sat, 2 Jul 2016 09:02:48 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1467449841.4c29e7ba00e91fcc5499aa853e8a4d4a33d221f6.jlec@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-chemistry/erkale/ X-VCS-Repository: proj/sci X-VCS-Files: sci-chemistry/erkale/erkale-9999.ebuild X-VCS-Directories: sci-chemistry/erkale/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 4c29e7ba00e91fcc5499aa853e8a4d4a33d221f6 X-VCS-Branch: master Date: Sat, 2 Jul 2016 09:02:48 +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: 9a1409f0-ae38-43b5-9962-a645196572a0 X-Archives-Hash: d56ebc0b71413fc9c727e6f4ba2f385a commit: 4c29e7ba00e91fcc5499aa853e8a4d4a33d221f6 Author: Justin Lecher gentoo org> AuthorDate: Sat Jul 2 08:57:21 2016 +0000 Commit: Justin Lecher gentoo org> CommitDate: Sat Jul 2 08:57:21 2016 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=4c29e7ba sci-chemistry/erkale: Move use() call to local scope Signed-off-by: Justin Lecher gentoo.org> sci-chemistry/erkale/erkale-9999.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sci-chemistry/erkale/erkale-9999.ebuild b/sci-chemistry/erkale/erkale-9999.ebuild index 2b76123..999f191 100644 --- a/sci-chemistry/erkale/erkale-9999.ebuild +++ b/sci-chemistry/erkale/erkale-9999.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 +EAPI=6 inherit cmake-utils flag-o-matic git-r3 multibuild toolchain-funcs @@ -27,9 +27,9 @@ DEPEND="${DEPEND} " MULTIBUILD_VARIANTS=( serial ) -use openmp && MULTIBUILD_VARIANTS+=( omp ) src_prepare() { + use openmp && MULTIBUILD_VARIANTS+=( omp ) append-cxxflags "-DARMA_DONT_USE_ATLAS -DARMA_DONT_USE_WRAPPER" cmake-utils_src_prepare }