blob: aba721c3bc2aa0e16bada3e97457ed4aa7ce96c2 (
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
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
}
|