Gentoo Archives: gentoo-commits

From: Michael Palimaka <kensington@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/mapm/
Date: Thu, 22 Feb 2018 09:14:28
Message-Id: 1519290853.bcfa294b6ed8e086119b0738a477c1d5f3f73adf.kensington@gentoo
1 commit: bcfa294b6ed8e086119b0738a477c1d5f3f73adf
2 Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
3 AuthorDate: Thu Feb 22 09:13:34 2018 +0000
4 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 22 09:14:13 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bcfa294b
7
8 dev-libs/mapm: remove 4.9.5-r0
9
10 Package-Manager: Portage-2.3.19, Repoman-2.3.6
11
12 dev-libs/mapm/mapm-4.9.5.ebuild | 45 -----------------------------------------
13 1 file changed, 45 deletions(-)
14
15 diff --git a/dev-libs/mapm/mapm-4.9.5.ebuild b/dev-libs/mapm/mapm-4.9.5.ebuild
16 deleted file mode 100644
17 index a2c211d3ebc..00000000000
18 --- a/dev-libs/mapm/mapm-4.9.5.ebuild
19 +++ /dev/null
20 @@ -1,45 +0,0 @@
21 -# Copyright 1999-2013 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI="2"
25 -
26 -inherit eutils multilib toolchain-funcs
27 -
28 -DESCRIPTION="Mike's Arbitrary Precision Math Library"
29 -HOMEPAGE="http://www.tc.umn.edu/~ringx004/mapm-main.html"
30 -SRC_URI="http://www.tc.umn.edu/~ringx004/${P}.tar.gz"
31 -
32 -LICENSE="mapm-4.9.5"
33 -SLOT="0"
34 -KEYWORDS="amd64 ~ppc ~sparc x86"
35 -IUSE=""
36 -
37 -DEPEND=""
38 -RDEPEND=""
39 -
40 -S="${WORKDIR}/${PN}_${PV}"
41 -
42 -src_prepare() {
43 - epatch "${FILESDIR}/${PV}-missing_include.patch"
44 -}
45 -
46 -src_compile() {
47 - $(tc-getCC) -c -Wall ${CFLAGS} -fPIC map*.c || die "compiling sources failed"
48 - $(tc-getCC) -shared ${LDFLAGS} -Wl,--soname=libmapm.so -o libmapm.so.0 map*.o || die "linking sources failed"
49 -}
50 -
51 -src_install() {
52 - dolib.so libmapm.so.0
53 -# dosym libmapm.so.0 /usr/$(get_libdir)/libmapm.so
54 -
55 - insinto /usr/include
56 - doins m_apm.h
57 -
58 - insinto /usr/share/doc/${PF}/examples
59 - doins calc.c validate.c primenum.c cpp_demo.cpp
60 -
61 - cd DOCS
62 - dodoc README article.pdf algorithms.used commentary.txt \
63 - cpp_function.ref function.ref history.txt struct.ref
64 -
65 -}