diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-07-21 04:36:01 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-07-21 04:36:01 +0000 |
commit | bce8271c721ac305f793d8fcec0bce45934f0c84 (patch) | |
tree | 1caa9478c423fd021eae93244c51fcb8cb1b19d0 /games-emulation/snes9x | |
parent | Version bump, moved files around this time (diff) | |
download | gentoo-2-bce8271c721ac305f793d8fcec0bce45934f0c84.tar.gz gentoo-2-bce8271c721ac305f793d8fcec0bce45934f0c84.tar.bz2 gentoo-2-bce8271c721ac305f793d8fcec0bce45934f0c84.zip |
Punt 3dfx support since it requires glide-2 but we only have glide-3 #93097.
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'games-emulation/snes9x')
-rw-r--r-- | games-emulation/snes9x/ChangeLog | 7 | ||||
-rw-r--r-- | games-emulation/snes9x/snes9x-1.43.ebuild | 21 |
2 files changed, 17 insertions, 11 deletions
diff --git a/games-emulation/snes9x/ChangeLog b/games-emulation/snes9x/ChangeLog index 9aa9e9eb6dc3..562ab0cdc3ce 100644 --- a/games-emulation/snes9x/ChangeLog +++ b/games-emulation/snes9x/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-emulation/snes9x -# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/snes9x/ChangeLog,v 1.15 2005/01/04 23:43:35 vapier Exp $ +# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-emulation/snes9x/ChangeLog,v 1.16 2005/07/21 04:36:01 vapier Exp $ + + 21 Jul 2005; Mike Frysinger <vapier@gentoo.org> snes9x-1.43.ebuild: + Punt 3dfx support since it requires glide-2 but we only have glide-3 #93097. 04 Jan 2005; Mike Frysinger <vapier@gentoo.org> snes9x-1.43.ebuild: Add support for USE=dga. Also remove forced linking with X libs (let diff --git a/games-emulation/snes9x/snes9x-1.43.ebuild b/games-emulation/snes9x/snes9x-1.43.ebuild index 2e2fbbdfbf64..cb1cd137ddab 100644 --- a/games-emulation/snes9x/snes9x-1.43.ebuild +++ b/games-emulation/snes9x/snes9x-1.43.ebuild @@ -1,6 +1,10 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/snes9x/snes9x-1.43.ebuild,v 1.3 2005/07/17 02:41:01 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-emulation/snes9x/snes9x-1.43.ebuild,v 1.4 2005/07/21 04:36:01 vapier Exp $ + +# 3dfx support (glide) is disabled because it requires +# glide-v2 while we only provide glide-v3 in portage +# http://bugs.gentoo.org/show_bug.cgi?id=93097 inherit eutils games @@ -11,17 +15,16 @@ SRC_URI="http://www.lysator.liu.se/snes9x/${PV}/snes9x-${PV}-src.tar.gz" LICENSE="as-is" SLOT="0" KEYWORDS="amd64 ppc x86" -IUSE="3dfx opengl X joystick zlib dga" +IUSE="opengl X joystick zlib dga" RDEPEND="zlib? ( sys-libs/zlib ) virtual/x11 media-libs/libpng - opengl? ( virtual/opengl ) - 3dfx? ( media-libs/glide-v3 )" + opengl? ( virtual/opengl )" DEPEND="${RDEPEND} x86? ( dev-lang/nasm )" -S="${WORKDIR}/${P}-src" +S=${WORKDIR}/${P}-src src_unpack() { unpack ${A} @@ -40,15 +43,15 @@ src_compile() { local vid= mkdir mybins - for vid in 3dfx opengl X fallback ; do + for vid in opengl X fallback ; do if [[ ${vid} != "fallback" ]] ; then use ${vid} || continue fi cd "${S}"/snes9x case ${vid} in - 3dfx) - vidconf="--with-glide --without-opengl --without-x" - target=gsnes9x;; +# 3dfx) +# vidconf="--with-glide --without-opengl --without-x" +# target=gsnes9x;; opengl) vidconf="--with-opengl --without-glide --without-x" target=osnes9x;; |