Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-benchmarks/siege: siege-2.70.ebuild ChangeLog
Date: Fri, 23 Dec 2011 03:27:42
Message-Id: 20111223032732.1F0592004C@flycatcher.gentoo.org
1 patrick 11/12/23 03:27:32
2
3 Modified: ChangeLog
4 Added: siege-2.70.ebuild
5 Log:
6 Bump for #386895, should fix #337619 too, thanks to Michael Kensington
7
8 (Portage version: 2.2.0_alpha81/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.50 app-benchmarks/siege/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-benchmarks/siege/ChangeLog?rev=1.50&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-benchmarks/siege/ChangeLog?rev=1.50&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-benchmarks/siege/ChangeLog?r1=1.49&r2=1.50
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-benchmarks/siege/ChangeLog,v
20 retrieving revision 1.49
21 retrieving revision 1.50
22 diff -u -r1.49 -r1.50
23 --- ChangeLog 10 Nov 2010 19:07:56 -0000 1.49
24 +++ ChangeLog 23 Dec 2011 03:27:32 -0000 1.50
25 @@ -1,6 +1,12 @@
26 # ChangeLog for app-benchmarks/siege
27 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/siege/ChangeLog,v 1.49 2010/11/10 19:07:56 patrick Exp $
29 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/siege/ChangeLog,v 1.50 2011/12/23 03:27:32 patrick Exp $
31 +
32 +*siege-2.70 (23 Dec 2011)
33 +
34 + 23 Dec 2011; Patrick Lauer <patrick@g.o> +files/siege-2.70-gentoo.diff,
35 + +siege-2.70.ebuild:
36 + Bump for #386895, should fix #337619 too, thanks to Michael Kensington
37
38 10 Nov 2010; Patrick Lauer <patrick@g.o> siege-2.66.ebuild,
39 siege-2.67.ebuild:
40
41
42
43 1.1 app-benchmarks/siege/siege-2.70.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-benchmarks/siege/siege-2.70.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-benchmarks/siege/siege-2.70.ebuild?rev=1.1&content-type=text/plain
47
48 Index: siege-2.70.ebuild
49 ===================================================================
50 # Copyright 1999-2011 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/app-benchmarks/siege/siege-2.70.ebuild,v 1.1 2011/12/23 03:27:32 patrick Exp $
53
54 EAPI=4
55
56 WANT_AUTOMAKE=1.9
57
58 inherit eutils bash-completion-r1 libtool autotools
59
60 DESCRIPTION="A HTTP regression testing and benchmarking utility"
61 HOMEPAGE="http://www.joedog.org/JoeDog/Siege"
62 SRC_URI="http://www.joedog.org/pub/siege/${P}.tar.gz"
63
64 LICENSE="GPL-2"
65 KEYWORDS="~amd64 ~hppa ~mips ~ppc ~x86"
66 SLOT="0"
67 IUSE="ssl"
68
69 RDEPEND="ssl? ( >=dev-libs/openssl-0.9.6d )"
70 DEPEND="${RDEPEND}
71 sys-devel/libtool"
72
73 src_prepare() {
74 epatch "${FILESDIR}"/${P}-gentoo.diff
75
76 # bundled macros break recent libtool
77 rm *.m4 || die "failed to remove bundled macros"
78
79 eautoreconf
80 }
81
82 src_configure() {
83 local myconf
84 use ssl && myconf="--with-ssl=/usr" || myconf="--without-ssl"
85 econf ${myconf}
86 }
87
88 src_install() {
89 make DESTDIR="${D}" install
90
91 dodoc AUTHORS ChangeLog INSTALL MACHINES README* KNOWNBUGS \
92 doc/siegerc doc/urls.txt
93
94 newbashcomp "${FILESDIR}"/${PN}.bash-completion ${PN}
95 }
96
97 pkg_postinst() {
98 echo
99 elog "An example ~/.siegerc file has been installed in"
100 elog "/usr/share/doc/${PF}/"
101 }