Gentoo Archives: gentoo-commits

From: "Jeroen Roovers (jer)" <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-analyzer/httping: ChangeLog httping-2.3.4.ebuild
Date: Tue, 04 Feb 2014 06:49:33
Message-Id: 20140204064927.E51832004C@flycatcher.gentoo.org
1 jer 14/02/04 06:49:27
2
3 Modified: ChangeLog httping-2.3.4.ebuild
4 Log:
5 Fix building against sys-libs/ncurses[tinfo].
6
7 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key A792A613)
8
9 Revision Changes Path
10 1.118 net-analyzer/httping/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/httping/ChangeLog?rev=1.118&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/httping/ChangeLog?rev=1.118&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/httping/ChangeLog?r1=1.117&r2=1.118
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-analyzer/httping/ChangeLog,v
19 retrieving revision 1.117
20 retrieving revision 1.118
21 diff -u -r1.117 -r1.118
22 --- ChangeLog 4 Feb 2014 03:36:24 -0000 1.117
23 +++ ChangeLog 4 Feb 2014 06:49:27 -0000 1.118
24 @@ -1,6 +1,9 @@
25 # ChangeLog for net-analyzer/httping
26 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/httping/ChangeLog,v 1.117 2014/02/04 03:36:24 radhermit Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/httping/ChangeLog,v 1.118 2014/02/04 06:49:27 jer Exp $
29 +
30 + 04 Feb 2014; Jeroen Roovers <jer@g.o> httping-2.3.4.ebuild:
31 + Fix building against sys-libs/ncurses[tinfo].
32
33 *httping-2.3.4 (04 Feb 2014)
34
35
36
37
38 1.2 net-analyzer/httping/httping-2.3.4.ebuild
39
40 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/httping/httping-2.3.4.ebuild?rev=1.2&view=markup
41 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/httping/httping-2.3.4.ebuild?rev=1.2&content-type=text/plain
42 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/httping/httping-2.3.4.ebuild?r1=1.1&r2=1.2
43
44 Index: httping-2.3.4.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/net-analyzer/httping/httping-2.3.4.ebuild,v
47 retrieving revision 1.1
48 retrieving revision 1.2
49 diff -u -r1.1 -r1.2
50 --- httping-2.3.4.ebuild 4 Feb 2014 03:36:24 -0000 1.1
51 +++ httping-2.3.4.ebuild 4 Feb 2014 06:49:27 -0000 1.2
52 @@ -1,6 +1,6 @@
53 # Copyright 1999-2014 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/httping/httping-2.3.4.ebuild,v 1.1 2014/02/04 03:36:24 radhermit Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/httping/httping-2.3.4.ebuild,v 1.2 2014/02/04 06:49:27 jer Exp $
57
58 EAPI=5
59 inherit eutils toolchain-funcs
60 @@ -19,7 +19,10 @@
61 ncurses? ( >=sys-libs/ncurses-5 )
62 ssl? ( dev-libs/openssl )
63 "
64 -DEPEND="${RDEPEND}"
65 +DEPEND="
66 + ${RDEPEND}
67 + ncurses? ( virtual/pkgconfig )
68 +"
69
70 # This would bring in test? ( dev-util/cppcheck ) but unlike
71 # upstream we should only care about compile/run time testing
72 @@ -32,6 +35,8 @@
73 src_configure() {
74 # not an autotools script
75 echo > makefile.inc || die
76 +
77 + use ncurses && LDFLAGS+=" $( $( tc-getPKG_CONFIG ) --libs ncurses )"
78 }
79
80 src_compile() {