diff options
author | Ricardo Mendoza <ricmm@gentoo.org> | 2009-03-24 03:02:16 +0000 |
---|---|---|
committer | Ricardo Mendoza <ricmm@gentoo.org> | 2009-03-24 03:02:16 +0000 |
commit | 11a16d01d84f6b3a44801ce711386c95391a010d (patch) | |
tree | 856b39e27e2bc109937944b5e8327d6c6e8b3bad /app-emulation/spim | |
parent | New package, initial commit (diff) | |
download | gentoo-2-11a16d01d84f6b3a44801ce711386c95391a010d.tar.gz gentoo-2-11a16d01d84f6b3a44801ce711386c95391a010d.tar.bz2 gentoo-2-11a16d01d84f6b3a44801ce711386c95391a010d.zip |
Version bump. Released 22-01-2009. Several fixes to the code.
(Portage version: 2.2_rc23/cvs/Linux x86_64)
Diffstat (limited to 'app-emulation/spim')
-rw-r--r-- | app-emulation/spim/ChangeLog | 7 | ||||
-rw-r--r-- | app-emulation/spim/spim-7.4.ebuild | 96 |
2 files changed, 102 insertions, 1 deletions
diff --git a/app-emulation/spim/ChangeLog b/app-emulation/spim/ChangeLog index 15112d81a843..a1fb47d6d76a 100644 --- a/app-emulation/spim/ChangeLog +++ b/app-emulation/spim/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-emulation/spim # Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/spim/ChangeLog,v 1.46 2009/03/23 13:08:21 ricmm Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/spim/ChangeLog,v 1.47 2009/03/24 03:02:16 ricmm Exp $ + +*spim-7.4 (24 Mar 2009) + + 24 Mar 2009; <ricmm@gentoo.org> +spim-7.4.ebuild: + Version bump. Released 22-01-2009. Several fixes to the code. 23 Mar 2009; <ricmm@gentoo.org> metadata.xml: Adding myself to metadata. diff --git a/app-emulation/spim/spim-7.4.ebuild b/app-emulation/spim/spim-7.4.ebuild new file mode 100644 index 000000000000..8e050ed06eb0 --- /dev/null +++ b/app-emulation/spim/spim-7.4.ebuild @@ -0,0 +1,96 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/spim/spim-7.4.ebuild,v 1.1 2009/03/24 03:02:16 ricmm Exp $ + +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" +IUSE="X" +RESTRICT="strip" +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_unpack() { + unpack ${A} + cd "${S}" + + # Fix documentation files + cd "${S}/Documentation" + mv spim.man spim.1 + mv xspim.man xspim.1 +} + +src_compile() { + cd "${S}/spim" + + ./Configure || die "Configure Failed!" + + sed -i \ + -e 's:@make:@$(MAKE):' \ + -e 's:\(BIN_DIR = \).*$:\1\$(DESTDIR)/usr/bin:' \ + -e 's:\(MAN_DIR = \).*$:\1\$(DESTDIR)/usr/share/man:' \ + -e 's:\(EXCEPTION_DIR = \).*$:\1$(DESTDIR)/var/lib/spim:' \ + -e 's:\(^\W*install.*\) exceptions.s \(.*$\):\1 \$(CPU_DIR)/exceptions.s \2:' \ + -e "s:^\W*install.* spim.man .*$::" \ + -e "s:tail -2:tail -n2:" \ + Makefile + + emake CC="$(tc-getCC)" || die + + if use X ; then + cd "${S}/xspim" + + ./Configure || die "Configure Failed!" + + xmkmf || die + + 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:" \ + Makefile + + emake CC="$(tc-getCC)" -j1 xspim || die + fi +} + +src_test() { + cd "${S}/spim" + make test || die "Failed to pass tests!" +} + +src_install() { + dodir /usr/bin + dodir /usr/share/man + dodir /var/lib/spim + + cd "${S}/spim" + make install DESTDIR="${D}" || die "Unable to install spim" + + if use X ; then + cd "${S}/xspim" + make DESTDIR="${D}" install || die "Unable to install xspim" + fi + + cd "${S}/Documentation" + doman spim.1 + use X && doman xspim.1 + + dohtml SPIM.html + dodoc BLURB + + cd "${S}" + dodoc README VERSION ChangeLog +} |