Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/dhex/
Date: Fri, 04 Dec 2015 08:34:44
Message-Id: 1449213539.993e2d1b65bc863e86e6c45b2977721cde97d4dc.jlec@gentoo
1 commit: 993e2d1b65bc863e86e6c45b2977721cde97d4dc
2 Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
3 AuthorDate: Fri Dec 4 07:18:59 2015 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Fri Dec 4 07:18:59 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=993e2d1b
7
8 app-editors/dhex: Fix for ncurses[tinfo]
9
10 Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=564210
11
12 Package-Manager: portage-2.2.25
13 Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
14
15 app-editors/dhex/dhex-0.68.ebuild | 10 ++++++----
16 1 file changed, 6 insertions(+), 4 deletions(-)
17
18 diff --git a/app-editors/dhex/dhex-0.68.ebuild b/app-editors/dhex/dhex-0.68.ebuild
19 index c8f3f05..c288764 100644
20 --- a/app-editors/dhex/dhex-0.68.ebuild
21 +++ b/app-editors/dhex/dhex-0.68.ebuild
22 @@ -1,8 +1,8 @@
23 -# Copyright 1999-2014 Gentoo Foundation
24 +# Copyright 1999-2015 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 # $Id$
27
28 -EAPI=4
29 +EAPI=5
30
31 inherit eutils toolchain-funcs
32
33 @@ -17,7 +17,7 @@ SLOT="0"
34 KEYWORDS="amd64 ~arm ~mips x86"
35 IUSE=""
36
37 -DEPEND="sys-libs/ncurses"
38 +DEPEND="sys-libs/ncurses:="
39 RDEPEND="${DEPEND}"
40
41 S=${WORKDIR}/${MY_P}
42 @@ -27,7 +27,9 @@ src_prepare() {
43 }
44
45 src_compile() {
46 - emake CC="$(tc-getCC)"
47 + emake \
48 + CC="$(tc-getCC)" \
49 + LIBS="$($(tc-getPKG_CONFIG) --libs ncurses)"
50 }
51
52 src_install() {