You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-benchmarks/cpuburn/cpuburn-1.4a.ebuild

38 lines
937 B

# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/cpuburn/cpuburn-1.4a.ebuild,v 1.3 2011/12/26 12:39:45 maekke Exp $
EAPI="2"
inherit eutils flag-o-matic toolchain-funcs
MY_P="${PV/./_}"
DESCRIPTION="designed to heavily load CPU chips [testing purposes]"
HOMEPAGE="http://pages.sbcglobal.net/redelm/"
SRC_URI="http://pages.sbcglobal.net/redelm/cpuburn_${MY_P}_tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="-* amd64 x86"
IUSE=""
RDEPEND="amd64? ( >=app-emulation/emul-linux-x86-baselibs-1.0 )"
src_unpack() {
# for some reason he has it _tar instead of .tar ...
unpack ${A}
tar -xf cpuburn_${MY_P}_tar || die
}
src_prepare() {
cp -av Makefile{,.orig}
epatch "${FILESDIR}"/${P}-flags.patch
use amd64 && append-flags -m32 #65719
tc-export CC
}
src_install() {
dodoc Design README
dobin burn{BX,K6,K7,MMX,P5,P6} || die
}