You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sci-libs/fplll/fplll-4.0.4.ebuild

34 lines
809 B

# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/fplll/fplll-4.0.4.ebuild,v 1.1 2013/07/15 22:41:41 hasufell Exp $
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
}