Gentoo Archives: gentoo-commits

From: "Tobias Scherbaum (dertobi123)" <dertobi123@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-analyzer/httping: ChangeLog httping-1.2.9.ebuild httping-1.2.5.ebuild
Date: Mon, 25 Aug 2008 20:51:42
Message-Id: E1KXj2J-0005pC-W6@stork.gentoo.org
1 dertobi123 08/08/25 20:51:39
2
3 Modified: ChangeLog
4 Added: httping-1.2.9.ebuild
5 Removed: httping-1.2.5.ebuild
6 Log:
7 Version bump, #234741
8 (Portage version: 2.2_rc8/cvs/Linux 2.6.25-gentoo-r7 x86_64)
9
10 Revision Changes Path
11 1.45 net-analyzer/httping/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/httping/ChangeLog?rev=1.45&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/httping/ChangeLog?rev=1.45&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/httping/ChangeLog?r1=1.44&r2=1.45
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-analyzer/httping/ChangeLog,v
20 retrieving revision 1.44
21 retrieving revision 1.45
22 diff -u -r1.44 -r1.45
23 --- ChangeLog 14 Aug 2008 14:55:42 -0000 1.44
24 +++ ChangeLog 25 Aug 2008 20:51:39 -0000 1.45
25 @@ -1,6 +1,12 @@
26 # ChangeLog for net-analyzer/httping
27 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/httping/ChangeLog,v 1.44 2008/08/14 14:55:42 armin76 Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/httping/ChangeLog,v 1.45 2008/08/25 20:51:39 dertobi123 Exp $
30 +
31 +*httping-1.2.9 (25 Aug 2008)
32 +
33 + 25 Aug 2008; Tobias Scherbaum <dertobi123@g.o>
34 + -httping-1.2.5.ebuild, +httping-1.2.9.ebuild:
35 + Version bump, #234741
36
37 14 Aug 2008; Raúl Porcel <armin76@g.o> httping-1.2.6.ebuild:
38 x86 stable, add ~sparc
39
40
41
42 1.1 net-analyzer/httping/httping-1.2.9.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/httping/httping-1.2.9.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/httping/httping-1.2.9.ebuild?rev=1.1&content-type=text/plain
46
47 Index: httping-1.2.9.ebuild
48 ===================================================================
49 # Copyright 1999-2008 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.2.9.ebuild,v 1.1 2008/08/25 20:51:39 dertobi123 Exp $
52
53 inherit toolchain-funcs
54
55 DESCRIPTION="http protocol ping-like program"
56 HOMEPAGE="http://www.vanheusden.com/httping/"
57 SRC_URI="http://www.vanheusden.com/${PN}/${P}.tgz"
58
59 LICENSE="GPL-2"
60 SLOT="0"
61 KEYWORDS="~amd64 ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86"
62 IUSE="ssl"
63
64 DEPEND=">=sys-libs/ncurses-5
65 ssl? ( dev-libs/openssl )"
66
67 src_compile() {
68 local makefile
69 use ssl || makefile="-f Makefile.nossl"
70 emake CC="$(tc-getCC)" ${makefile} || die "emake failed"
71 }
72
73 src_install() {
74 dobin httping || die "dobin failed"
75 doman httping.1 || die "doman failed"
76 dodoc readme.txt || die "dodoc failed"
77 }