mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-24 18:58:08 -07:00
30 lines
615 B
Bash
30 lines
615 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
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/8"
|
|
KEYWORDS="amd64 ~riscv ~x86"
|
|
IUSE="qd"
|
|
|
|
BDEPEND="virtual/pkgconfig"
|
|
DEPEND="dev-libs/gmp:0
|
|
dev-libs/mpfr:0
|
|
qd? ( sci-libs/qd )"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
src_configure() {
|
|
econf \
|
|
$(use_with qd)
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
find "${ED}" -type f -name '*.la' -delete || die
|
|
}
|