blob: 8ce9b5edc7690d86e3daa47ea06f21630e9fef07 (
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/lmbench/lmbench-3_alpha3.ebuild,v 1.1 2008/05/17 11:00:33 dragonheart Exp $
inherit toolchain-funcs eutils
MY_P=${P/0\._alpha/-a}
DESCRIPTION="Suite of simple, portable benchmarks"
HOMEPAGE="http://www.bitmover.com/lmbench/whatis_lmbench.html"
SRC_URI="mirror://gentoo/lmbench-3.0-a3.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc sparc x86"
IUSE=""
DEPEND="virtual/libc"
S=${WORKDIR}/lmbench-3.0-a3
src_unpack() {
unpack ${A}
epatch "${FILESDIR}"/lmbench-3.0_alpha3-qa.patch
}
src_compile() {
sed -e "s#^my \$distro =.*#my \$distro = \"`uname -r`\";#" \
-e 's#^@files =#chdir "/usr/share/lmbench"; @files =#' \
-e "s#../../CONFIG#/etc/bc-config#g" "${FILESDIR}"/bc_lm.pl > bc_lm.pl
emake CC=$(tc-getCC) MAKE=make OS=`scripts/os` build || die
}
src_install() {
cd src ; make BASE="${D}"/usr install || die
dodir /usr/share
mv "${D}"/usr/man "${D}"/usr/share
cd "${S}"
exeinto /usr/bin
doexe "${S}"/bc_lm.pl
mv "${D}"/usr/bin/stream "${D}"/usr/bin/stream.lmbench
insinto /etc
doins "${FILESDIR}"/bc-config
dodir /usr/share/lmbench
dodir /usr/share/lmbench/src
cp src/webpage-lm.tar "${D}"/usr/share/lmbench/src
cp -R scripts "${D}"/usr/share/lmbench
dodir /usr/share/lmbench/results
chmod 777 "${D}"/usr/share/lmbench/results
dodir /usr/share/lmbench/bin
chmod 777 "${D}"/usr/share/lmbench/bin
# avoid file collision with sys-apps/util-linux
mv "${D}"/usr/bin/line "${D}"/usr/bin/line.lmbench
}
|