Gentoo Archives: gentoo-commits

From: "Anthony G. Basile" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/fts-standalone/
Date: Sat, 04 Jun 2016 13:11:46
Message-Id: 1465045999.f43f0120d504d9f32587fd3f60e6813b8e4b4f04.blueness@gentoo
1 commit: f43f0120d504d9f32587fd3f60e6813b8e4b4f04
2 Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jun 4 13:13:19 2016 +0000
4 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
5 CommitDate: Sat Jun 4 13:13:19 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f43f0120
7
8 sys-libs/fts-standalone: don't install man page, bug #584416
9
10 Package-Manager: portage-2.2.28
11
12 .../fts-standalone/fts-standalone-0.2-r1.ebuild | 27 ++++++++++++++++++++++
13 1 file changed, 27 insertions(+)
14
15 diff --git a/sys-libs/fts-standalone/fts-standalone-0.2-r1.ebuild b/sys-libs/fts-standalone/fts-standalone-0.2-r1.ebuild
16 new file mode 100644
17 index 0000000..75df7f9
18 --- /dev/null
19 +++ b/sys-libs/fts-standalone/fts-standalone-0.2-r1.ebuild
20 @@ -0,0 +1,27 @@
21 +# Copyright 1999-2016 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +# $Id$
24 +
25 +EAPI="5"
26 +
27 +MY_P=${P/-standalone/}
28 +
29 +DESCRIPTION="Standalone fts library for use with musl"
30 +HOMEPAGE="https://dev.gentoo.org/~blueness/fts-standalone"
31 +SRC_URI="https://dev.gentoo.org/~blueness/fts-standalone/${MY_P}.tar.gz"
32 +
33 +LICENSE="BSD"
34 +SLOT="0"
35 +KEYWORDS="~amd64 ~arm ~mips ~ppc ~x86"
36 +IUSE=""
37 +
38 +DEPEND="
39 + !sys-libs/glibc
40 + !sys-libs/uclibc"
41 +
42 +S="${WORKDIR}/${MY_P}"
43 +
44 +src_install() {
45 + default
46 + rm -rf "${D}"/usr/share/man
47 +}