Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: sci-chemistry/erkale/
Date: Sat, 02 Jul 2016 09:02:55
Message-Id: 1467449841.4c29e7ba00e91fcc5499aa853e8a4d4a33d221f6.jlec@gentoo
1 commit: 4c29e7ba00e91fcc5499aa853e8a4d4a33d221f6
2 Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jul 2 08:57:21 2016 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 2 08:57:21 2016 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=4c29e7ba
7
8 sci-chemistry/erkale: Move use() call to local scope
9
10 Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
11
12 sci-chemistry/erkale/erkale-9999.ebuild | 4 ++--
13 1 file changed, 2 insertions(+), 2 deletions(-)
14
15 diff --git a/sci-chemistry/erkale/erkale-9999.ebuild b/sci-chemistry/erkale/erkale-9999.ebuild
16 index 2b76123..999f191 100644
17 --- a/sci-chemistry/erkale/erkale-9999.ebuild
18 +++ b/sci-chemistry/erkale/erkale-9999.ebuild
19 @@ -2,7 +2,7 @@
20 # Distributed under the terms of the GNU General Public License v2
21 # $Id$
22
23 -EAPI=5
24 +EAPI=6
25
26 inherit cmake-utils flag-o-matic git-r3 multibuild toolchain-funcs
27
28 @@ -27,9 +27,9 @@ DEPEND="${DEPEND}
29 "
30
31 MULTIBUILD_VARIANTS=( serial )
32 -use openmp && MULTIBUILD_VARIANTS+=( omp )
33
34 src_prepare() {
35 + use openmp && MULTIBUILD_VARIANTS+=( omp )
36 append-cxxflags "-DARMA_DONT_USE_ATLAS -DARMA_DONT_USE_WRAPPER"
37 cmake-utils_src_prepare
38 }