Gentoo Archives: gentoo-commits

From: "Peter Volkov (pva)" <pva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-analyzer/httping: ChangeLog httping-1.5.1-r1.ebuild
Date: Wed, 03 Aug 2011 11:27:42
Message-Id: 20110803112732.B39422004C@flycatcher.gentoo.org
1 pva 11/08/03 11:27:32
2
3 Modified: ChangeLog
4 Added: httping-1.5.1-r1.ebuild
5 Log:
6 Fix bind option, bug 367537 wrt Denys and Folkert van Heusden.
7
8 (Portage version: 2.1.10.7/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.69 net-analyzer/httping/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/httping/ChangeLog?rev=1.69&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/httping/ChangeLog?rev=1.69&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/httping/ChangeLog?r1=1.68&r2=1.69
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-analyzer/httping/ChangeLog,v
20 retrieving revision 1.68
21 retrieving revision 1.69
22 diff -u -r1.68 -r1.69
23 --- ChangeLog 28 Jul 2011 07:09:46 -0000 1.68
24 +++ ChangeLog 3 Aug 2011 11:27:32 -0000 1.69
25 @@ -1,6 +1,12 @@
26 # ChangeLog for net-analyzer/httping
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/httping/ChangeLog,v 1.68 2011/07/28 07:09:46 pva Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/httping/ChangeLog,v 1.69 2011/08/03 11:27:32 pva Exp $
30 +
31 +*httping-1.5.1-r1 (03 Aug 2011)
32 +
33 + 03 Aug 2011; Peter Volkov <pva@g.o> +httping-1.5.1-r1.ebuild,
34 + +files/httping-1.5.1-bind.patch:
35 + Fix bind option, bug 367537 wrt Denys and Folkert van Heusden.
36
37 *httping-1.5.1 (28 Jul 2011)
38
39
40
41
42 1.1 net-analyzer/httping/httping-1.5.1-r1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/httping/httping-1.5.1-r1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/httping/httping-1.5.1-r1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: httping-1.5.1-r1.ebuild
48 ===================================================================
49 # Copyright 1999-2011 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/net-analyzer/httping/httping-1.5.1-r1.ebuild,v 1.1 2011/08/03 11:27:32 pva Exp $
52
53 EAPI="4"
54
55 inherit eutils flag-o-matic toolchain-funcs
56
57 MY_P="${P/_beta1/beta}"
58
59 DESCRIPTION="http protocol ping-like program"
60 HOMEPAGE="http://www.vanheusden.com/httping/"
61 SRC_URI="http://www.vanheusden.com/${PN}/${MY_P}.tgz"
62
63 LICENSE="GPL-2"
64 SLOT="0"
65 KEYWORDS="~amd64 ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86"
66 IUSE="debug ssl"
67
68 RDEPEND=">=sys-libs/ncurses-5
69 ssl? ( dev-libs/openssl )"
70 DEPEND="${RDEPEND}"
71
72 S="${WORKDIR}"/${MY_P}
73
74 src_prepare() {
75 epatch ${FILESDIR}/${P}-bind.patch
76 }
77
78 src_compile() {
79 emake \
80 CC="$(tc-getCC)" \
81 $(use ssl && echo SSL=yes || echo SSL=no) \
82 $(use debug && echo DEBUG=yes || echo DEBUG=no)
83 }
84
85 src_install() {
86 dobin httping
87 doman httping.1
88 dodoc readme.txt
89 }