blob: d5ce3856ccc03dac79c78f1008603a5834fdd06b (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
DESCRIPTION="Scientific multi-agent simulation library"
HOMEPAGE="http://sourceforge.net/projects/zarja/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc"
RDEPEND="
sci-libs/gsl
virtual/lapack
sci-libs/fftw:3.0
dev-libs/boost
dev-cpp/tclap"
DEPEND="${RDEPEND}
virtual/pkgconfig
doc? ( app-doc/doxygen )"
src_configure() {
econf --includedir=/usr/include/zarja
}
src_compile() {
default
if use doc; then
doxygen Doxyfile || die "doc generation failed"
fi
}
src_install() {
DOCS=( FAQ )
use doc && HTML_DOCS=( html/. )
default
}
|