blob: 21a0b45cb7f2907be3930b936cf1ff9a50556896 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/arprec/arprec-2.2.2.ebuild,v 1.1 2009/04/13 21:48:34 grozin Exp $
EAPI=2
DESCRIPTION="Arbitrary precision float arithmetics and functions"
IUSE="fortran qd"
HOMEPAGE="http://crd.lbl.gov/~dhbailey/mpdist/"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~x86"
SRC_URI="http://crd.lbl.gov/~dhbailey/mpdist/${P}.tar.gz"
DEPEND="qd? ( sci-libs/qd )"
src_configure() {
econf $(use_enable fortran enable_fortran) \
$(use_enable qd enable_qd)
}
src_compile() {
emake || die "emake failed"
if use fortran; then
emake toolkit || die "emake toolkit failed"
fi
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc README AUTHORS NEWS TODO || die "dodoc failed"
if use fortran; then
cd toolkit
./mathinit || die "mathinit failed"
exeinto /usr/libexec/${PN}
doexe mathtool || die "mathtool install failed"
insinto /usr/libexec/${PN}
doins *.dat || die "mathtool data install failed"
docinto toolkit
dodoc README || die "mathtool doc install failed"
fi
cd "${D}"/usr/share/doc || die "cd failed"
mv ${PN}/${PN}.pdf ${PF}/ || die "mv failed"
rm -rf ${PN}/ || die "rm failed"
}
|