From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2ED33139694 for ; Sat, 13 May 2017 21:22:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 32237E0C63; Sat, 13 May 2017 21:22:01 +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 0E45BE0C63 for ; Sat, 13 May 2017 21:22:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B176034169D for ; Sat, 13 May 2017 21:21:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1F7657451 for ; Sat, 13 May 2017 21:21:58 +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: <1494710421.fc867d94321c9dbb1844a63c78bbfbf4fae86c57.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.99_p1.ebuild X-VCS-Directories: app-misc/ytree/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: fc867d94321c9dbb1844a63c78bbfbf4fae86c57 X-VCS-Branch: master Date: Sat, 13 May 2017 21:21:58 +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: 4900b748-e7ef-4193-adda-2f851b4e41d2 X-Archives-Hash: 02c9df6aa8b63c8e0bc88a561a5e26d6 commit: fc867d94321c9dbb1844a63c78bbfbf4fae86c57 Author: Patrice Clement gentoo org> AuthorDate: Sat May 13 21:20:21 2017 +0000 Commit: Patrice Clement gentoo org> CommitDate: Sat May 13 21:20:21 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc867d94 app-misc/ytree: drop IUSE variable. Package-Manager: Portage-2.3.3, Repoman-2.3.1 app-misc/ytree/ytree-1.99_p1.ebuild | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/app-misc/ytree/ytree-1.99_p1.ebuild b/app-misc/ytree/ytree-1.99_p1.ebuild index a7e1d131d0f..2d4f7c48fb4 100644 --- a/app-misc/ytree/ytree-1.99_p1.ebuild +++ b/app-misc/ytree/ytree-1.99_p1.ebuild @@ -1,9 +1,10 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 MY_P="${PN}-1.99pl1" + inherit toolchain-funcs DESCRIPTION="A curses-based file manager" @@ -13,19 +14,20 @@ SRC_URI="http://www.han.de/~werner/${MY_P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="amd64 x86" -IUSE="" DEPEND=" sys-libs/ncurses:0= sys-libs/readline:0= " + RDEPEND="${DEPEND}" S="${WORKDIR}/${MY_P}" -DOCS=( CHANGES README THANKS ytree.conf ) PATCHES=( "${FILESDIR}/${PN}-1.94-bindir.patch" ) +DOCS=( CHANGES README THANKS ytree.conf ) + pkg_setup() { tc-export CC }