diff options
author | Simon Stelling <blubb@gentoo.org> | 2005-07-13 21:12:54 +0000 |
---|---|---|
committer | Simon Stelling <blubb@gentoo.org> | 2005-07-13 21:12:54 +0000 |
commit | be88caea13a8913580ac53b0551ca0bb02e59686 (patch) | |
tree | e1046c37053cfbca4e7fa9dd1d49d41a53250b37 /app-emulation/spim | |
parent | Stable on sparc wrt #95199 (diff) | |
download | historical-be88caea13a8913580ac53b0551ca0bb02e59686.tar.gz historical-be88caea13a8913580ac53b0551ca0bb02e59686.tar.bz2 historical-be88caea13a8913580ac53b0551ca0bb02e59686.zip |
fix bug 97217 and 90473 by removing -D__i386__ from the Makefile
Package-Manager: portage-2.0.51.22-r1
Diffstat (limited to 'app-emulation/spim')
-rw-r--r-- | app-emulation/spim/ChangeLog | 5 | ||||
-rw-r--r-- | app-emulation/spim/Manifest | 18 | ||||
-rw-r--r-- | app-emulation/spim/spim-6.5-r1.ebuild | 5 |
3 files changed, 11 insertions, 17 deletions
diff --git a/app-emulation/spim/ChangeLog b/app-emulation/spim/ChangeLog index 0b8d9e06425a..a09352ec61b5 100644 --- a/app-emulation/spim/ChangeLog +++ b/app-emulation/spim/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-emulation/spim # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/spim/ChangeLog,v 1.21 2005/04/24 11:14:15 hansmi Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/spim/ChangeLog,v 1.22 2005/07/13 21:12:54 blubb Exp $ + + 13 Jul 2005; Simon Stelling <blubb@gentoo.org> spim-6.5-r1.ebuild: + fix bug 97217 and 90473 by removing -D__i386__ from the Makefile 24 Apr 2005; Michael Hanselmann <hansmi@gentoo.org> spim-7.0.ebuild: Stable on ppc. diff --git a/app-emulation/spim/Manifest b/app-emulation/spim/Manifest index 8f557bf11eed..42b6372d81c0 100644 --- a/app-emulation/spim/Manifest +++ b/app-emulation/spim/Manifest @@ -1,19 +1,9 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA1 - -MD5 8ab52eec921de82adf401e4c1ab723de ChangeLog 2491 +MD5 0675f70bef88f02360396cbd12736495 ChangeLog 2627 +MD5 c6358f7020eb93f97580e33e2a7f2856 spim-7.0.ebuild 1460 +MD5 f180f948f41e347de9ebca387391018e metadata.xml 476 +MD5 143d981e1c05b3988326914f6e2b727b spim-6.5-r1.ebuild 1419 MD5 d71d66b98121e4e42ca59fa94310ed1e files/6.5-parser.patch 266 MD5 3962179c22e4349945b01edbadfac9a5 files/digest-spim-6.5-r1 60 MD5 e2af6a0e5ca4267cfad9f1bf5e954655 files/digest-spim-7.0 60 MD5 687579cae8dc43834d01a92be664c826 files/spim-6.5-font.patch 362 MD5 d07cf1bbff97319734f9f85a3395ffa8 files/spim-7.0-font.patch 441 -MD5 f180f948f41e347de9ebca387391018e metadata.xml 476 -MD5 af23fbac684b3e24fcdbfa73b40d834e spim-6.5-r1.ebuild 1396 -MD5 c6358f7020eb93f97580e33e2a7f2856 spim-7.0.ebuild 1460 ------BEGIN PGP SIGNATURE----- -Version: GnuPG v1.4.1 (GNU/Linux) - -iD8DBQFC0C1UI1lqEGTUzyQRAlUdAKCXWXwqRhK9On/QsDMQIAzZI0BnvQCgw7j7 -l4daBKbJcvXzVcomUGTwtfE= -=N7Nr ------END PGP SIGNATURE----- diff --git a/app-emulation/spim/spim-6.5-r1.ebuild b/app-emulation/spim/spim-6.5-r1.ebuild index 61c29e1d7337..6dfa1fd38283 100644 --- a/app-emulation/spim/spim-6.5-r1.ebuild +++ b/app-emulation/spim/spim-6.5-r1.ebuild @@ -1,6 +1,6 @@ # 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-6.5-r1.ebuild,v 1.4 2005/02/12 18:35:42 kloeri Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/spim/spim-6.5-r1.ebuild,v 1.5 2005/07/13 21:12:54 blubb Exp $ inherit eutils @@ -35,7 +35,8 @@ src_compile() { -e 's/@make/@$(MAKE)/' \ -e "s:\(BIN_DIR = \).*$:\1/usr/bin:" \ -e "s:\(MAN_DIR = \).*$:\1/usr/share/bin:" \ - -e "s:\(TRAP_DIR = \).*$:\1/usr/sbin:" Makefile \ + -e "s:\(TRAP_DIR = \).*$:\1/usr/sbin:" \ + -e "s:-D__i386__::" Makefile \ || die "sed Makefile failed" emake spim || die "make spim failed" |