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-misc/iperf: ChangeLog iperf-2.0.4.ebuild
Date: Wed, 30 Jul 2008 01:49:50
Message-Id: E1KO0p1-0001WC-8P@stork.gentoo.org
1 jer 08/07/30 01:49:47
2
3 Modified: ChangeLog
4 Added: iperf-2.0.4.ebuild
5 Log:
6 Version bump thanks to Jeff Waller (bug #233215).
7 (Portage version: 2.2_rc3/cvs/Linux 2.6.24-gentoo-r2-JeR i686)
8
9 Revision Changes Path
10 1.24 net-misc/iperf/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/iperf/ChangeLog?rev=1.24&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/iperf/ChangeLog?rev=1.24&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/iperf/ChangeLog?r1=1.23&r2=1.24
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-misc/iperf/ChangeLog,v
19 retrieving revision 1.23
20 retrieving revision 1.24
21 diff -u -r1.23 -r1.24
22 --- ChangeLog 12 Jun 2007 17:54:39 -0000 1.23
23 +++ ChangeLog 30 Jul 2008 01:49:46 -0000 1.24
24 @@ -1,6 +1,11 @@
25 # ChangeLog for net-misc/iperf
26 -# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-misc/iperf/ChangeLog,v 1.23 2007/06/12 17:54:39 lavajoe Exp $
28 +# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/net-misc/iperf/ChangeLog,v 1.24 2008/07/30 01:49:46 jer Exp $
30 +
31 +*iperf-2.0.4 (30 Jul 2008)
32 +
33 + 30 Jul 2008; Jeroen Roovers <jer@g.o> +iperf-2.0.4.ebuild:
34 + Version bump thanks to Jeff Waller (bug #233215).
35
36 12 Jun 2007; Joe Peterson <lavajoe@g.o> iperf-2.0.2.ebuild:
37 Add ~x86-fbsd keyword
38
39
40
41 1.1 net-misc/iperf/iperf-2.0.4.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/iperf/iperf-2.0.4.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/iperf/iperf-2.0.4.ebuild?rev=1.1&content-type=text/plain
45
46 Index: iperf-2.0.4.ebuild
47 ===================================================================
48 # Copyright 1999-2008 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/net-misc/iperf/iperf-2.0.4.ebuild,v 1.1 2008/07/30 01:49:46 jer Exp $
51
52 DESCRIPTION="tool to measure IP bandwidth using UDP or TCP"
53 HOMEPAGE="http://iperf.sourceforge.net/"
54 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
55
56 LICENSE="as-is"
57 SLOT="0"
58 KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86 ~x86-fbsd"
59 IUSE="ipv6 threads debug"
60
61 DEPEND="virtual/libc"
62
63 src_compile() {
64 econf \
65 $(use_enable ipv6) \
66 $(use_enable threads) \
67 $(use_enable debug debuginfo) \
68 || die "econf failed"
69 emake || die "emake failed"
70 }
71
72 src_install() {
73 make DESTDIR="${D}" install || die "make install failed"
74 dodoc INSTALL README
75 dohtml doc/*
76 newinitd ${FILESDIR}/${PN}.initd ${PN}
77 newconfd ${FILESDIR}/${PN}.confd ${PN}
78 }
79
80 pkg_postinst() {
81 echo
82 einfo "To run iperf in server mode, run:"
83 einfo " /etc/init.d/iperf start"
84 echo
85 }