Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/9libs/
Date: Fri, 03 Jan 2020 19:08:17
Message-Id: 1578077617.a82c1d74fab751a318cd0efce9c90a6036935125.asturm@gentoo
1 commit: a82c1d74fab751a318cd0efce9c90a6036935125
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jan 3 18:44:52 2020 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 3 18:53:37 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a82c1d74
7
8 dev-libs/9libs: Drop 1.0-r3
9
10 Package-Manager: Portage-2.3.84, Repoman-2.3.20
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 dev-libs/9libs/9libs-1.0-r3.ebuild | 43 --------------------------------------
14 1 file changed, 43 deletions(-)
15
16 diff --git a/dev-libs/9libs/9libs-1.0-r3.ebuild b/dev-libs/9libs/9libs-1.0-r3.ebuild
17 deleted file mode 100644
18 index 22450aa79db..00000000000
19 --- a/dev-libs/9libs/9libs-1.0-r3.ebuild
20 +++ /dev/null
21 @@ -1,43 +0,0 @@
22 -# Copyright 1999-2019 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=4
26 -
27 -inherit eutils toolchain-funcs
28 -
29 -DESCRIPTION="A package of Plan 9 compatibility libraries"
30 -HOMEPAGE="https://www.netlib.org/research/9libs/9libs-1.0.README"
31 -SRC_URI="https://www.netlib.org/research/9libs/${P}.tar.bz2"
32 -
33 -LICENSE="PLAN9"
34 -SLOT="0"
35 -KEYWORDS="amd64 x86"
36 -IUSE=""
37 -
38 -DEPEND="
39 - >=x11-libs/libX11-1.0.0
40 - >=x11-libs/libXt-1.0.0"
41 -RDEPEND="${DEPEND}"
42 -
43 -src_prepare() {
44 - # Bug 385387
45 - epatch "${FILESDIR}/${PN}-va_list.patch"
46 -}
47 -
48 -src_configure() {
49 - tc-export CC
50 - econf \
51 - --includedir=/usr/include/9libs \
52 - --enable-shared
53 -}
54 -
55 -src_install() {
56 - make install DESTDIR="${D}"
57 - dodoc README
58 -
59 - # rename some man pages to avoid collisions with dev-libs/libevent
60 - local f
61 - for f in add balloc bitblt cachechars event frame graphics rgbpix; do
62 - mv "${D}"/usr/share/man/man3/${f}.{3,3g} || die
63 - done
64 -}