Gentoo Archives: gentoo-commits

From: Nicolas Bock <nicolasbock@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: sci-chemistry/freeon/
Date: Sat, 28 Sep 2013 03:32:22
Message-Id: 1380339096.8660f9e015f6d0db337b22abafaea473a48a3d45.nicolasbock@gentoo
1 commit: 8660f9e015f6d0db337b22abafaea473a48a3d45
2 Author: Nicolas Bock <nicolasbock <AT> gmail <DOT> com>
3 AuthorDate: Sat Sep 28 03:31:36 2013 +0000
4 Commit: Nicolas Bock <nicolasbock <AT> gmail <DOT> com>
5 CommitDate: Sat Sep 28 03:31:36 2013 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=8660f9e0
7
8 sci-chemistry/freeon-1.0.5: Version bump.
9
10 Package-Manager: portage-2.2.1
11
12 ---
13 sci-chemistry/freeon/ChangeLog | 5 +++++
14 sci-chemistry/freeon/freeon-1.0.5.ebuild | 33 ++++++++++++++++++++++++++++++++
15 2 files changed, 38 insertions(+)
16
17 diff --git a/sci-chemistry/freeon/ChangeLog b/sci-chemistry/freeon/ChangeLog
18 index 1bb4542..0e0746e 100644
19 --- a/sci-chemistry/freeon/ChangeLog
20 +++ b/sci-chemistry/freeon/ChangeLog
21 @@ -2,6 +2,11 @@
22 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
23 # $Header: $
24
25 +*freeon-1.0.5 (28 Sep 2013)
26 +
27 + 28 Sep 2013; Nicolas Bock <nicolasbock@×××××.com> +freeon-1.0.5.ebuild:
28 + sci-chemistry/freeon-1.0.5: Version bump.
29 +
30 *freeon-1.0.4 (27 Sep 2013)
31
32 27 Sep 2013; Nicolas Bock <nicolasbock@×××××.com> +freeon-1.0.4.ebuild,
33
34 diff --git a/sci-chemistry/freeon/freeon-1.0.5.ebuild b/sci-chemistry/freeon/freeon-1.0.5.ebuild
35 new file mode 100644
36 index 0000000..91f6cd9
37 --- /dev/null
38 +++ b/sci-chemistry/freeon/freeon-1.0.5.ebuild
39 @@ -0,0 +1,33 @@
40 +# Copyright 1999-2013 Gentoo Foundation
41 +# Distributed under the terms of the GNU General Public License v2
42 +# $Header: $
43 +
44 +EAPI=5
45 +
46 +AUTOTOOLS_AUTORECONF=1
47 +FORTRAN_STANDARD=90
48 +
49 +inherit autotools-utils fortran-2
50 +
51 +DESCRIPTION="An experimental suite of programs for linear scaling quantum chemistry."
52 +HOMEPAGE="http://www.freeon.org"
53 +SRC_URI="http://download.savannah.gnu.org/releases/${PN}/${PN}-${PV}.tar.bz2"
54 +
55 +LICENSE="GPL-3"
56 +SLOT="0"
57 +KEYWORDS="~amd64 ~x86"
58 +IUSE="standalone-BCSR static-libs"
59 +
60 +RDEPEND="
61 + sci-libs/hdf5
62 + virtual/blas
63 + virtual/lapack"
64 +DEPEND="${DEPEND}
65 + virtual/pkgconfig"
66 +
67 +src_configure() {
68 + local myeconfargs=(
69 + $(use_enable standalone-BCSR)
70 + )
71 + autotools-utils_src_configure
72 +}