Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-analyzer/httping: httping-2.3.4.ebuild ChangeLog
Date: Tue, 04 Feb 2014 03:36:27
Message-Id: 20140204033624.B7A332004B@flycatcher.gentoo.org
1 radhermit 14/02/04 03:36:24
2
3 Modified: ChangeLog
4 Added: httping-2.3.4.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
9
10 Revision Changes Path
11 1.117 net-analyzer/httping/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/httping/ChangeLog?rev=1.117&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/httping/ChangeLog?rev=1.117&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/httping/ChangeLog?r1=1.116&r2=1.117
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-analyzer/httping/ChangeLog,v
20 retrieving revision 1.116
21 retrieving revision 1.117
22 diff -u -r1.116 -r1.117
23 --- ChangeLog 27 Jul 2013 13:26:58 -0000 1.116
24 +++ ChangeLog 4 Feb 2014 03:36:24 -0000 1.117
25 @@ -1,6 +1,11 @@
26 # ChangeLog for net-analyzer/httping
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/httping/ChangeLog,v 1.116 2013/07/27 13:26:58 jer Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/httping/ChangeLog,v 1.117 2014/02/04 03:36:24 radhermit Exp $
31 +
32 +*httping-2.3.4 (04 Feb 2014)
33 +
34 + 04 Feb 2014; Tim Harder <radhermit@g.o> +httping-2.3.4.ebuild:
35 + Version bump.
36
37 27 Jul 2013; Jeroen Roovers <jer@g.o> files/httping-2.2.1-flags.patch:
38 Fix patch.
39
40
41
42 1.1 net-analyzer/httping/httping-2.3.4.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/httping/httping-2.3.4.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/httping/httping-2.3.4.ebuild?rev=1.1&content-type=text/plain
46
47 Index: httping-2.3.4.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/net-analyzer/httping/httping-2.3.4.ebuild,v 1.1 2014/02/04 03:36:24 radhermit Exp $
52
53 EAPI=5
54 inherit eutils toolchain-funcs
55
56 DESCRIPTION="http protocol ping-like program"
57 HOMEPAGE="http://www.vanheusden.com/httping/"
58 SRC_URI="http://www.vanheusden.com/${PN}/${P}.tgz"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~amd64 ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86"
63 IUSE="debug fftw ncurses ssl tfo"
64
65 RDEPEND="
66 fftw? ( sci-libs/fftw:3.0 )
67 ncurses? ( >=sys-libs/ncurses-5 )
68 ssl? ( dev-libs/openssl )
69 "
70 DEPEND="${RDEPEND}"
71
72 # This would bring in test? ( dev-util/cppcheck ) but unlike
73 # upstream we should only care about compile/run time testing
74 RESTRICT="test"
75
76 src_prepare() {
77 epatch "${FILESDIR}"/${PN}-2.2.1-flags.patch
78 }
79
80 src_configure() {
81 # not an autotools script
82 echo > makefile.inc || die
83 }
84
85 src_compile() {
86 emake \
87 CC="$(tc-getCC)" \
88 FW=$(usex fftw) \
89 DEBUG=$(usex debug) \
90 NC=$(usex ncurses) \
91 SSL=$(usex ssl) \
92 TFO=$(usex tfo)
93 }
94
95 src_install() {
96 dobin httping
97 doman httping.1
98 }