blob: efd01b83006d854e635b0b4e1d51156c90c0cc06 (
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
34
35
36
37
38
39
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools
DESCRIPTION="Implementations of the floating-point LLL reduction algorithm"
HOMEPAGE="https://github.com/fplll/fplll"
SRC_URI="https://github.com/${PN}/${PN}/releases/download/${PV}/${P}.tar.gz"
LICENSE="LGPL-2.1+"
SLOT="0/7"
KEYWORDS="~amd64 ~x86"
IUSE="static-libs qd"
BDEPEND="virtual/pkgconfig"
DEPEND="dev-libs/gmp:0
dev-libs/mpfr:0
qd? ( sci-libs/qd )"
RDEPEND="${DEPEND}"
PATCHES=( "${FILESDIR}/${P}-with-qd-fix.patch" )
src_prepare() {
default
eautoreconf
}
src_configure() {
econf \
$(use_with qd) \
$(use_enable static-libs static)
}
src_install() {
default
find "${ED}" -type f -name '*.la' -delete || die
}
|