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/echoping: ChangeLog echoping-6.0.2-r1.ebuild
Date: Wed, 29 Jul 2009 03:10:01
Message-Id: E1MVzYD-00083g-0z@stork.gentoo.org
1 jer 09/07/29 03:09:56
2
3 Modified: ChangeLog
4 Added: echoping-6.0.2-r1.ebuild
5 Log:
6 Revision bump to apply >net-libs/gnutls-2.7 patch (bug #279525).
7 (Portage version: 2.2_rc33/cvs/Linux i686)
8
9 Revision Changes Path
10 1.18 net-analyzer/echoping/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/echoping/ChangeLog?rev=1.18&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/echoping/ChangeLog?rev=1.18&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/echoping/ChangeLog?r1=1.17&r2=1.18
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-analyzer/echoping/ChangeLog,v
19 retrieving revision 1.17
20 retrieving revision 1.18
21 diff -u -r1.17 -r1.18
22 --- ChangeLog 2 Jul 2009 13:21:39 -0000 1.17
23 +++ ChangeLog 29 Jul 2009 03:09:56 -0000 1.18
24 @@ -1,6 +1,12 @@
25 # ChangeLog for net-analyzer/echoping
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/echoping/ChangeLog,v 1.17 2009/07/02 13:21:39 jer Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/echoping/ChangeLog,v 1.18 2009/07/29 03:09:56 jer Exp $
29 +
30 +*echoping-6.0.2-r1 (29 Jul 2009)
31 +
32 + 29 Jul 2009; Jeroen Roovers <jer@g.o> +echoping-6.0.2-r1.ebuild,
33 + +files/echoping-6.0.2-gnutls.patch:
34 + Revision bump to apply >net-libs/gnutls-2.7 patch (bug #279525).
35
36 02 Jul 2009; Jeroen Roovers <jer@g.o> echoping-6.0.2.ebuild:
37 Restrict testing (bug #276210). Fix one grammatical error.
38
39
40
41 1.1 net-analyzer/echoping/echoping-6.0.2-r1.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/echoping/echoping-6.0.2-r1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/echoping/echoping-6.0.2-r1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: echoping-6.0.2-r1.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/net-analyzer/echoping/echoping-6.0.2-r1.ebuild,v 1.1 2009/07/29 03:09:56 jer Exp $
51
52 EAPI="2"
53
54 inherit eutils autotools
55
56 DESCRIPTION="echoping is a small program to test performances of remote servers"
57 HOMEPAGE="http://echoping.sourceforge.net/"
58 SRC_URI="mirror://sourceforge/echoping/${P}.tar.gz"
59 LICENSE="GPL-2"
60
61 SLOT="0"
62 KEYWORDS="~amd64 ~x86"
63 IUSE="gnutls http icp idn priority smtp ssl tos postgres ldap"
64 RESTRICT="test"
65
66 DEPEND="gnutls? ( >=net-libs/gnutls-1.0.17 )
67 ssl? ( >=dev-libs/openssl-0.9.7d )
68 idn? ( net-dns/libidn )
69 postgres? ( virtual/postgresql-server )
70 ldap? ( net-nds/openldap )"
71
72 src_prepare() {
73 # bug 279525:
74 epatch "${FILESDIR}/${P}-gnutls.patch"
75 local i
76 for i in . plugins/ plugins/*/; do
77 cd "${i}"
78 eautoreconf
79 cd "${S}"
80 done
81 }
82
83 src_configure() {
84 local my_ssl_conf
85 if use gnutls; then
86 if use ssl; then
87 ewarn "You've enabled both ssl and gnutls USE flags but ${PN} can"
88 ewarn "not be built with both, see bug #141782. Using gnutls only."
89 fi
90 my_ssl_conf="${myconf} $(use_with gnutls)"
91 elif use ssl; then
92 my_ssl_conf="${myconf} $(use_with ssl)"
93 fi
94
95 econf \
96 --config-cache \
97 --disable-ttcp \
98 ${my_ssl_conf} \
99 $(use_enable http) \
100 $(use_enable icp) \
101 $(use_with idn libidn) \
102 $(use_enable smtp) \
103 $(use_enable tos) \
104 $(use_enable priority) \
105 || die "econf failed"
106 }
107
108 src_install() {
109 emake install DESTDIR="${D}" || die "emake install failed"
110
111 # They are not installed by make install
112 dodoc README AUTHORS ChangeLog DETAILS NEWS TODO
113 }