diff options
Diffstat (limited to 'app-emulation/spim/spim-7.1.ebuild')
-rw-r--r-- | app-emulation/spim/spim-7.1.ebuild | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/app-emulation/spim/spim-7.1.ebuild b/app-emulation/spim/spim-7.1.ebuild new file mode 100644 index 000000000000..08a34786e75b --- /dev/null +++ b/app-emulation/spim/spim-7.1.ebuild @@ -0,0 +1,58 @@ +# 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.1.ebuild,v 1.1 2005/07/24 22:03:32 compnerd Exp $ + +inherit eutils + +DESCRIPTION="MIPS Simulator" +HOMEPAGE="http://www.cs.wisc.edu/~larus/spim.html" +SRC_URI="mirror://gentoo/${P}.tar.gz" + +LICENSE="as-is" +SLOT="0" +KEYWORDS="~x86 -amd64 ~ppc ~ppc-macos" +IUSE="X" + +RDEPEND="X? ( virtual/x11 )" +DEPEND="${RDEPEND} + >=sys-apps/sed-4" + +RESTRICT="maketest" + +src_unpack() { + unpack ${A} + cd ${S} + + # The font issue is still with us (Bug #73510) + epatch ${FILESDIR}/${P}-font.patch +} + +src_compile() { + ./Configure || die "Configure Failed!" + + sed -i \ + -e 's:@make:@$(MAKE):' \ + -e "s:\(BIN_DIR = \).*$:\1/usr/bin:" \ + -e "s:\(MAN_DIR = \).*$:\1/usr/share/man:" \ + -e "s:\(EXCEPTION_DIR = \).*$:\1/var/lib/spim:" \ + Imakefile + + # Tests need these changes, however, they require make install + # -e "s:\(CSH = \).*$:\1bash:" \ + # -e "s:tail -2:tail -n2:" Imakefile + + xmkmf + emake spim || die "Unable to compile spim" + if [ $(use X) ] ; then + emake xspim || die "Unable to compile xspim" + fi +} + +src_install() { + dodir /var/lib/spim + make install DESTDIR=${D} || die "Unable to install spim" + + newman spim.man spim.1 + use X && newman xspim.man xspim.1 + dodoc BLURB README VERSION ChangeLog Documentation/* +} |