From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 0F36213829C for ; Sat, 4 Jun 2016 13:11:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3A10B254039; Sat, 4 Jun 2016 13:11:44 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D674F254039 for ; Sat, 4 Jun 2016 13:11:43 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 54A19340906 for ; Sat, 4 Jun 2016 13:11:42 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 295C1970 for ; Sat, 4 Jun 2016 13:11:38 +0000 (UTC) From: "Anthony G. Basile" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anthony G. Basile" Message-ID: <1465045999.f43f0120d504d9f32587fd3f60e6813b8e4b4f04.blueness@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/fts-standalone/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-libs/fts-standalone/fts-standalone-0.2-r1.ebuild X-VCS-Directories: sys-libs/fts-standalone/ X-VCS-Committer: blueness X-VCS-Committer-Name: Anthony G. Basile X-VCS-Revision: f43f0120d504d9f32587fd3f60e6813b8e4b4f04 X-VCS-Branch: master Date: Sat, 4 Jun 2016 13:11:38 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: d32a7b8d-a96a-459e-afa8-1c344181138c X-Archives-Hash: e9b10270a22d9f0ee1009098b2606509 commit: f43f0120d504d9f32587fd3f60e6813b8e4b4f04 Author: Anthony G. Basile gentoo org> AuthorDate: Sat Jun 4 13:13:19 2016 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Sat Jun 4 13:13:19 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f43f0120 sys-libs/fts-standalone: don't install man page, bug #584416 Package-Manager: portage-2.2.28 .../fts-standalone/fts-standalone-0.2-r1.ebuild | 27 ++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/sys-libs/fts-standalone/fts-standalone-0.2-r1.ebuild b/sys-libs/fts-standalone/fts-standalone-0.2-r1.ebuild new file mode 100644 index 0000000..75df7f9 --- /dev/null +++ b/sys-libs/fts-standalone/fts-standalone-0.2-r1.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" + +MY_P=${P/-standalone/} + +DESCRIPTION="Standalone fts library for use with musl" +HOMEPAGE="https://dev.gentoo.org/~blueness/fts-standalone" +SRC_URI="https://dev.gentoo.org/~blueness/fts-standalone/${MY_P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm ~mips ~ppc ~x86" +IUSE="" + +DEPEND=" + !sys-libs/glibc + !sys-libs/uclibc" + +S="${WORKDIR}/${MY_P}" + +src_install() { + default + rm -rf "${D}"/usr/share/man +}