aboutsummaryrefslogtreecommitdiff
blob: 3e7a2d945bdc01a387252061c8fe16d212a37cd1 (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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

EAPI=4

inherit autotools-utils fortran-2 multilib toolchain-funcs

DESCRIPTION="PAW atomic data generator"
HOMEPAGE="http://www.wfu.edu/~natalie/papers/pwpaw/man.html"
SRC_URI="http://www.wfu.edu/~natalie/papers/pwpaw/${P}.tar.gz
	doc? ( http://www.wfu.edu/~natalie/papers/pwpaw/atompaw.pdf
		http://www.wfu.edu/~natalie/papers/pwpaw/notes/atompaw/atompawEqns.pdf )"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc libxc"

RDEPEND="virtual/lapack
	virtual/blas
	libxc? ( sci-libs/libxc[fortran] )"
DEPEND="${RDEPEND}
	dev-util/pkgconfig"

DOCS=( README  )

FORTRAN_STANDARD=90

src_unpack() {
	unpack ${P}.tar.gz
	if use doc; then
		cp "${DISTDIR}"/atompaw.pdf "${S}"/doc/
		cp "${DISTDIR}"/atompawEqns.pdf "${S}"/doc/
	fi
}

src_prepare() {
	epatch ${FILESDIR}/3.0.1-longplot.patch
}

src_configure() {
	local modules="-I/usr/$(get_libdir)/finclude"
	local myeconfargs=(
		$(use_enable libxc)
		--with-linalg-flavor=atlas
		--with-linalg-libs="$(pkg-config --libs lapack)"
		--with-libxc-incs="-I/usr/include ${modules}"
		--with-libxc-libs="${libs} -lxc"
		FC="$(tc-getFC)" FCFLAGS="${FCFLAGS:- ${FFLAGS:- -O2}}"
		CC="$(tc-getCC)" LDFLAGS="${LDFLAGS:- ${CFLAGS:- -O2}}"
	)
	autotools-utils_src_configure
}

src_compile() {
	autotools-utils_src_compile -j1
}

src_test() {
	use test && autotools-utils_src_test
}

src_install() {
	autotools-utils_src_install

	if use doc; then
		dodoc doc/atompaw.pdf doc/atompawEqns.pdf || die "PDF doc failed"
	fi
}