diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2008-11-18 20:23:12 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2008-11-18 20:23:12 +0000 |
commit | 488794f1e7a80e9ed0b3ebf64e947156904095d2 (patch) | |
tree | d7ecd5aef3f41574745a9d64daac2ac55796c054 /games-simulation/pmars-sdl | |
parent | mask games-mud/ytin for removal (diff) | |
download | gentoo-2-488794f1e7a80e9ed0b3ebf64e947156904095d2.tar.gz gentoo-2-488794f1e7a80e9ed0b3ebf64e947156904095d2.tar.bz2 gentoo-2-488794f1e7a80e9ed0b3ebf64e947156904095d2.zip |
fix USE=-* case (bug #247469)
(Portage version: 2.1.4.5)
Diffstat (limited to 'games-simulation/pmars-sdl')
-rw-r--r-- | games-simulation/pmars-sdl/ChangeLog | 8 | ||||
-rw-r--r-- | games-simulation/pmars-sdl/pmars-sdl-0.9.2e.ebuild | 9 |
2 files changed, 11 insertions, 6 deletions
diff --git a/games-simulation/pmars-sdl/ChangeLog b/games-simulation/pmars-sdl/ChangeLog index a88128e4bfe0..ba6f82a36941 100644 --- a/games-simulation/pmars-sdl/ChangeLog +++ b/games-simulation/pmars-sdl/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for games-simulation/pmars-sdl -# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-simulation/pmars-sdl/ChangeLog,v 1.7 2006/10/09 11:10:11 nyhm Exp $ +# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-simulation/pmars-sdl/ChangeLog,v 1.8 2008/11/18 20:23:12 mr_bones_ Exp $ + + 18 Nov 2008; Michael Sterrett <mr_bones_@gentoo.org> + pmars-sdl-0.9.2e.ebuild: + fix USE=-* case (bug #247469) 09 Oct 2006; Tristan Heaven <nyhm@gentoo.org> pmars-sdl-0.9.2e.ebuild: Add modular X dependencies 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 0c4bc7ca8754..93f48322abc1 100644 --- a/games-simulation/pmars-sdl/pmars-sdl-0.9.2e.ebuild +++ b/games-simulation/pmars-sdl/pmars-sdl-0.9.2e.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2006 Gentoo Foundation +# Copyright 1999-2008 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.10 2006/10/09 11:10:11 nyhm Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-simulation/pmars-sdl/pmars-sdl-0.9.2e.ebuild,v 1.11 2008/11/18 20:23:12 mr_bones_ Exp $ inherit toolchain-funcs games @@ -19,7 +19,8 @@ IUSE="sdl X svga" DEPEND="sdl? ( x11-libs/libX11 media-libs/libsdl ) X? ( x11-libs/libX11 ) - svga? ( media-libs/svgalib )" + svga? ( media-libs/svgalib ) + !sdl? ( !X? ( !svga? ( sys-libs/ncurses ) ) )" S=${WORKDIR}/${MY_P} @@ -38,7 +39,7 @@ src_compile() { LIB="-lvgagl -lvga" else CFLAGS="${CFLAGS} -DCURSESGRAPHX" - LIB="-lcurses -ltermcap" + LIB="-lcurses" fi cd src |