diff options
author | Joshua Brindle <method@gentoo.org> | 2002-12-08 17:58:15 +0000 |
---|---|---|
committer | Joshua Brindle <method@gentoo.org> | 2002-12-08 17:58:15 +0000 |
commit | 0223d75b64ba69465b01bf10f5a8b5a171089560 (patch) | |
tree | 6b9612912ce781753682f227770259042c8c4d87 /app-benchmarks | |
parent | Added sparc keyword (diff) | |
download | gentoo-2-0223d75b64ba69465b01bf10f5a8b5a171089560.tar.gz gentoo-2-0223d75b64ba69465b01bf10f5a8b5a171089560.tar.bz2 gentoo-2-0223d75b64ba69465b01bf10f5a8b5a171089560.zip |
Initial import
Diffstat (limited to 'app-benchmarks')
-rw-r--r-- | app-benchmarks/stress/ChangeLog | 9 | ||||
-rw-r--r-- | app-benchmarks/stress/files/digest-stress-0.17_pre7 | 1 | ||||
-rw-r--r-- | app-benchmarks/stress/stress-0.17_pre7.ebuild | 35 |
3 files changed, 45 insertions, 0 deletions
diff --git a/app-benchmarks/stress/ChangeLog b/app-benchmarks/stress/ChangeLog new file mode 100644 index 000000000000..82739cc8f34f --- /dev/null +++ b/app-benchmarks/stress/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for app-benchmark/stress +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/stress/ChangeLog,v 1.1 2002/12/08 17:58:15 method Exp $ + +*stress-0.17pre7 (08 DEC 2002)) + + 08 DEC 2002; Joshua Brindle <method@gentoo.org> stress-0.17pre7.ebuild: + Initial import. Ebuild submitted by Donald Giuliano <guido@ou.edu> + free, so the best we can hope (and expect!) to receive is credit. diff --git a/app-benchmarks/stress/files/digest-stress-0.17_pre7 b/app-benchmarks/stress/files/digest-stress-0.17_pre7 new file mode 100644 index 000000000000..55ba17ebf04c --- /dev/null +++ b/app-benchmarks/stress/files/digest-stress-0.17_pre7 @@ -0,0 +1 @@ +MD5 28e4615fab019a6751e267d74f29c750 stress-0.17pre7.tar.gz 39655 diff --git a/app-benchmarks/stress/stress-0.17_pre7.ebuild b/app-benchmarks/stress/stress-0.17_pre7.ebuild new file mode 100644 index 000000000000..ebc114779fe5 --- /dev/null +++ b/app-benchmarks/stress/stress-0.17_pre7.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/stress/stress-0.17_pre7.ebuild,v 1.1 2002/12/08 17:58:15 method Exp $ + +DESCRIPTION="Imposes stressful loads on different aspects of the system." +HOMEPAGE="http://weather.ou.edu/~apw/projects/stress" + +MY_PV=${PN}-${PV/_/} +SRC_URI="http://weather.ou.edu/~apw/projects/stress/${MY_PV}.tar.gz" +S="${WORKDIR}/${MY_PV}" + +LICENSE="GPL-2" +SLOT="0" +IUSE="" +KEYWORDS="~x86 ~sparc" + +DEPEND="" +RDEPEND="" + +src_unpack() { + unpack ${MY_PV}.tar.gz + cd ${WORKDIR} +} + +src_compile() { + + ./configure --prefix=/usr \ + --mandir=/usr/share/man || die + + emake || die +} + +src_install() { + einstall || die +} |