Install this version:
emerge -a =dev-libs/libtomfloat-0.02
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =dev-libs/libtomfloat-0.02
Or alternatively:
emerge --autounmask-write -a =dev-libs/libtomfloat-0.02
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit toolchain-funcs
DESCRIPTION="library for floating point number manipulation"
HOMEPAGE="https://www.libtom.net/"
SRC_URI="https://github.com/libtom/libtomfloat/releases/download/${PV}/ltf-${PV}.tar.bz2"
LICENSE="WTFPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
DEPEND="dev-libs/libtommath"
RDEPEND="${DEPEND}"
src_prepare() {
default
sed -i \
-e 's:\<ar\>:$(AR):' \
-e 's:\<ranlib\>:$(RANLIB):' \
-e "/^LIBPATH/s:/lib:/$(get_libdir):" \
makefile || die "Fixing makefile failed"
tc-export AR CC RANLIB
}
src_install() {
default
dodoc changes.txt float.pdf WARNING
docinto demos
dodoc demos/ex1.c
}
| Type | File | Size | Source URLs |
|---|---|---|---|
| DIST | ltf-0.02.tar.bz2 | 151029 bytes | https://github.com/libtom/libtomfloat/releases/download/0.02/ltf-0.02.tar.bz2 |