blob: f2fde06b8037ecf5067c4cf37997c822a7437d4a (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=4
inherit eutils autotools
MYPN=ADOL-C
DESCRIPTION="Automatic differentiation system for C/C++"
HOMEPAGE="https://projects.coin-or.org/ADOL-C/"
SRC_URI="http://www.coin-or.org/download/source/${MYPN}/${MYPN}-${PV}.tgz"
LICENSE="|| ( CPL GPL-2 )"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="examples openmp sparse static-libs"
RDEPEND="sparse? ( sci-libs/colpack )"
DEPEND="${RDEPEND}"
S=${WORKDIR}/${MYPN}-${PV}
src_prepare() {
epatch "${FILESDIR}"/${P}-autotools.patch
epatch "${FILESDIR}"/${P}-sparse-openmp.patch
eautoreconf
}
src_configure() {
econf \
$(use_enable openmp) \
$(use_enable static-libs static) \
$(use_with sparse colpack)
}
src_test() {
emake test
}
|