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 0D3A2139085 for ; Sat, 21 Jan 2017 09:57:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 210DDE0B90; Sat, 21 Jan 2017 09:56:59 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 00174E0B90 for ; Sat, 21 Jan 2017 09:56:58 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 4888134168E for ; Sat, 21 Jan 2017 09:56:58 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id ABDC12B35 for ; Sat, 21 Jan 2017 09:56:56 +0000 (UTC) From: "Tim Harder" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Tim Harder" Message-ID: <1484992495.c94ec542555baba1c7047e0ea64aa04cadc12b11.radhermit@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/hteditor/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-editors/hteditor/hteditor-2.1.0.ebuild X-VCS-Directories: app-editors/hteditor/ X-VCS-Committer: radhermit X-VCS-Committer-Name: Tim Harder X-VCS-Revision: c94ec542555baba1c7047e0ea64aa04cadc12b11 X-VCS-Branch: master Date: Sat, 21 Jan 2017 09:56:56 +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: fda79f20-3b22-4081-92e7-041d3ae38602 X-Archives-Hash: ca2ab3ce13887f5c8e144b8f04754e86 commit: c94ec542555baba1c7047e0ea64aa04cadc12b11 Author: Tim Harder gentoo org> AuthorDate: Sat Jan 21 09:50:41 2017 +0000 Commit: Tim Harder gentoo org> CommitDate: Sat Jan 21 09:54:55 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c94ec542 app-editors/hteditor: update to EAPI 6 and add ncurses slot dep app-editors/hteditor/hteditor-2.1.0.ebuild | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/app-editors/hteditor/hteditor-2.1.0.ebuild b/app-editors/hteditor/hteditor-2.1.0.ebuild index bd55f0d..a7ff98c 100644 --- a/app-editors/hteditor/hteditor-2.1.0.ebuild +++ b/app-editors/hteditor/hteditor-2.1.0.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 +EAPI=6 inherit toolchain-funcs @@ -17,7 +17,7 @@ SLOT="0" KEYWORDS="amd64 ppc ppc64 x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x86-solaris" IUSE="X" -RDEPEND="sys-libs/ncurses +RDEPEND="sys-libs/ncurses:0= X? ( x11-libs/libX11 ) >=dev-libs/lzo-2" DEPEND="${RDEPEND} @@ -42,8 +42,8 @@ src_install() { #For prefix chmod u+x "${S}/install-sh" - default - - dohtml doc/*.html + local HTML_DOCS="doc/*.html" doinfo doc/*.info + + default }