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 9FE0913829C for ; Thu, 9 Jun 2016 21:46:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E0B901425A; Thu, 9 Jun 2016 21:46:28 +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 5FC1314305 for ; Thu, 9 Jun 2016 21:46:28 +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 D9EFA340C9C for ; Thu, 9 Jun 2016 21:46:26 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8772697B for ; Thu, 9 Jun 2016 21:46:23 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1465507104.78ac59d4988c6b330cc05989493398fad944e1e8.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/ytree/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/ytree/ytree-1.98-r1.ebuild X-VCS-Directories: app-misc/ytree/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: 78ac59d4988c6b330cc05989493398fad944e1e8 X-VCS-Branch: master Date: Thu, 9 Jun 2016 21:46:23 +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: 6d0da40c-ed33-4d79-92e2-d0f973e481e4 X-Archives-Hash: 7d49436b748ce13f96e96ac68d222df2 commit: 78ac59d4988c6b330cc05989493398fad944e1e8 Author: Patrice Clement gentoo org> AuthorDate: Wed Jun 8 22:54:00 2016 +0000 Commit: Patrice Clement gentoo org> CommitDate: Thu Jun 9 21:18:24 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78ac59d4 app-misc/ytree: EAPI 6 bump. Package-Manager: portage-2.2.28 app-misc/ytree/ytree-1.98-r1.ebuild | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/app-misc/ytree/ytree-1.98-r1.ebuild b/app-misc/ytree/ytree-1.98-r1.ebuild new file mode 100644 index 0000000..51e78ae --- /dev/null +++ b/app-misc/ytree/ytree-1.98-r1.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit eutils toolchain-funcs + +DESCRIPTION="A curses-based file manager" +HOMEPAGE="http://www.han.de/~werner/ytree.html" +SRC_URI="http://www.han.de/~werner/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND=" + sys-libs/ncurses:0= + sys-libs/readline:0= +" +RDEPEND="${DEPEND}" + +src_prepare() { + default + epatch "${FILESDIR}"/${PN}-1.94-bindir.patch +} + +pkg_setup() { + tc-export CC +} + +src_install() { + emake DESTDIR="${D}usr" install + dodoc CHANGES README THANKS ytree.conf +}