blob: fc36d9eab3e2e127a4e5eea01ded5329f93d1988 (
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/spim/spim-7.5.ebuild,v 1.2 2010/01/15 02:27:54 abcd Exp $
EAPI="2"
inherit eutils toolchain-funcs
DESCRIPTION="MIPS Simulator"
HOMEPAGE="http://www.cs.wisc.edu/~larus/spim.html"
SRC_URI="http://www.cs.wisc.edu/~larus/SPIM/${P}.tar.gz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
IUSE="X"
RDEPEND="X? ( x11-libs/libXaw
x11-libs/libXp )"
DEPEND="${RDEPEND}
X? ( x11-misc/imake
x11-proto/xproto )
>=sys-apps/sed-4
sys-devel/bison"
src_prepare() {
# fix bugs 240005 and 243588
epatch "${FILESDIR}/${P}-respect_env.patch"
tc-export CC
# Fix documentation files
cd "${S}/Documentation"
mv spim.man spim.1
mv xspim.man xspim.1
}
src_configure() {
cd "${S}/spim"
./Configure || die "Configure Failed!"
if use X; then
cd "${S}/xspim"
./Configure || die "Configure Failed!"
fi
}
src_compile() {
cd "${S}/spim"
emake || die
if use X; then
cd "${S}/xspim"
emake -j1 xspim || die
fi
}
src_install() {
dodir /var/lib/spim || die
dodoc README VERSION ChangeLog || die
cd "${S}/spim"
emake DESTDIR="${D}" install || die "Unable to install spim"
if use X; then
cd "${S}/xspim"
emake DESTDIR="${D}" install || die "Unable to install xspim"
doman "${S}/Documentation/xspim.1"
fi
cd "${S}/Documentation"
doman spim.1 || die
dohtml SPIM.html || die
dodoc BLURB || die
}
src_test() {
cd "${S}/spim"
make test || die "Failed to pass tests!"
}
|