blob: 05e22e29205d6358e2262cc35029b22140189c2d (
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
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/flint/flint-2.3.ebuild,v 1.2 2013/05/21 07:10:10 patrick Exp $
EAPI="5"
inherit eutils multilib
DESCRIPTION="Fast Library for Number Theory"
HOMEPAGE="http://www.flintlib.org/"
SRC_URI="http://www.flintlib.org/${P}.tar.gz"
RESTRICT="mirror"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="dev-libs/mpfr
dev-libs/ntl
sci-libs/mpir
"
RDEPEND="${DEPEND}"
src_prepare() {
# Correct lib paths to be multilib-proper #470732
sed -i -e 's~/lib~/'$(get_libdir)'~' Makefile.in || die
}
src_configure() {
# handwritten script, needs extra stabbing
./configure --with-mpir=/usr --with-mpfr=/usr --with-ntl=/usr --prefix="${D}/usr" || die
}
|