diff options
author | Chris Gianelloni <wolf31o2@gentoo.org> | 2006-04-13 20:36:47 +0000 |
---|---|---|
committer | Chris Gianelloni <wolf31o2@gentoo.org> | 2006-04-13 20:36:47 +0000 |
commit | 3750fa39494d649f7571ff05b09810d5c90756d9 (patch) | |
tree | 306ec4a09ea4fc2362ea2ef4cd473c9190c73001 /games-emulation/fceultra | |
parent | quote $S and $D (diff) | |
download | historical-3750fa39494d649f7571ff05b09810d5c90756d9.tar.gz historical-3750fa39494d649f7571ff05b09810d5c90756d9.tar.bz2 historical-3750fa39494d649f7571ff05b09810d5c90756d9.zip |
Moved games_pkg_setup to the beginning of pkg_setup.
Package-Manager: portage-2.1_pre7-r5
Diffstat (limited to 'games-emulation/fceultra')
-rw-r--r-- | games-emulation/fceultra/ChangeLog | 8 | ||||
-rw-r--r-- | games-emulation/fceultra/fceultra-0.81-r1.ebuild | 6 |
2 files changed, 9 insertions, 5 deletions
diff --git a/games-emulation/fceultra/ChangeLog b/games-emulation/fceultra/ChangeLog index 3c01d188a8e8..cba8cb2c5c4e 100644 --- a/games-emulation/fceultra/ChangeLog +++ b/games-emulation/fceultra/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for games-emulation/fceultra -# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/fceultra/ChangeLog,v 1.16 2005/07/08 22:25:18 mr_bones_ Exp $ +# Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-emulation/fceultra/ChangeLog,v 1.17 2006/04/13 20:32:39 wolf31o2 Exp $ + + 13 Apr 2006; Chris Gianelloni <wolf31o2@gentoo.org> + fceultra-0.81-r1.ebuild: + Moved games_pkg_setup to the beginning of pkg_setup. 08 Jul 2005; Michael Sterrett <mr_bones_@gentoo.org> fceultra-0.98.12.ebuild: diff --git a/games-emulation/fceultra/fceultra-0.81-r1.ebuild b/games-emulation/fceultra/fceultra-0.81-r1.ebuild index 6a6a053b51a9..76d1cc5f8699 100644 --- a/games-emulation/fceultra/fceultra-0.81-r1.ebuild +++ b/games-emulation/fceultra/fceultra-0.81-r1.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/fceultra/fceultra-0.81-r1.ebuild,v 1.9 2005/05/17 18:01:01 wolf31o2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-emulation/fceultra/fceultra-0.81-r1.ebuild,v 1.10 2006/04/13 20:32:39 wolf31o2 Exp $ inherit toolchain-funcs games @@ -19,6 +19,7 @@ DEPEND="svga? ( media-libs/svgalib ) sdl? ( media-libs/libsdl )" pkg_setup() { + games_pkg_setup if [ `gcc-major-version` == 3 ] && [ `gcc-minor-version` == 2 ] && [ ${ARCH} == "x86" ] ; then eerror "Do not use gcc 3.2.x to compile the source code" eerror "on 80x86/IA32 platforms. It has a code generation" @@ -26,7 +27,6 @@ pkg_setup() { die "cant compile on x86 with gcc-3.2.x" fi - games_pkg_setup use sdl && return 0 use svga && return 0 |