diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2010-10-18 19:16:34 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2010-10-18 19:16:34 +0000 |
commit | 344536c6636be20f5b71a1f5d43a0d45e09859ab (patch) | |
tree | 2de53027eb202c1fd4ab01b3d01a62e226ca834d /games-simulation | |
parent | Version bump, bug #341535. Changes task file on-disk format. (diff) | |
download | gentoo-2-344536c6636be20f5b71a1f5d43a0d45e09859ab.tar.gz gentoo-2-344536c6636be20f5b71a1f5d43a0d45e09859ab.tar.bz2 gentoo-2-344536c6636be20f5b71a1f5d43a0d45e09859ab.zip |
add libsdl use dep; drop direct svga support (use libsdl backend)
(Portage version: 2.1.8.3/cvs/Linux i686)
Diffstat (limited to 'games-simulation')
-rw-r--r-- | games-simulation/pmars-sdl/ChangeLog | 6 | ||||
-rw-r--r-- | games-simulation/pmars-sdl/pmars-sdl-0.9.2e.ebuild | 11 |
2 files changed, 10 insertions, 7 deletions
diff --git a/games-simulation/pmars-sdl/ChangeLog b/games-simulation/pmars-sdl/ChangeLog index 6627980b32e6..6ac43df2ae42 100644 --- a/games-simulation/pmars-sdl/ChangeLog +++ b/games-simulation/pmars-sdl/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for games-simulation/pmars-sdl # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-simulation/pmars-sdl/ChangeLog,v 1.9 2010/10/13 07:22:51 tupone Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-simulation/pmars-sdl/ChangeLog,v 1.10 2010/10/18 19:16:34 mr_bones_ Exp $ + + 18 Oct 2010; Michael Sterrett <mr_bones_@gentoo.org> + pmars-sdl-0.9.2e.ebuild: + add libsdl use dep; drop direct svga support (use libsdl backend) 13 Oct 2010; Tupone Alfredo <tupone@gentoo.org> pmars-sdl-0.9.2e.ebuild: Respect LDFLAGS. Bug #335540 by flameeyes@gentoo.org diff --git a/games-simulation/pmars-sdl/pmars-sdl-0.9.2e.ebuild b/games-simulation/pmars-sdl/pmars-sdl-0.9.2e.ebuild index 14dfbee52049..4fa317bd2ca9 100644 --- a/games-simulation/pmars-sdl/pmars-sdl-0.9.2e.ebuild +++ b/games-simulation/pmars-sdl/pmars-sdl-0.9.2e.ebuild @@ -1,7 +1,8 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-simulation/pmars-sdl/pmars-sdl-0.9.2e.ebuild,v 1.12 2010/10/13 07:22:51 tupone Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-simulation/pmars-sdl/pmars-sdl-0.9.2e.ebuild,v 1.13 2010/10/18 19:16:34 mr_bones_ Exp $ +EAPI=2 inherit toolchain-funcs games MY_PN="${PN/-sdl/}" @@ -15,13 +16,11 @@ SRC_URI="http://www.cs.helsinki.fi/u/jpihlaja/cw/pmars-sdl/${MY_P}.tar.gz" LICENSE="BSD GPL-2" SLOT="0" KEYWORDS="~amd64 ~ppc x86" -IUSE="sdl X svga" +IUSE="sdl X" -RDEPEND="sdl? ( x11-libs/libX11 media-libs/libsdl ) +DEPEND="sdl? ( x11-libs/libX11 media-libs/libsdl[video] ) X? ( x11-libs/libX11 ) - svga? ( media-libs/svgalib ) - !sdl? ( !X? ( !svga? ( sys-libs/ncurses ) ) )" -DEPEND="${RDEPEND}" + !sdl? ( !X? ( sys-libs/ncurses ) )" S=${WORKDIR}/${MY_P} |