blob: 458800d5eb6390d31658c562931cfae32679c871 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/nbench/nbench-2.2.2.ebuild,v 1.7 2005/07/31 07:10:11 dertobi123 Exp $
MY_P="${PN}-byte-${PV}"
DESCRIPTION="Linux/Unix of release 2 of BYTE Magazine's BYTEmark benchmark"
HOMEPAGE="http://www.tux.org/~mayer/linux/bmark.html"
SRC_URI="http://www.tux.org/~mayer/linux/${MY_P}.tar.gz"
LICENSE="freedist"
SLOT="0"
KEYWORDS="~alpha amd64 ~mips ppc sh sparc hppa x86"
IUSE=""
DEPEND="virtual/libc"
S=${WORKDIR}/${MY_P}
src_compile() {
sed -i -e 's:$compiler -v\( 2>&1 | sed -e "/version/!d"\|\):$compiler -dumpversion:' sysinfo.sh || die
sed -i -e 's:inpath="NNET.DAT":inpath="/usr/share/nbench/NNET.DAT":' nbench1.h || die
make LINKFLAGS="${LDFLAGS}" CFLAGS="${CFLAGS}" || die "make failed"
}
src_install() {
dobin nbench
insinto /usr/share/nbench
doins NNET.DAT
dodoc Changes README* RESULT bdoc.txt
}
|