summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Rüger <mrueg@gentoo.org>2015-08-29 00:56:24 +0200
committerManuel Rüger <mrueg@gentoo.org>2015-08-29 00:56:24 +0200
commita748ee08b71b5a0ad3d6cfc2632b27f4df07e53d (patch)
tree4b0107e0c010d4cc40afb5296ec8301d7ffa4e61 /app-benchmarks/stress/stress-1.0.3.ebuild
parentsys-devel/gdb: version bump to 7.10 (diff)
downloadgentoo-a748ee08b71b5a0ad3d6cfc2632b27f4df07e53d.tar.gz
gentoo-a748ee08b71b5a0ad3d6cfc2632b27f4df07e53d.tar.bz2
gentoo-a748ee08b71b5a0ad3d6cfc2632b27f4df07e53d.zip
app-benchmarks/stress: Remove old
Package-Manager: portage-2.2.20.1
Diffstat (limited to 'app-benchmarks/stress/stress-1.0.3.ebuild')
-rw-r--r--app-benchmarks/stress/stress-1.0.3.ebuild45
1 files changed, 0 insertions, 45 deletions
diff --git a/app-benchmarks/stress/stress-1.0.3.ebuild b/app-benchmarks/stress/stress-1.0.3.ebuild
deleted file mode 100644
index 7cdf6984d232..000000000000
--- a/app-benchmarks/stress/stress-1.0.3.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-inherit autotools flag-o-matic
-
-MY_P="${PN}-${PV/_/}"
-S="${WORKDIR}/${MY_P}"
-DESCRIPTION="Imposes stressful loads on different aspects of the system"
-HOMEPAGE="http://people.seas.harvard.edu/~apw/stress"
-SRC_URI="http://weather.ou.edu/~apw/projects/stress/${MY_P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86"
-IUSE="static"
-
-DEPEND="sys-apps/help2man"
-RDEPEND=""
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- # Force rebuild of the manpage.
- rm -f doc/stress.1
-
- # Honour Gentoo CFLAGS.
- sed -i -e "/CFLAGS/s/-Werror//" \
- -e "s/CFLAGS/AM_CFLAGS/" \
- src/Makefile.am || die "sed cflags failed"
-
- eautoreconf
-}
-
-src_compile() {
- use static && append-ldflags -static
- econf
- emake || die "emake failed"
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "emake install failed"
- dodoc ChangeLog AUTHORS README
-}