Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/frobby/
Date: Thu, 08 Feb 2018 00:10:43
Message-Id: 1518047950.c136c12a1ffebae34f8c15d1033f0fb3de813160.asturm@gentoo
1 commit: c136c12a1ffebae34f8c15d1033f0fb3de813160
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Wed Feb 7 18:54:17 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 7 23:59:10 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c136c12a
7
8 sci-mathematics/frobby: remove old
9
10 Closes: https://github.com/gentoo/gentoo/pull/7117
11
12 sci-mathematics/frobby/frobby-0.9.0-r1.ebuild | 54 ---------------------------
13 1 file changed, 54 deletions(-)
14
15 diff --git a/sci-mathematics/frobby/frobby-0.9.0-r1.ebuild b/sci-mathematics/frobby/frobby-0.9.0-r1.ebuild
16 deleted file mode 100644
17 index 42427b592bb..00000000000
18 --- a/sci-mathematics/frobby/frobby-0.9.0-r1.ebuild
19 +++ /dev/null
20 @@ -1,54 +0,0 @@
21 -# Copyright 1999-2013 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=4
25 -
26 -inherit eutils
27 -
28 -DESCRIPTION="Software system and project for computations with monomial ideals"
29 -HOMEPAGE="http://www.broune.com/frobby/"
30 -SRC_URI="http://www.broune.com/frobby/frobby_v${PV}.tar.gz"
31 -
32 -LICENSE="GPL-2"
33 -SLOT="0"
34 -KEYWORDS="amd64 ~arm x86"
35 -IUSE="doc static-libs"
36 -
37 -RDEPEND="dev-libs/gmp[cxx]"
38 -DEPEND="${RDEPEND}
39 - doc? ( virtual/latex-base )"
40 -
41 -S="${WORKDIR}/frobby_v${PV}"
42 -
43 -src_prepare() {
44 - epatch \
45 - "${FILESDIR}/${PN}-cflags-no-strip-soname.patch" \
46 - "${FILESDIR}/${PN}-gcc-4.7.patch" \
47 - "${FILESDIR}/${PN}-gmp-5.1.patch"
48 - # CXXFLAGS are called CPPFLAGS
49 - sed "s/CPPFLAGS/CXXFLAGS/" -i Makefile || die
50 -}
51 -
52 -src_compile() {
53 - # Makefile uses the value of CXX which may be defined in /etc/env,
54 - # breaking cross-compile.
55 - CXX=$(tc-getCXX) emake
56 - MODE=shared CXX=$(tc-getCXX) emake library
57 - use static-libs && CXX=$(tc-getCXX) emake library
58 - use doc && emake docPdf
59 -}
60 -
61 -src_install() {
62 - dobin bin/frobby
63 - dolib.so bin/libfrobby.so
64 - dosym libfrobby.so "${PREFIX}/usr/$(get_libdir)/libfrobby.so.0"
65 - use static-libs && dolib.a bin/libfrobby.a
66 -
67 - insinto /usr/include
68 - doins src/frobby.h
69 -
70 - insinto /usr/include/"${PN}"
71 - doins src/stdinc.h
72 -
73 - use doc && dodoc bin/manual.pdf
74 -}