mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-05 12:38:09 -07:00
sci-libs/arprec: Remove old
Package-Manager: portage-2.3.2
This commit is contained in:
@@ -1,3 +1 @@
|
||||
DIST arprec-2.2.16.tar.gz 830227 SHA256 cf71f2a7f3530b57900e67d1282c4a114830d2c00a0fba90819aa8313f11653f SHA512 278bf96402179566d4f2b9a6d69e42d726c81c814f96cd31c19df2c3b61941f3a1858e4a56577548d0fcf526b7db7caca2b7ea7ec57e834e7768d21788e7e672 WHIRLPOOL c55a875af752dfe6700cd714e2d6d34d3100676b8c41d4271065ddb0e754b3c5333cffd7432b45f2dfa0efed8f93dfd3448ac87038b18941a27f6bed1468131c
|
||||
DIST arprec-2.2.17.tar.gz 900043 SHA256 87977981c1145465da51f252d04f11d16ee009d9dc7e8d0da71e4ef56b9fc5eb SHA512 d10f7d3e3d61274a36d253d2b50004bbf15447be3ffbd37bb0334ba62bd624e27fb9e26364fa1b89c1d4dfbb4136ab93d865f990ce123ecf94d9614e3ac567d1 WHIRLPOOL 6daeff384cfc9dfbb5771a177166212370ba724850d27ae99de63d1e2f2bc5f76b2be5c28e1fa0bb1d407a29d46212b0896c5e7f6ba66f9c2830e3a53e3e8b31
|
||||
DIST arprec-2.2.18.tar.gz 1751743 SHA256 12bcbaabbbd475bdcd0f4983bc280bd3888972ed32bcc8fe5f09fb94b7a85ed5 SHA512 372eb0a0c3aceac0d222679058f47c4d1037b5a51524b752b87f1b61c1b25101c34d4e56d9da45b4075ea7040dd59a597e0add4f34be902955dcf209423a6579 WHIRLPOOL 41322123ca1e444dfea5d678fb435dede56ba9704fdec04a0ae3d98766cad431b350652babaa431d579fe7e9e611b8d2e4c60d70c82d38e8699d33c103ef2ac1
|
||||
|
||||
@@ -1,55 +0,0 @@
|
||||
# Copyright 1999-2015 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id$
|
||||
|
||||
EAPI=4
|
||||
|
||||
FORTRAN_NEEDED=fortran
|
||||
AUTOTOOLS_AUTORECONF=1
|
||||
AUTOTOOLS_IN_SOURCE_BUILD=1
|
||||
|
||||
inherit eutils fortran-2 autotools-utils
|
||||
|
||||
DESCRIPTION="Arbitrary precision float arithmetics and functions"
|
||||
HOMEPAGE="http://crd.lbl.gov/~dhbailey/mpdist/"
|
||||
SRC_URI="http://crd.lbl.gov/~dhbailey/mpdist/${P}.tar.gz"
|
||||
|
||||
SLOT="0"
|
||||
LICENSE="BSD"
|
||||
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
|
||||
IUSE="doc cpu_flags_x86_fma3 cpu_flags_x86_fma4 fortran qd static-libs"
|
||||
|
||||
DEPEND="qd? ( sci-libs/qd[fortran=] )"
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
src_configure() {
|
||||
local myeconfargs=(
|
||||
--docdir="${EPREFIX}/usr/share/doc/${PF}"
|
||||
$(use_enable "cpu_flags_x86_fma$(usex cpu_flags_x86_fma3 3 4)" fma)
|
||||
$(use_enable fortran)
|
||||
$(use_enable qd)
|
||||
)
|
||||
autotools-utils_src_configure
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
autotools-utils_src_compile
|
||||
use fortran && autotools-utils_src_compile toolkit
|
||||
}
|
||||
|
||||
src_install() {
|
||||
autotools-utils_src_install
|
||||
if use fortran; then
|
||||
cd toolkit
|
||||
./mathinit || die "mathinit failed"
|
||||
exeinto /usr/libexec/${PN}
|
||||
doexe .libs/mathtool
|
||||
insinto /usr/libexec/${PN}
|
||||
doins *.dat
|
||||
echo > mathtool.exe "#!${EROOT}/bin/sh"
|
||||
echo >> mathtool.exe "cd ${EROOT}/usr/libexec/arprec && exec ./mathtool"
|
||||
newbin mathtool.exe mathtool
|
||||
newdoc README README.mathtool
|
||||
fi
|
||||
use doc || rm "${ED}"/usr/share/doc/${PF}/*.pdf
|
||||
}
|
||||
@@ -1,56 +0,0 @@
|
||||
# Copyright 1999-2015 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id$
|
||||
|
||||
EAPI=5
|
||||
|
||||
FORTRAN_NEEDED=fortran
|
||||
FORTRAN_STANDARD="90"
|
||||
AUTOTOOLS_AUTORECONF=1
|
||||
AUTOTOOLS_IN_SOURCE_BUILD=1
|
||||
|
||||
inherit eutils fortran-2 autotools-utils
|
||||
|
||||
DESCRIPTION="Arbitrary precision float arithmetics and functions"
|
||||
HOMEPAGE="http://crd.lbl.gov/~dhbailey/mpdist/"
|
||||
SRC_URI="http://crd.lbl.gov/~dhbailey/mpdist/${P}.tar.gz"
|
||||
|
||||
SLOT="0"
|
||||
LICENSE="BSD"
|
||||
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
|
||||
IUSE="doc cpu_flags_x86_fma3 cpu_flags_x86_fma4 fortran qd static-libs"
|
||||
|
||||
DEPEND="qd? ( sci-libs/qd:0=[fortran=] )"
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
src_configure() {
|
||||
local myeconfargs=(
|
||||
--docdir="${EPREFIX}/usr/share/doc/${PF}"
|
||||
$(use_enable "cpu_flags_x86_fma$(usex cpu_flags_x86_fma3 3 4)" fma)
|
||||
$(use_enable fortran)
|
||||
$(use_enable qd)
|
||||
)
|
||||
autotools-utils_src_configure
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
autotools-utils_src_compile
|
||||
use fortran && autotools-utils_src_compile toolkit
|
||||
}
|
||||
|
||||
src_install() {
|
||||
autotools-utils_src_install
|
||||
if use fortran; then
|
||||
cd toolkit
|
||||
./mathinit || die "mathinit failed"
|
||||
exeinto /usr/libexec/${PN}
|
||||
doexe .libs/mathtool
|
||||
insinto /usr/libexec/${PN}
|
||||
doins *.dat
|
||||
echo > mathtool.exe "#!${EROOT%/}/bin/sh"
|
||||
echo >> mathtool.exe "cd ${EROOT%/}/usr/libexec/arprec && exec ./mathtool"
|
||||
newbin mathtool.exe mathtool
|
||||
newdoc README README.mathtool
|
||||
fi
|
||||
use doc || rm "${ED}"/usr/share/doc/${PF}/*.pdf
|
||||
}
|
||||
Reference in New Issue
Block a user