public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in app-emulation/spim: ChangeLog spim-7.5.ebuild
@ 2009-12-22 19:53 Dror Levin (spatz)
  0 siblings, 0 replies; 2+ messages in thread
From: Dror Levin (spatz) @ 2009-12-22 19:53 UTC (permalink / raw
  To: gentoo-commits

spatz       09/12/22 19:53:10

  Modified:             ChangeLog
  Added:                spim-7.5.ebuild
  Log:
  Version bump and ebuild overhaul. Respect CC, CFLAGS and LDFLAGS. Fix bugs 240005, 243588, 246447.
  (Portage version: 2.2_rc60/cvs/Linux x86_64)

Revision  Changes    Path
1.49                 app-emulation/spim/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/spim/ChangeLog?rev=1.49&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/spim/ChangeLog?rev=1.49&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/spim/ChangeLog?r1=1.48&r2=1.49

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-emulation/spim/ChangeLog,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -r1.48 -r1.49
--- ChangeLog	12 Sep 2009 03:50:48 -0000	1.48
+++ ChangeLog	22 Dec 2009 19:53:09 -0000	1.49
@@ -1,6 +1,13 @@
 # ChangeLog for app-emulation/spim
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/spim/ChangeLog,v 1.48 2009/09/12 03:50:48 vostorga Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/spim/ChangeLog,v 1.49 2009/12/22 19:53:09 spatz Exp $
+
+*spim-7.5 (22 Dec 2009)
+
+  22 Dec 2009; Dror Levin <spatz@gentoo.org> +spim-7.5.ebuild,
+  +files/spim-7.5-respect_env.patch:
+  Version bump and ebuild overhaul. Respect CC, CFLAGS and LDFLAGS. Fix bugs
+  240005, 243588, 246447.
 
   12 Sep 2009; Víctor Ostorga <vostorga@gentoo.org>
   -files/spim-7.2.1-font.patch:



1.1                  app-emulation/spim/spim-7.5.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/spim/spim-7.5.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/spim/spim-7.5.ebuild?rev=1.1&content-type=text/plain

Index: spim-7.5.ebuild
===================================================================
# 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.5.ebuild,v 1.1 2009/12/22 19:53:09 spatz Exp $

EAPI="2"

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_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 || die

	if use X; then
		cd "${S}/xspim"
		emake -j1 xspim || die
	fi
}

src_install() {
	dodir /var/lib/spim || die
	dodoc README VERSION ChangeLog || die

	cd "${S}/spim"
	emake DESTDIR="${D}" install || die "Unable to install spim"

	if use X; then
		cd "${S}/xspim"
		emake DESTDIR="${D}" 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!"
}






^ permalink raw reply	[flat|nested] 2+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-emulation/spim: ChangeLog spim-7.5.ebuild
@ 2010-01-15  2:27 Jonathan Callen (abcd)
  0 siblings, 0 replies; 2+ messages in thread
From: Jonathan Callen (abcd) @ 2010-01-15  2:27 UTC (permalink / raw
  To: gentoo-commits

abcd        10/01/15 02:27:54

  Modified:             ChangeLog spim-7.5.ebuild
  Log:
  Add prefix keywords
  (Portage version: -svn/cvs/Linux i686)

Revision  Changes    Path
1.50                 app-emulation/spim/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/spim/ChangeLog?rev=1.50&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/spim/ChangeLog?rev=1.50&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/spim/ChangeLog?r1=1.49&r2=1.50

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-emulation/spim/ChangeLog,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -r1.49 -r1.50
--- ChangeLog	22 Dec 2009 19:53:09 -0000	1.49
+++ ChangeLog	15 Jan 2010 02:27:54 -0000	1.50
@@ -1,6 +1,9 @@
 # ChangeLog for app-emulation/spim
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/spim/ChangeLog,v 1.49 2009/12/22 19:53:09 spatz Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/spim/ChangeLog,v 1.50 2010/01/15 02:27:54 abcd Exp $
+
+  15 Jan 2010; Jonathan Callen <abcd@gentoo.org> spim-7.5.ebuild:
+  Add prefix keywords
 
 *spim-7.5 (22 Dec 2009)
 



1.2                  app-emulation/spim/spim-7.5.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/spim/spim-7.5.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/spim/spim-7.5.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/spim/spim-7.5.ebuild?r1=1.1&r2=1.2

Index: spim-7.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-emulation/spim/spim-7.5.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- spim-7.5.ebuild	22 Dec 2009 19:53:09 -0000	1.1
+++ spim-7.5.ebuild	15 Jan 2010 02:27:54 -0000	1.2
@@ -1,6 +1,6 @@
-# Copyright 1999-2009 Gentoo Foundation
+# 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-7.5.ebuild,v 1.1 2009/12/22 19:53:09 spatz Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/spim/spim-7.5.ebuild,v 1.2 2010/01/15 02:27:54 abcd Exp $
 
 EAPI="2"
 
@@ -12,7 +12,7 @@
 
 LICENSE="as-is"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
 IUSE="X"
 
 RDEPEND="X? ( x11-libs/libXaw






^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2010-01-15  2:27 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-01-15  2:27 [gentoo-commits] gentoo-x86 commit in app-emulation/spim: ChangeLog spim-7.5.ebuild Jonathan Callen (abcd)
  -- strict thread matches above, loose matches on Subject: below --
2009-12-22 19:53 Dror Levin (spatz)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox