diff options
author | 2006-02-10 03:56:43 +0000 | |
---|---|---|
committer | 2006-02-10 03:56:43 +0000 | |
commit | a9fe6af66aaf75214900204ef6f6bf08139498e9 (patch) | |
tree | 984d1e56d40f81ce2121ae9d50deee97715c335f | |
parent | Added USE=ident support, fixed DEPEND's, bug #119290 (diff) | |
download | historical-a9fe6af66aaf75214900204ef6f6bf08139498e9.tar.gz historical-a9fe6af66aaf75214900204ef6f6bf08139498e9.tar.bz2 historical-a9fe6af66aaf75214900204ef6f6bf08139498e9.zip |
Disallowing -ftracer to avoid bug#122192, thanks to Markus Gothe for reporting
Package-Manager: portage-2.0.53_rc7
-rw-r--r-- | games-emulation/mupen64-glide64/ChangeLog | 7 | ||||
-rw-r--r-- | games-emulation/mupen64-glide64/Manifest | 20 | ||||
-rw-r--r-- | games-emulation/mupen64-glide64/mupen64-glide64-0.7.ebuild | 6 |
3 files changed, 24 insertions, 9 deletions
diff --git a/games-emulation/mupen64-glide64/ChangeLog b/games-emulation/mupen64-glide64/ChangeLog index 5e7b8280e638..75efd1023bde 100644 --- a/games-emulation/mupen64-glide64/ChangeLog +++ b/games-emulation/mupen64-glide64/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-emulation/mupen64-glide64 -# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/mupen64-glide64/ChangeLog,v 1.7 2005/09/20 15:22:53 mr_bones_ Exp $ +# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-emulation/mupen64-glide64/ChangeLog,v 1.8 2006/02/10 03:56:43 morfic Exp $ + + 10 Feb 2006; Daniel Goller <morfic@gentoo.org> mupen64-glide64-0.7.ebuild: + Disallowing -ftracer to avoid bug#122192, thanks Markus Gothe for reporting 20 Sep 2005; Michael Sterrett <mr_bones_@gentoo.org> mupen64-glide64-0.7.ebuild: diff --git a/games-emulation/mupen64-glide64/Manifest b/games-emulation/mupen64-glide64/Manifest index 58bba58537f7..4d3400679983 100644 --- a/games-emulation/mupen64-glide64/Manifest +++ b/games-emulation/mupen64-glide64/Manifest @@ -1,7 +1,17 @@ -MD5 a3e62bf537d9a02609601aa9ba76da7e metadata.xml 247 -MD5 db67ee77068921c556f18d34ccf601d8 ChangeLog 1279 -MD5 084dde6291f8dd03e1f7f1c81a3c2595 mupen64-glide64-0.7.ebuild 1206 -MD5 2f68b9e4d03102e87c1b845f4112b051 files/mupen64-glide64-0.7-compile.patch 4677 +-----BEGIN PGP SIGNED MESSAGE----- +Hash: SHA1 + +MD5 001cafe491d2355aab2ddad5d815c02b ChangeLog 1432 MD5 ea5cfac2f37f3bea3a5a9ac9b6c06854 files/digest-mupen64-glide64-0.7 67 -MD5 b64d5727662ec96a6a14bf92476c74a5 files/mupen64-glide64-0.7-inifix.patch 1801 +MD5 2f68b9e4d03102e87c1b845f4112b051 files/mupen64-glide64-0.7-compile.patch 4677 MD5 791bcffd2d51c09bb816d5449bf5ca91 files/mupen64-glide64-0.7-gtk2.patch 1544 +MD5 b64d5727662ec96a6a14bf92476c74a5 files/mupen64-glide64-0.7-inifix.patch 1801 +MD5 a3e62bf537d9a02609601aa9ba76da7e metadata.xml 247 +MD5 bee58f212dfa84cf44f4c46e5e20aadc mupen64-glide64-0.7.ebuild 1261 +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.4.2 (GNU/Linux) + +iD8DBQFD7BQi/aM9DdBw91cRAhi6AJsHVmS/PonNbWMvkTNHplxWrs433QCeOLQc +DpdzVH38nG6wj9kd7xmkWlI= +=5iWx +-----END PGP SIGNATURE----- diff --git a/games-emulation/mupen64-glide64/mupen64-glide64-0.7.ebuild b/games-emulation/mupen64-glide64/mupen64-glide64-0.7.ebuild index 0e007b3fa067..5969d016257b 100644 --- a/games-emulation/mupen64-glide64/mupen64-glide64-0.7.ebuild +++ b/games-emulation/mupen64-glide64/mupen64-glide64-0.7.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2005 Gentoo Foundation +# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/mupen64-glide64/mupen64-glide64-0.7.ebuild,v 1.7 2005/09/20 15:22:53 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-emulation/mupen64-glide64/mupen64-glide64-0.7.ebuild,v 1.8 2006/02/10 03:56:43 morfic Exp $ inherit flag-o-matic eutils games @@ -33,6 +33,8 @@ src_unpack() { # gcc 3.4 at least has a problem with -O3 and inline asm replace-flags -O3 -O2 + # -ftracer is causing bug#122192 + filter-flags -ftracer sed -i \ -e "s:CFLAGS.*=\(.*\):CFLAGS=\1 ${CFLAGS}:" \ Makefile \ |