diff options
Diffstat (limited to 'sci-mathematics/arb/arb-2.11.1-r1.ebuild')
-rw-r--r-- | sci-mathematics/arb/arb-2.11.1-r1.ebuild | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/sci-mathematics/arb/arb-2.11.1-r1.ebuild b/sci-mathematics/arb/arb-2.11.1-r1.ebuild deleted file mode 100644 index f27adcd77127..000000000000 --- a/sci-mathematics/arb/arb-2.11.1-r1.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit eutils ltprune toolchain-funcs - -DESCRIPTION="C library for arbitrary-precision interval arithmetic" -HOMEPAGE="http://fredrikj.net/arb/" -SRC_URI="https://github.com/fredrik-johansson/arb/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-2+" -SLOT="0/2" -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" -IUSE="static-libs" - -RDEPEND=" - dev-libs/gmp:0= - dev-libs/mpfr:0= - >=sci-mathematics/flint-2.5.0:= -" -DEPEND="${RDEPEND}" - -PATCHES=( "${FILESDIR}"/${P}-pie-ftbs.patch ) - -src_configure() { - # Not an autoconf configure script. - # Note that it appears to have been cloned from the flint configure script - # and that not all the options offered are valid. - tc-export CC AR CXX - ./configure \ - --prefix="${EPREFIX}/usr" \ - --with-flint="${EPREFIX}/usr" \ - --with-gmp="${EPREFIX}/usr" \ - --with-mpfr="${EPREFIX}/usr" \ - $(use_enable static-libs static) \ - CFLAGS="${CPPFLAGS} ${CFLAGS}" || die -} - -src_compile() { - emake verbose -} - -src_test() { - # Have to set the library path otherwise a previous install of libarb may be loaded. - # This is in part a consequence of setting the soname/installnae I think. - if [[ ${CHOST} == *-darwin* ]] ; then - DYLD_LIBRARY_PATH="${S}" emake AT= QUIET_CC= QUIET_CXX= QUIET_AR= check - else - LD_LIBRARY_PATH="${S}" emake AT= QUIET_CC= QUIET_CXX= QUIET_AR= check - fi -} - -src_install() { - emake DESTDIR="${D}" LIBDIR="$(get_libdir)" install - use static-libs || prune_libtool_files --all - dodoc README.md -} |