summaryrefslogtreecommitdiff
blob: c2c754374b1e6cb1c4f8344e6cb32723db565be9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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/cpuburn/cpuburn-1.4.ebuild,v 1.1 2002/10/23 13:48:59 vapier Exp $

DESCRIPTION="This program is designed to heavily load CPU chips [testing purposes]"
HOMEPAGE="http://users.ev1.net/~redelm/"

MY_P="${PV/./_}"
SRC_URI="http://users.ev1.net/~redelm/cpuburn_${MY_P}_tar.gz"
S="${WORKDIR}/${P}"

LICENSE="GPL-2"
SLOT="0"
IUSE=""
KEYWORDS="~x86 -ppc -sparc -sparc64 -alpha"

RESTRICT="nostrip"
DEPEND="sys-devel/gcc"
RDEPEND=""

src_unpack() {
	#for some reason he has it _tar instead of .tar ...
	unpack ${A}
	cd ${WORKDIR}
	tar -xf cpuburn_${MY_P}_tar
}

src_compile() {
	emake || die
}

src_install() {
	dodoc Design README
	dobin burn{BX,K6,K7,MMX,P5,P6}
}