blob: c22c8c2d6b377005c3d74bf984b229ee8ad0b46f (
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
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
inherit fortran-2
DESCRIPTION="The lowest-level Growler library"
HOMEPAGE="http://www.nas.nasa.gov/~bgreen/growler/"
SRC_URI="${HOMEPAGE}/downloads/growler-link-${PV}.tar.gz"
SLOT="0"
LICENSE="NOSA"
KEYWORDS="~amd64 ~x86"
IUSE="doc fortran static-libs tcpd"
RDEPEND="
dev-libs/boost
tcpd? ( sys-apps/tcp-wrappers )"
DEPEND="${RDEPEND}
doc? ( app-doc/doxygen )"
PATCHES=(
"${FILESDIR}"/${PV}-gcc4.patch
"${FILESDIR}"/${PV}-gcc4.7.patch
)
src_configure() {
local myeconfargs=(
$(use_enable doc)
$(use_enable tcpd)
$(use_enable static-libs static)
)
econf ${myeconfargs[@]}
}
|