diff options
author | Michael Mair-Keimberger <m.mairkeimberger@gmail.com> | 2018-02-07 19:54:17 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2018-02-08 00:59:10 +0100 |
commit | c136c12a1ffebae34f8c15d1033f0fb3de813160 (patch) | |
tree | 66103faf0df0aa771e65317740b6511763aa93c3 /sci-mathematics/frobby | |
parent | profiles: Remove last-rited media-video/2mandvd (diff) | |
download | gentoo-c136c12a1ffebae34f8c15d1033f0fb3de813160.tar.gz gentoo-c136c12a1ffebae34f8c15d1033f0fb3de813160.tar.bz2 gentoo-c136c12a1ffebae34f8c15d1033f0fb3de813160.zip |
sci-mathematics/frobby: remove old
Closes: https://github.com/gentoo/gentoo/pull/7117
Diffstat (limited to 'sci-mathematics/frobby')
-rw-r--r-- | sci-mathematics/frobby/frobby-0.9.0-r1.ebuild | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/sci-mathematics/frobby/frobby-0.9.0-r1.ebuild b/sci-mathematics/frobby/frobby-0.9.0-r1.ebuild deleted file mode 100644 index 42427b592bb2..000000000000 --- a/sci-mathematics/frobby/frobby-0.9.0-r1.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=4 - -inherit eutils - -DESCRIPTION="Software system and project for computations with monomial ideals" -HOMEPAGE="http://www.broune.com/frobby/" -SRC_URI="http://www.broune.com/frobby/frobby_v${PV}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~arm x86" -IUSE="doc static-libs" - -RDEPEND="dev-libs/gmp[cxx]" -DEPEND="${RDEPEND} - doc? ( virtual/latex-base )" - -S="${WORKDIR}/frobby_v${PV}" - -src_prepare() { - epatch \ - "${FILESDIR}/${PN}-cflags-no-strip-soname.patch" \ - "${FILESDIR}/${PN}-gcc-4.7.patch" \ - "${FILESDIR}/${PN}-gmp-5.1.patch" - # CXXFLAGS are called CPPFLAGS - sed "s/CPPFLAGS/CXXFLAGS/" -i Makefile || die -} - -src_compile() { - # Makefile uses the value of CXX which may be defined in /etc/env, - # breaking cross-compile. - CXX=$(tc-getCXX) emake - MODE=shared CXX=$(tc-getCXX) emake library - use static-libs && CXX=$(tc-getCXX) emake library - use doc && emake docPdf -} - -src_install() { - dobin bin/frobby - dolib.so bin/libfrobby.so - dosym libfrobby.so "${PREFIX}/usr/$(get_libdir)/libfrobby.so.0" - use static-libs && dolib.a bin/libfrobby.a - - insinto /usr/include - doins src/frobby.h - - insinto /usr/include/"${PN}" - doins src/stdinc.h - - use doc && dodoc bin/manual.pdf -} |