blob: 92e95534745ea3da37dd6b3de493438df6a757f0 (
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
# $Id$
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
}
|