summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Rüger <mrueg@gentoo.org>2015-03-28 23:22:27 +0000
committerManuel Rüger <mrueg@gentoo.org>2015-03-28 23:22:27 +0000
commit8e65e9a60336fbe7e5633a0615c7490605e5efc9 (patch)
treea4feeb063a2c475479f843dbe7d0d1f4d3746426 /app-benchmarks
parentRemove old. (diff)
downloadgentoo-2-8e65e9a60336fbe7e5633a0615c7490605e5efc9.tar.gz
gentoo-2-8e65e9a60336fbe7e5633a0615c7490605e5efc9.tar.bz2
gentoo-2-8e65e9a60336fbe7e5633a0615c7490605e5efc9.zip
Remove old.
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'app-benchmarks')
-rw-r--r--app-benchmarks/httperf/ChangeLog8
-rw-r--r--app-benchmarks/httperf/httperf-0.8.ebuild42
-rw-r--r--app-benchmarks/httperf/httperf-0.9.0-r1.ebuild36
3 files changed, 6 insertions, 80 deletions
diff --git a/app-benchmarks/httperf/ChangeLog b/app-benchmarks/httperf/ChangeLog
index 797cb726eb1d..1938ec16eb9c 100644
--- a/app-benchmarks/httperf/ChangeLog
+++ b/app-benchmarks/httperf/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for app-benchmarks/httperf
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/httperf/ChangeLog,v 1.21 2014/08/05 07:59:56 patrick Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/httperf/ChangeLog,v 1.22 2015/03/28 23:22:27 mrueg Exp $
+
+ 28 Mar 2015; Manuel Rüger <mrueg@gentoo.org> -httperf-0.8.ebuild,
+ -httperf-0.9.0-r1.ebuild:
+ Remove old.
05 Aug 2014; Patrick Lauer <patrick@gentoo.org> httperf-0.8.ebuild,
httperf-0.9.0-r1.ebuild, httperf-0.9.0-r2.ebuild:
diff --git a/app-benchmarks/httperf/httperf-0.8.ebuild b/app-benchmarks/httperf/httperf-0.8.ebuild
deleted file mode 100644
index 1370d0d5700b..000000000000
--- a/app-benchmarks/httperf/httperf-0.8.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/httperf/httperf-0.8.ebuild,v 1.13 2014/08/05 07:59:56 patrick Exp $
-
-WANT_AUTOCONF="2.1"
-
-inherit eutils autotools toolchain-funcs
-
-DESCRIPTION="A tool from HP for measuring web server performance"
-HOMEPAGE="http://www.hpl.hp.com/research/linux/httperf/index.php"
-SRC_URI="ftp://ftp.hpl.hp.com/pub/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~mips x86"
-IUSE="debug ssl"
-
-DEPEND=""
-RDEPEND=""
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${FILESDIR}"/${P}-optional-ssl.diff
- epatch "${FILESDIR}"/${P}-respect-DESTDIR.diff
-
- eautoconf || die "autoconf failed"
-}
-
-src_compile() {
- econf --bindir=/usr/bin \
- $(use_enable debug) \
- $(use_enable ssl) \
- || die "econf failed"
-
- emake CC=$(tc-getCC) -j1 || die "emake failed"
-}
-
-src_install() {
- make DESTDIR="${D}" install || die "make install failed"
- dodoc AUTHORS ChangeLog NEWS README TODO
-}
diff --git a/app-benchmarks/httperf/httperf-0.9.0-r1.ebuild b/app-benchmarks/httperf/httperf-0.9.0-r1.ebuild
deleted file mode 100644
index bf23f5539df5..000000000000
--- a/app-benchmarks/httperf/httperf-0.9.0-r1.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/httperf/httperf-0.9.0-r1.ebuild,v 1.5 2014/08/05 07:59:56 patrick Exp $
-
-EAPI=2
-
-inherit eutils autotools toolchain-funcs
-
-DESCRIPTION="A tool from HP for measuring web server performance"
-HOMEPAGE="http://code.google.com/p/httperf/"
-SRC_URI="http://httperf.googlecode.com/files/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~mips x86"
-IUSE="debug"
-
-DEPEND="dev-libs/openssl"
-RDEPEND="dev-libs/openssl"
-
-src_prepare() {
- eautoconf || die "autoconf failed"
-}
-src_configure() {
- econf --bindir=/usr/bin \
- $(use_enable debug) \
- || die "econf failed"
-}
-src_compile() {
- emake CC=$(tc-getCC) -j1 || die "emake failed"
-}
-
-src_install() {
- make DESTDIR="${D}" install || die "make install failed"
- dodoc AUTHORS ChangeLog NEWS README TODO
-}