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 A28B01386F3 for ; Wed, 12 Aug 2015 15:13:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1DE6814040; Wed, 12 Aug 2015 15:13:27 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BEA7714040 for ; Wed, 12 Aug 2015 15:13:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BE356340A03 for ; Wed, 12 Aug 2015 15:13:25 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 68A7611B for ; Wed, 12 Aug 2015 15:13:24 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1439392399.e55a2d9caa18a197b99b0c52328664204c61c3b5.vapier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/curses-hexedit/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-editors/curses-hexedit/curses-hexedit-0.9.7.ebuild X-VCS-Directories: app-editors/curses-hexedit/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: e55a2d9caa18a197b99b0c52328664204c61c3b5 X-VCS-Branch: master Date: Wed, 12 Aug 2015 15:13:24 +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: 42043f36-6af5-41cd-98ea-dda7339a8d5e X-Archives-Hash: 71a3790eac76920368a5921c0982beda commit: e55a2d9caa18a197b99b0c52328664204c61c3b5 Author: Mike Frysinger gentoo org> AuthorDate: Wed Aug 12 15:11:44 2015 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Wed Aug 12 15:13:19 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e55a2d9c app-editors/curses-hexedit: various fixes * Update to EAPI=5 * Use subslots w/ncurses dep * Set up a sane CC value by default * Force CONFIG_SHELL as non-bash /bin/sh breaks things Maybe someday there will be a new release w/configure generated by a recent autoconf and we can drop some of these hacks. app-editors/curses-hexedit/curses-hexedit-0.9.7.ebuild | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/app-editors/curses-hexedit/curses-hexedit-0.9.7.ebuild b/app-editors/curses-hexedit/curses-hexedit-0.9.7.ebuild index 4ba0ace..0d57722 100644 --- a/app-editors/curses-hexedit/curses-hexedit-0.9.7.ebuild +++ b/app-editors/curses-hexedit/curses-hexedit-0.9.7.ebuild @@ -1,10 +1,12 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ # There's already a "hexedit" package in the tree, so name this one differently -EAPI="4" +EAPI="5" + +inherit toolchain-funcs MY_P=${P/curses-} DESCRIPTION="full screen curses hex editor (with insert/delete support)" @@ -16,11 +18,14 @@ SLOT="0" KEYWORDS="amd64 x86" IUSE="" -RDEPEND="sys-libs/ncurses" +RDEPEND="sys-libs/ncurses:=" DEPEND="${RDEPEND}" S=${WORKDIR}/${MY_P} src_configure() { + # Package has an old configure script. + CONFIG_SHELL="/bin/bash" + tc-export CC econf --program-prefix=curses- }