From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 03CA01382C5 for ; Sun, 1 Apr 2018 23:40:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 05091E0AF7; Sun, 1 Apr 2018 23:40:42 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D30CCE0AF7 for ; Sun, 1 Apr 2018 23:40:41 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5C9DB33BDD0 for ; Sun, 1 Apr 2018 23:40:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 49D18274 for ; Sun, 1 Apr 2018 23:40:38 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1522625979.946b1b30ffb96ce7430f23f535b213255a16c9a0.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/spim/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emulation/spim/spim-8.0-r2.ebuild X-VCS-Directories: app-emulation/spim/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 946b1b30ffb96ce7430f23f535b213255a16c9a0 X-VCS-Branch: master Date: Sun, 1 Apr 2018 23:40:38 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: c3fbaf62-14ff-44d1-aed4-790bd2445266 X-Archives-Hash: dd39a509ffef21d119dffa949ba6f68d commit: 946b1b30ffb96ce7430f23f535b213255a16c9a0 Author: Matt Turner gentoo org> AuthorDate: Sun Apr 1 23:39:39 2018 +0000 Commit: Matt Turner gentoo org> CommitDate: Sun Apr 1 23:39:39 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=946b1b30 app-emulation/spim: Drop old Closes: https://bugs.gentoo.org/649142 app-emulation/spim/spim-8.0-r2.ebuild | 77 ----------------------------------- 1 file changed, 77 deletions(-) diff --git a/app-emulation/spim/spim-8.0-r2.ebuild b/app-emulation/spim/spim-8.0-r2.ebuild deleted file mode 100644 index 6de0890b3f0..00000000000 --- a/app-emulation/spim/spim-8.0-r2.ebuild +++ /dev/null @@ -1,77 +0,0 @@ -# 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 -}