blob: 5d23e292d24f0cfdcfc39da47b1a7efde3eb5775 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/spim/spim-7.0.ebuild,v 1.12 2005/09/10 22:00:52 compnerd Exp $
inherit eutils
DESCRIPTION="MIPS Simulator"
HOMEPAGE="http://www.cs.wisc.edu/~larus/spim.html"
# No version upstream
#SRC_URI="http://www.cs.wisc.edu/~larus/SPIM/spim.tar.gz"
SRC_URI="mirror://gentoo//${P}.tar.gz"
KEYWORDS="~amd64 ppc ppc-macos x86"
LICENSE="as-is"
SLOT="0"
IUSE="X"
RDEPEND="X? ( virtual/x11 )"
DEPEND="${RDEPEND}
>=sys-apps/sed-4
x11-base/xorg-x11"
src_unpack() {
unpack ${A}
cd ${S}
# fix bad code generation (bug #47141)
#epatch "${FILESDIR}/${PV}-parser.patch"
# fix font issue (bug #73510)
epatch "${FILESDIR}/${P}-font.patch"
}
src_compile() {
./Configure || die "Configure script failed"
sed -i \
-e 's/@make/@$(MAKE)/' \
-e "s:\(BIN_DIR = \).*$:\1/usr/bin:" \
-e "s:\(MAN_DIR = \).*$:\1/usr/share/bin:" \
-e "s:\(EXCEPTION_DIR = \).*$:\1/var/lib/spim:" Imakefile \
|| die "sed Makefile failed"
xmkmf
emake spim || die "make spim failed"
if use X ; then
emake xspim || die "emake xspim failed"
fi
}
src_install() {
dobin spim || die "dobin failed"
newman spim.man spim.1
if use X ; then
dobin xspim || die "dobin failed"
newman xspim.man xspim.1
fi
dodir /var/lib/spim
insinto /var/lib/spim
doins exceptions.s || die "dosbin failed"
dodoc BLURB README VERSION ChangeLog Documentation/*
}
|