blob: bb87e6a41656f8522cf8f5a9b0f5d4238cea51ac (
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
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit eutils
DESCRIPTION="Different implementations of the floating-point LLL reduction algorithm"
HOMEPAGE="http://perso.ens-lyon.fr/damien.stehle/index.html#software"
SRC_URI="http://perso.ens-lyon.fr/damien.stehle/fplll/lib${P}.tar.gz"
LICENSE="LGPL-2+"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="static-libs"
DEPEND=">=dev-libs/gmp-4.2.0:0
>=dev-libs/mpfr-2.3.0:0"
RDEPEND="${DEPEND}"
S=${WORKDIR}/lib${P}
src_configure() {
econf \
$(use_enable static-libs static)
}
src_install() {
DOCS="AUTHORS ChangeLog NEWS README" default
dohtml README.html
prune_libtool_files
}
|