diff options
author | Agostino Sarubbo <ago@gentoo.org> | 2012-05-10 14:58:20 +0000 |
---|---|---|
committer | Agostino Sarubbo <ago@gentoo.org> | 2012-05-10 14:58:20 +0000 |
commit | 40a4e42a977e3655da6b870e1f1e223593f9fd9e (patch) | |
tree | 42fa677fe1a1b4c83b833917ef47c9d983f4548a /app-emulation/spim | |
parent | Remove old (diff) | |
download | gentoo-2-40a4e42a977e3655da6b870e1f1e223593f9fd9e.tar.gz gentoo-2-40a4e42a977e3655da6b870e1f1e223593f9fd9e.tar.bz2 gentoo-2-40a4e42a977e3655da6b870e1f1e223593f9fd9e.zip |
Remove old
(Portage version: 2.1.10.49/cvs/Linux x86_64)
Diffstat (limited to 'app-emulation/spim')
-rw-r--r-- | app-emulation/spim/ChangeLog | 8 | ||||
-rw-r--r-- | app-emulation/spim/spim-7.2.1-r2.ebuild | 103 | ||||
-rw-r--r-- | app-emulation/spim/spim-7.4.ebuild | 96 | ||||
-rw-r--r-- | app-emulation/spim/spim-8.0.ebuild | 81 |
4 files changed, 6 insertions, 282 deletions
diff --git a/app-emulation/spim/ChangeLog b/app-emulation/spim/ChangeLog index 1f540c09a9a2..340db90d946b 100644 --- a/app-emulation/spim/ChangeLog +++ b/app-emulation/spim/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-emulation/spim -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/spim/ChangeLog,v 1.59 2011/11/22 18:42:06 pacho Exp $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/spim/ChangeLog,v 1.60 2012/05/10 14:58:20 ago Exp $ + + 10 May 2012; Agostino Sarubbo <ago@gentoo.org> -spim-7.2.1-r2.ebuild, + -spim-7.4.ebuild, -spim-8.0.ebuild: + Remove old 22 Nov 2011; Pacho Ramos <pacho@gentoo.org> metadata.xml: Drop maintainer due retirement, bug #195316; remove old. diff --git a/app-emulation/spim/spim-7.2.1-r2.ebuild b/app-emulation/spim/spim-7.2.1-r2.ebuild deleted file mode 100644 index 2676e4659be8..000000000000 --- a/app-emulation/spim/spim-7.2.1-r2.ebuild +++ /dev/null @@ -1,103 +0,0 @@ -# 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.2.1-r2.ebuild,v 1.6 2009/03/20 03:25:56 jmbsvicetto 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" - -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}" - - # Patches from eradicator submitted upstream. Fixes amd64 and others... - epatch "${FILESDIR}/${PN}-7.2.1-envvar-exception.patch" - epatch "${FILESDIR}/${PN}-7.2.1-c99.patch" - epatch "${FILESDIR}/${PN}-7.2.1-ptrsize.patch" - epatch "${FILESDIR}/${PN}-7.2.1-string-stream.patch" - epatch "${FILESDIR}/${PN}-7.2.1-multiple-exception.patch" - - # 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_PATH = \).*$:\1/var/lib/spim/exceptions.s:" \ - 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 -} diff --git a/app-emulation/spim/spim-7.4.ebuild b/app-emulation/spim/spim-7.4.ebuild deleted file mode 100644 index 8e050ed06eb0..000000000000 --- a/app-emulation/spim/spim-7.4.ebuild +++ /dev/null @@ -1,96 +0,0 @@ -# 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 -} diff --git a/app-emulation/spim/spim-8.0.ebuild b/app-emulation/spim/spim-8.0.ebuild deleted file mode 100644 index 843819b500b0..000000000000 --- a/app-emulation/spim/spim-8.0.ebuild +++ /dev/null @@ -1,81 +0,0 @@ -# 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-8.0.ebuild,v 1.4 2010/07/31 22:17:57 hwoarang Exp $ - -EAPI="3" - -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 DESTDIR="${EPREFIX}" || die - - if use X; then - cd "${S}/xspim" - emake DESTDIR="${EPREFIX}" -j1 xspim || die - fi -} - -src_install() { - dodir /var/lib/spim || die - dodoc README VERSION ChangeLog || die - - cd "${S}/spim" - emake DESTDIR="${ED}" install || die "Unable to install spim" - - if use X; then - cd "${S}/xspim" - emake DESTDIR="${ED}" 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!" -} |