From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-849986-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 67F6E1388C1 for <garchives@archives.gentoo.org>; Fri, 4 Dec 2015 08:34:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B8BF121C005; Fri, 4 Dec 2015 08:34:41 +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 51BF321C005 for <gentoo-commits@lists.gentoo.org>; Fri, 4 Dec 2015 08:34:41 +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 2B5173409F9 for <gentoo-commits@lists.gentoo.org>; Fri, 4 Dec 2015 08:34:40 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 12934A92 for <gentoo-commits@lists.gentoo.org>; Fri, 4 Dec 2015 08:34:38 +0000 (UTC) From: "Justin Lecher" <jlec@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" <jlec@gentoo.org> Message-ID: <1449213539.993e2d1b65bc863e86e6c45b2977721cde97d4dc.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/dhex/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-editors/dhex/dhex-0.68.ebuild X-VCS-Directories: app-editors/dhex/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 993e2d1b65bc863e86e6c45b2977721cde97d4dc X-VCS-Branch: master Date: Fri, 4 Dec 2015 08:34:38 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: c0fabee6-78ba-4fb3-a16a-8be53e9f052d X-Archives-Hash: 19dfdfa04d7c0e2d9e95fc278da52f70 commit: 993e2d1b65bc863e86e6c45b2977721cde97d4dc Author: Justin Lecher <jlec <AT> gentoo <DOT> org> AuthorDate: Fri Dec 4 07:18:59 2015 +0000 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org> CommitDate: Fri Dec 4 07:18:59 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=993e2d1b app-editors/dhex: Fix for ncurses[tinfo] Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=564210 Package-Manager: portage-2.2.25 Signed-off-by: Justin Lecher <jlec <AT> gentoo.org> app-editors/dhex/dhex-0.68.ebuild | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/app-editors/dhex/dhex-0.68.ebuild b/app-editors/dhex/dhex-0.68.ebuild index c8f3f05..c288764 100644 --- a/app-editors/dhex/dhex-0.68.ebuild +++ b/app-editors/dhex/dhex-0.68.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=4 +EAPI=5 inherit eutils toolchain-funcs @@ -17,7 +17,7 @@ SLOT="0" KEYWORDS="amd64 ~arm ~mips x86" IUSE="" -DEPEND="sys-libs/ncurses" +DEPEND="sys-libs/ncurses:=" RDEPEND="${DEPEND}" S=${WORKDIR}/${MY_P} @@ -27,7 +27,9 @@ src_prepare() { } src_compile() { - emake CC="$(tc-getCC)" + emake \ + CC="$(tc-getCC)" \ + LIBS="$($(tc-getPKG_CONFIG) --libs ncurses)" } src_install() {