ago 15/07/05 19:27:16 Modified: ChangeLog Added: siege-3.1.0.ebuild Log: EAPI 5, update HOMEPAGE and SRC_URI ( fix bug #524110 ), add slot operator for openssl and replace make with emake (parallel build works for me). (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 7194459F)
Revision Changes Path 1.73 app-benchmarks/siege/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-benchmarks/siege/ChangeLog?rev=1.73&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-benchmarks/siege/ChangeLog?rev=1.73&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-benchmarks/siege/ChangeLog?r1=1.72&r2=1.73 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/app-benchmarks/siege/ChangeLog,v retrieving revision 1.72 retrieving revision 1.73 diff -u -r1.72 -r1.73 --- ChangeLog 30 Aug 2014 10:28:54 -0000 1.72 +++ ChangeLog 5 Jul 2015 19:27:16 -0000 1.73 @@ -1,6 +1,12 @@ # ChangeLog for app-benchmarks/siege -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/siege/ChangeLog,v 1.72 2014/08/30 10:28:54 mgorny Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/siege/ChangeLog,v 1.73 2015/07/05 19:27:16 ago Exp $ + +*siege-3.1.0 (05 Jul 2015) + + 05 Jul 2015; Agostino Sarubbo <a...@gentoo.org> +siege-3.1.0.ebuild: + EAPI 5, update HOMEPAGE and SRC_URI ( fix bug #524110 ), add slot operator for + openssl and replace make with emake (parallel build works for me). 30 Aug 2014; Michał Górny <mgo...@gentoo.org> -files/siege-2.60-gentoo.diff, -files/siege-2.70-gentoo.diff, -files/siege-2.72-gentoo.diff, 1.1 app-benchmarks/siege/siege-3.1.0.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-benchmarks/siege/siege-3.1.0.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-benchmarks/siege/siege-3.1.0.ebuild?rev=1.1&content-type=text/plain Index: siege-3.1.0.ebuild =================================================================== # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/app-benchmarks/siege/siege-3.1.0.ebuild,v 1.1 2015/07/05 19:27:16 ago Exp $ EAPI=5 #WANT_AUTOMAKE=1.9 inherit eutils bash-completion-r1 libtool autotools DESCRIPTION="A HTTP regression testing and benchmarking utility" HOMEPAGE="https://www.joedog.org/siege-home/" SRC_URI="http://download.joedog.org/${PN}/${P}.tar.gz" LICENSE="GPL-2" KEYWORDS="~amd64 ~hppa ~mips ~ppc ~x86 ~x64-macos" SLOT="0" IUSE="ssl" RDEPEND="ssl? ( >=dev-libs/openssl-0.9.6d:= )" DEPEND="${RDEPEND} sys-devel/libtool" src_prepare() { # bundled macros break recent libtool sed -i -e 's/AC_PROG_SHELL//' configure.ac || die rm *.m4 || die "failed to remove bundled macros" eautoreconf } src_configure() { local myconf use ssl && myconf="--with-ssl=${EPREFIX}/usr" || myconf="--without-ssl" econf ${myconf} } src_install() { emake DESTDIR="${D}" install dodoc AUTHORS ChangeLog INSTALL MACHINES README* KNOWNBUGS \ doc/siegerc doc/urls.txt newbashcomp "${FILESDIR}"/${PN}.bash-completion ${PN} } pkg_postinst() { echo elog "An example ~/.siegerc file has been installed in" elog "${EPREFIX}/usr/share/doc/${PF}/" }