blob: e09520dcffb2e71eabedd0017e47261a53514300 (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/adolc/adolc-2.3.0.ebuild,v 1.1 2012/07/09 18:45:48 bicatali Exp $
EAPI=4
AUTOTOOLS_AUTORECONF=yes
AUTOTOOLS_IN_SOURCE_BUILD=yes
inherit autotools-utils toolchain-funcs
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="|| ( EPL-1.0 GPL-2 )"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="sparse static-libs"
RDEPEND="sparse? ( sci-libs/colpack )"
DEPEND="${RDEPEND}"
S="${WORKDIR}/${MYPN}-${PV}"
src_configure() {
local myeconfargs+=(
$(use_enable sparse)
$(use sparse && echo "--with-colpack="${EPREFIX}"/usr")
)
autotools-utils_src_configure
}
src_test() {
emake test
}
|