diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-05-29 22:51:10 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-05-29 22:51:10 +0000 |
commit | 132fbd7e8cc787dc18af6d2d5d5ec546ad355c17 (patch) | |
tree | e34ec564deff2dcbc9277ca135d89aeb65e9581e /games-fps | |
parent | Add a patch to fix security concerns #93079. (diff) | |
download | gentoo-2-132fbd7e8cc787dc18af6d2d5d5ec546ad355c17.tar.gz gentoo-2-132fbd7e8cc787dc18af6d2d5d5ec546ad355c17.tar.bz2 gentoo-2-132fbd7e8cc787dc18af6d2d5d5ec546ad355c17.zip |
Add support for just building a dedicated server #94187 by Jan Reitz.
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'games-fps')
-rw-r--r-- | games-fps/quake2-icculus/ChangeLog | 6 | ||||
-rw-r--r-- | games-fps/quake2-icculus/quake2-icculus-0.16.1.ebuild | 9 |
2 files changed, 7 insertions, 8 deletions
diff --git a/games-fps/quake2-icculus/ChangeLog b/games-fps/quake2-icculus/ChangeLog index 2bfde4df2d15..24bc7d2885a8 100644 --- a/games-fps/quake2-icculus/ChangeLog +++ b/games-fps/quake2-icculus/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for games-fps/quake2-icculus # Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-fps/quake2-icculus/ChangeLog,v 1.13 2005/04/30 06:14:20 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-fps/quake2-icculus/ChangeLog,v 1.14 2005/05/29 22:51:10 vapier Exp $ + + 29 May 2005; Mike Frysinger <vapier@gentoo.org> + quake2-icculus-0.16.1.ebuild: + Add support for just building a dedicated server #94187 by Jan Reitz. 30 Apr 2005; Mike Frysinger <vapier@gentoo.org> +files/quake2-icculus-0.16.1-amd64.patch, quake2-icculus-0.16.1.ebuild: diff --git a/games-fps/quake2-icculus/quake2-icculus-0.16.1.ebuild b/games-fps/quake2-icculus/quake2-icculus-0.16.1.ebuild index 28512af55112..8b8b4b5b1bfc 100644 --- a/games-fps/quake2-icculus/quake2-icculus-0.16.1.ebuild +++ b/games-fps/quake2-icculus/quake2-icculus-0.16.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-fps/quake2-icculus/quake2-icculus-0.16.1.ebuild,v 1.4 2005/04/30 06:14:20 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-fps/quake2-icculus/quake2-icculus-0.16.1.ebuild,v 1.5 2005/05/29 22:51:10 vapier Exp $ inherit eutils games @@ -17,13 +17,11 @@ SLOT="0" KEYWORDS="alpha amd64 ppc sparc x86" IUSE="arts svga sdl aalib dedicated opengl noqmax rogue xatrix ipv6 joystick X" -# default to X11 if svga/opengl/sdl/aalib/dedicated are not in USE RDEPEND="opengl? ( virtual/opengl ) svga? ( media-libs/svgalib ) sdl? ( media-libs/libsdl ) aalib? ( media-libs/aalib ) X? ( virtual/x11 ) - !svga? ( !opengl? ( !sdl? ( !aalib? ( !dedicated? ( virtual/x11 ) ) ) ) ) arts? ( kde-base/arts )" DEPEND="${RDEPEND} rogue? ( app-arch/sharutils ) @@ -80,9 +78,6 @@ yesno() { } src_compile() { - BUILD_X11=$(yesno X) - use sdl || use opengl || use svga || use aalib || BUILD_X11=YES - # xatrix fails to build # rogue fails to build for BUILD_QMAX in YES NO ; do @@ -91,7 +86,7 @@ src_compile() { emake -j1 build_release \ BUILD_SDLQUAKE2=$(yesno sdl) \ BUILD_SVGA=$(yesno svga) \ - BUILD_X11=${BUILD_X11} \ + BUILD_X11=$(yesno X) \ BUILD_GLX=$(yesno opengl) \ BUILD_SDL=$(yesno sdl) \ BUILD_SDLGL=$(yesno sdl opengl) \ |