You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sci-mathematics/unuran/unuran-1.8.1.ebuild

43 lines
1.1 KiB

# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/unuran/unuran-1.8.1.ebuild,v 1.1 2011/05/03 16:42:20 bicatali Exp $
EAPI=4
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_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() {
default
use doc && dodoc doc/${PN}.pdf
if use examples; then
emake distclean -C examples
rm -f examples/Makefile*
insinto /usr/share/doc/${PF}
doins -r examples
fi
}