summaryrefslogtreecommitdiff
path: root/dev-libs/libtomfloat
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2019-12-15 18:09:03 +0000
committerV3n3RiX <venerix@redcorelinux.org>2019-12-15 18:09:03 +0000
commit7bc9c63c9da678a7e6fceb095d56c634afd22c56 (patch)
tree4a67d50a439e9af63947e5f8b6ba3719af98b6c9 /dev-libs/libtomfloat
parentb284a3168fa91a038925d2ecf5e4791011ea5e7d (diff)
gentoo resync : 15.12.2019
Diffstat (limited to 'dev-libs/libtomfloat')
-rw-r--r--dev-libs/libtomfloat/Manifest2
-rw-r--r--dev-libs/libtomfloat/libtomfloat-0.02-r1.ebuild (renamed from dev-libs/libtomfloat/libtomfloat-0.02.ebuild)19
2 files changed, 11 insertions, 10 deletions
diff --git a/dev-libs/libtomfloat/Manifest b/dev-libs/libtomfloat/Manifest
index b07e358f9d1c..4562bb7a869f 100644
--- a/dev-libs/libtomfloat/Manifest
+++ b/dev-libs/libtomfloat/Manifest
@@ -1,3 +1,3 @@
DIST ltf-0.02.tar.bz2 151029 BLAKE2B a5d34aca69417732f32e2c6fb5ed65ee3492976e0f746199128d1436a7a8bdd1fe79fc10ef4186d7d3beeae2a499dd87dfecbf8c47470194b320170eb369102b SHA512 107af3100acde6fa596c4b15831eb47ab69da4ea5a90fabef60d2d68d238545d22fc363263968d51b87248a9d917ab4457e4a62b7a86300e2fd7ee18b3d29a6a
-EBUILD libtomfloat-0.02.ebuild 672 BLAKE2B 429a56d74ab91911a1a928278fc43efa598ded147f8b2485b12e1060b08ae942b05eb7291a4a79eb07965c3c70c4508311c28d21b24476da57470adc0548ce7a SHA512 ed42587f03c522f69100b62e190099e3a3a49799878489162d50120f6cf28182a7d8011dcb52561fa4172821c7a751cfb7957f1770d8eff2f817ee82b2996d3c
+EBUILD libtomfloat-0.02-r1.ebuild 734 BLAKE2B 728c6c4b864452979abca7769e7d8c482f9819e24636ab8cdefcbf72b5dedc9bb2e0382b0e8a231c505a8865fa40e3978f77ed6dca8ebc4e6822677210346dec SHA512 8f51c9ce5487af0b95d7256d37d28cce95bc07ed31644b26b63b14ae30acf3e18be541e6ecdf313f262e331ce3b8e52214061321f34f34393f363710f797bfdb
MISC metadata.xml 289 BLAKE2B ece359bbc1cd696797428b31c61c58e5d63559ec8bfb734e3869421e1ddccbebe109c854225c924ba71d0321cea7ef3a63b1dee3d56b728a4d53bfd34eca8e37 SHA512 eb4947560bda57063dd746f397daafccc5d30e8aa694d75419a2dd4da56461fd6c82274c13e1ac01f8bad0d742c00f4116c20ceefe50f383988c9d12be27c90c
diff --git a/dev-libs/libtomfloat/libtomfloat-0.02.ebuild b/dev-libs/libtomfloat/libtomfloat-0.02-r1.ebuild
index a72fc3f8942f..48b02dfaa7a6 100644
--- a/dev-libs/libtomfloat/libtomfloat-0.02.ebuild
+++ b/dev-libs/libtomfloat/libtomfloat-0.02-r1.ebuild
@@ -1,33 +1,34 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI="4"
+EAPI=7
-inherit toolchain-funcs multilib
+inherit toolchain-funcs
DESCRIPTION="library for floating point number manipulation"
-HOMEPAGE="http://libtom.org/"
-SRC_URI="http://libtom.org/files/ltf-${PV}.tar.bz2"
+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"
-IUSE=""
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
+ makefile || die "Fixing makefile failed"
tc-export AR CC RANLIB
}
src_install() {
default
- dodoc changes.txt *.pdf WARNING
- docinto demos ; dodoc demos/*
+ dodoc changes.txt float.pdf WARNING
+ docinto demos
+ dodoc demos/ex1.c
}