diff options
author | Daniel Goller <morfic@gentoo.org> | 2005-03-09 07:08:37 +0000 |
---|---|---|
committer | Daniel Goller <morfic@gentoo.org> | 2005-03-09 07:08:37 +0000 |
commit | e1888ce53ea6b8f9e5bd12c9eecc4578eccff340 (patch) | |
tree | 7e847e81abb0fc0c2758ea1af8fdf0596bb47776 /games-emulation/mupen64-riceplugin | |
parent | clean old broken ebuild (diff) | |
download | gentoo-2-e1888ce53ea6b8f9e5bd12c9eecc4578eccff340.tar.gz gentoo-2-e1888ce53ea6b8f9e5bd12c9eecc4578eccff340.tar.bz2 gentoo-2-e1888ce53ea6b8f9e5bd12c9eecc4578eccff340.zip |
fixed precedence error
(Portage version: 2.0.51.19)
Diffstat (limited to 'games-emulation/mupen64-riceplugin')
-rw-r--r-- | games-emulation/mupen64-riceplugin/ChangeLog | 6 | ||||
-rw-r--r-- | games-emulation/mupen64-riceplugin/mupen64-riceplugin-5.1.0.ebuild | 7 |
2 files changed, 10 insertions, 3 deletions
diff --git a/games-emulation/mupen64-riceplugin/ChangeLog b/games-emulation/mupen64-riceplugin/ChangeLog index 1feefbdb0822..42a99a7890e4 100644 --- a/games-emulation/mupen64-riceplugin/ChangeLog +++ b/games-emulation/mupen64-riceplugin/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for games-emulation/mupen64-riceplugin # Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/mupen64-riceplugin/ChangeLog,v 1.6 2005/01/20 04:27:01 morfic Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-emulation/mupen64-riceplugin/ChangeLog,v 1.7 2005/03/09 07:08:37 morfic Exp $ + + 08 Mar 2005; Daniel Goller <morfic@gentoo.org> + mupen64-riceplugin-5.1.0.ebuild: + changed to if use gtk2 ; then epatch fi see bug #84497 19 Jan 2005; Daniel Goller <morfic@gentoo.org> mupen64-riceplugin-5.1.0.ebuild: diff --git a/games-emulation/mupen64-riceplugin/mupen64-riceplugin-5.1.0.ebuild b/games-emulation/mupen64-riceplugin/mupen64-riceplugin-5.1.0.ebuild index 378113d4acc7..f60162729ac5 100644 --- a/games-emulation/mupen64-riceplugin/mupen64-riceplugin-5.1.0.ebuild +++ b/games-emulation/mupen64-riceplugin/mupen64-riceplugin-5.1.0.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/games-emulation/mupen64-riceplugin/mupen64-riceplugin-5.1.0.ebuild,v 1.4 2005/01/20 04:27:01 morfic Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-emulation/mupen64-riceplugin/mupen64-riceplugin-5.1.0.ebuild,v 1.5 2005/03/09 07:08:37 morfic Exp $ inherit games gcc eutils libtool @@ -35,7 +35,10 @@ src_unpack() { cd ${S} epatch ${FILESDIR}/${PN}-makefile.patch || die "patch failed" - use gtk2 && epatch ${FILESDIR}/${PN}-gtk2.patch || die "patch failed" + + if use gtk2 ; then + epatch ${FILESDIR}/${PN}-gtk2.patch || die "patch failed" + fi epatch ${FILESDIR}/${PN}-compile.patch || die "patch failed" |