Gentoo Archives: gentoo-commits

From: Christoph Junghans <kleiner_otti@×××.de>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: sci-chemistry/gromacs/
Date: Thu, 27 Dec 2012 21:44:48
Message-Id: 1356644526.7ea177472c26c6f91cb3f02720546c995623abd2.kleiner_otti@gentoo
1 commit: 7ea177472c26c6f91cb3f02720546c995623abd2
2 Author: Christoph Junghans <ottxor <AT> gentoo <DOT> org>
3 AuthorDate: Thu Dec 27 21:37:24 2012 +0000
4 Commit: Christoph Junghans <kleiner_otti <AT> gmx <DOT> de>
5 CommitDate: Thu Dec 27 21:42:06 2012 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=7ea17747
7
8 sci-chemistry/gromacs: clean up
9
10 Package-Manager: portage-2.2.0_alpha149
11
12 ---
13 sci-chemistry/gromacs/ChangeLog | 3 +++
14 sci-chemistry/gromacs/gromacs-4.6.9999.ebuild | 7 +------
15 2 files changed, 4 insertions(+), 6 deletions(-)
16
17 diff --git a/sci-chemistry/gromacs/ChangeLog b/sci-chemistry/gromacs/ChangeLog
18 index d371744..c2c3f21 100644
19 --- a/sci-chemistry/gromacs/ChangeLog
20 +++ b/sci-chemistry/gromacs/ChangeLog
21 @@ -2,6 +2,9 @@
22 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
23 # $Header: $
24
25 + 27 Dec 2012; Christoph Junghans <ottxor@g.o> gromacs-4.6.9999.ebuild:
26 + sci-chemistry/gromacs: clean up
27 +
28 26 Dec 2012; Christoph Junghans <ottxor@g.o> gromacs-4.6.9999.ebuild:
29 fixed openmm suffix
30
31
32 diff --git a/sci-chemistry/gromacs/gromacs-4.6.9999.ebuild b/sci-chemistry/gromacs/gromacs-4.6.9999.ebuild
33 index 4f7972b..8e13d99 100644
34 --- a/sci-chemistry/gromacs/gromacs-4.6.9999.ebuild
35 +++ b/sci-chemistry/gromacs/gromacs-4.6.9999.ebuild
36 @@ -7,9 +7,6 @@ EAPI=5
37 TEST_PV="4.0.4"
38 MANUAL_PV="4.6-beta1"
39
40 -#to find external blas/lapack
41 -CMAKE_MIN_VERSION="2.8.5-r2"
42 -
43 CMAKE_MAKEFILE_GENERATOR="ninja"
44
45 inherit bash-completion-r1 cmake-utils eutils multilib toolchain-funcs
46 @@ -64,6 +61,7 @@ RDEPEND="${CDEPEND}"
47 RESTRICT="test"
48
49 REQUIRED_USE="
50 + || ( single-precision double-precision )
51 cuda? ( single-precision )
52 openmm? ( single-precision )
53 mkl? ( !blas !fftw !lapack )"
54 @@ -84,9 +82,6 @@ src_prepare() {
55 GMX_DIRS=""
56 use single-precision && GMX_DIRS+=" float"
57 use double-precision && GMX_DIRS+=" double"
58 - #if neither single-precision nor double-precision is enabled
59 - #build at least default (single)
60 - [[ -z $GMX_DIRS ]] && GMX_DIRS+=" float"
61
62 for x in ${GMX_DIRS}; do
63 mkdir -p "${WORKDIR}/${P}_${x}" || die