aboutsummaryrefslogtreecommitdiff
blob: 70ea9e8285ca549c9d47a2c9f50cf8a787592ddc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

EAPI=5

AUTOTOOLS_AUTORECONF=1
FORTRAN_STANDARD=90
PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3,3_4} )

inherit autotools-utils fortran-2 git-r3 python-any-r1

DESCRIPTION="An experimental suite of programs for linear scaling quantum chemistry"
HOMEPAGE="http://www.freeon.org"
SRC_URI=""
EGIT_REPO_URI="https://github.com/FreeON/freeon.git"

LICENSE="GPL-3"
SLOT="live"
KEYWORDS=""
IUSE=""

RDEPEND="
	sci-libs/hdf5
	virtual/blas
	virtual/lapack"
DEPEND="${RDEPEND}
	${PYTHON_DEPS}"

src_prepare() {
	bash fix_localversion.sh || die
	autotools-utils_src_prepare
}

src_configure() {
	local myeconfargs=(
		"--enable-git-tag"
		"--prefix=/opt/freeon"
	)
	autotools-utils_src_configure
}