blob: ff12f5f3026a68a33f37cdfc531251e8f1fea4e8 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/unuran/unuran-1.8.0.ebuild,v 1.2 2010/12/18 21:46:06 bicatali Exp $
EAPI=2
inherit eutils autotools
DESCRIPTION="Universal Non-Uniform Random number generator"
HOMEPAGE="http://statmath.wu.ac.at/unuran/"
SRC_URI="${HOMEPAGE}${P}.tar.gz"
LICENSE="GPL-2"
SLOT=0
KEYWORDS="~amd64 ~x86"
IUSE="doc examples gsl prng +rngstreams static-libs"
DEPEND="gsl? ( sci-libs/gsl )
prng? ( sci-mathematics/prng )
rngstreams? ( sci-mathematics/rngstreams )"
RDEPEND="${DEPEND}"
src_prepare() {
epatch "${FILESDIR}"/${P}-nogsl.patch
eautoreconf
}
src_configure() {
local udefault=builtin
use rngstreams && udefault=rngstream
econf \
--enable-shared \
--with-urng-default=${udefault} \
$(use_enable static-libs static) \
$(use_with gsl urng-gsl) \
$(use_with prng urng-prng) \
$(use_with rngstreams urng-rngstream)
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc AUTHORS README NEWS KNOWN-PROBLEMS THANKS UPGRADE
insinto /usr/share/doc/${PF}
if use doc; then
doins doc/${PN}.pdf || die
fi
if use examples; then
emake distclean -C examples
rm -f examples/Makefile*
doins -r examples
fi
}
|