forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Package-Manager: Portage-2.3.6, Repoman-2.3.2
- Loading branch information
Showing
2 changed files
with
81 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
# Copyright 1999-2017 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=6 | ||
|
||
inherit toolchain-funcs | ||
|
||
DESCRIPTION="MIPS Simulator" | ||
HOMEPAGE="http://spimsimulator.sourceforge.net/" | ||
SRC_URI="http://www.cs.wisc.edu/~larus/SPIM/${P}.tar.gz" | ||
|
||
LICENSE="BSD" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" | ||
IUSE="doc X" | ||
|
||
RDEPEND="X? ( media-fonts/font-adobe-100dpi | ||
x11-libs/libXaw | ||
x11-libs/libXp )" | ||
DEPEND="${RDEPEND} | ||
X? ( x11-misc/imake | ||
x11-proto/xproto ) | ||
>=sys-apps/sed-4 | ||
sys-devel/bison" | ||
# test hangs forever, disabling it | ||
RESTRICT="test" | ||
|
||
src_prepare() { | ||
# fix bugs 240005 and 243588 | ||
eapply "${FILESDIR}/${P}-r1-respect_env.patch" | ||
|
||
#fix bug 330389 | ||
sed -i -e 's:-12-\*-75-:-14-\*-100-:g' xspim/xspim.c || die | ||
|
||
default | ||
} | ||
|
||
src_configure() { | ||
tc-export CC | ||
emake -C spim configuration | ||
|
||
if use X; then | ||
emake -C xspim configuration | ||
fi | ||
} | ||
|
||
src_compile() { | ||
emake DESTDIR="${EPREFIX}" -C spim | ||
|
||
if use X; then | ||
emake DESTDIR="${EPREFIX}" EXCEPTION_DIR=/var/lib/spim \ | ||
-C xspim -j1 xspim | ||
fi | ||
} | ||
|
||
src_install() { | ||
emake DESTDIR="${ED}" -C spim install | ||
newman Documentation/spim.man spim.1 | ||
|
||
if use X; then | ||
emake DESTDIR="${ED}" -C xspim install | ||
newman Documentation/xspim.man xspim.1 | ||
fi | ||
|
||
doicon "${FILESDIR}"/xspim.svg | ||
make_desktop_entry xspim xSPIM xspim "ComputerScience;Science;Education" | ||
|
||
dodoc Documentation/SPIM.html | ||
dodoc ChangeLog Documentation/BLURB README VERSION | ||
if use doc ; then | ||
dodoc Documentation/TeX/{cycle,spim}.ps | ||
fi | ||
} | ||
|
||
src_test() { | ||
emake -C spim test | ||
} |