diff options
author | Alfredo Tupone <tupone@gentoo.org> | 2010-10-28 12:46:57 +0000 |
---|---|---|
committer | Alfredo Tupone <tupone@gentoo.org> | 2010-10-28 12:46:57 +0000 |
commit | 802b4443072a13617bfd4c7a78f2b953786a23d4 (patch) | |
tree | e41fb01fd2685952af1557e90a25eaf47169fc30 /games-emulation/gngb/gngb-20060309.ebuild | |
parent | Version bump (diff) | |
download | gentoo-2-802b4443072a13617bfd4c7a78f2b953786a23d4.tar.gz gentoo-2-802b4443072a13617bfd4c7a78f2b953786a23d4.tar.bz2 gentoo-2-802b4443072a13617bfd4c7a78f2b953786a23d4.zip |
Fix gcc-4.5 overflow warning. Bug #340196
(Portage version: 2.1.9.22/cvs/Linux i686)
Diffstat (limited to 'games-emulation/gngb/gngb-20060309.ebuild')
-rw-r--r-- | games-emulation/gngb/gngb-20060309.ebuild | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/games-emulation/gngb/gngb-20060309.ebuild b/games-emulation/gngb/gngb-20060309.ebuild index 2e2e8dfc23e7..68fc9d12468c 100644 --- a/games-emulation/gngb/gngb-20060309.ebuild +++ b/games-emulation/gngb/gngb-20060309.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/gngb/gngb-20060309.ebuild,v 1.6 2010/10/15 12:32:08 ranger Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-emulation/gngb/gngb-20060309.ebuild,v 1.7 2010/10/28 12:46:57 tupone Exp $ EAPI=2 inherit eutils games @@ -14,10 +14,13 @@ SLOT="0" KEYWORDS="ppc x86 ~amd64-linux ~x86-linux ~ppc-macos" IUSE="opengl" -DEPEND="media-libs/libsdl[audio,joystick,video] +RDEPEND="media-libs/libsdl[audio,joystick,video] sys-libs/zlib app-arch/bzip2 opengl? ( virtual/opengl )" +DEPEND="${RDEPEND}" + +PATCHES=( "${FILESDIR}"/${P}-ovflfix.patch ) src_configure() { egamesconf $(use_with opengl gl) |