blob: a552821f79067a7fd7601907a327c4d09ca21ad1 (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/libint/libint-1.1.4-r1.ebuild,v 1.7 2011/11/28 11:55:56 phajdan.jr Exp $
EAPI=4
inherit eutils fortran-2 toolchain-funcs
DESCRIPTION="Matrix elements (integrals) evaluation over Cartesian Gaussian functions"
HOMEPAGE="http://www.chem.vt.edu/chem-dept/valeev/software/libint/libint.html"
SRC_URI="http://www.chem.vt.edu/chem-dept/valeev/software/libint/src/${P}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="amd64 x86"
IUSE=""
DEPEND="virtual/fortran"
RDEPEND="${DEPEND}"
src_prepare() {
epatch "${FILESDIR}"/1.1.4-as-needed.patch
}
src_configure() {
econf \
--enable-shared \
--enable-deriv \
--enable-r12 \
--with-cc=$(tc-getCC) \
--with-cxx=$(tc-getCXX) \
--with-cc-optflags="${CFLAGS}" \
--with-cxx-optflags="${CXXFLAGS}"
}
src_compile() {
emake LDFLAGS="${LDFLAGS}"
}
|