diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2010-02-27 22:11:23 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2010-02-27 22:11:23 +0000 |
commit | 4fecfc273bb8c1c94316bc7e9051dc9f9ce41933 (patch) | |
tree | 6434df161d7a47168dd784dcf7ae8105b0e02cb3 /games-strategy | |
parent | Version bump. (diff) | |
download | gentoo-2-4fecfc273bb8c1c94316bc7e9051dc9f9ce41933.tar.gz gentoo-2-4fecfc273bb8c1c94316bc7e9051dc9f9ce41933.tar.bz2 gentoo-2-4fecfc273bb8c1c94316bc7e9051dc9f9ce41933.zip |
fix default client logic (bug #307117)
(Portage version: 2.1.7.16/cvs/Linux i686)
Diffstat (limited to 'games-strategy')
-rw-r--r-- | games-strategy/freeciv/ChangeLog | 5 | ||||
-rw-r--r-- | games-strategy/freeciv/freeciv-2.2.0.ebuild | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/games-strategy/freeciv/ChangeLog b/games-strategy/freeciv/ChangeLog index bf6660b69d1d..20e0b41f49d1 100644 --- a/games-strategy/freeciv/ChangeLog +++ b/games-strategy/freeciv/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-strategy/freeciv # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-strategy/freeciv/ChangeLog,v 1.99 2010/02/26 20:08:38 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-strategy/freeciv/ChangeLog,v 1.100 2010/02/27 22:11:23 mr_bones_ Exp $ + + 27 Feb 2010; Michael Sterrett <mr_bones_@gentoo.org> freeciv-2.2.0.ebuild: + fix default client logic (bug #307117) *freeciv-2.2.0 (26 Feb 2010) diff --git a/games-strategy/freeciv/freeciv-2.2.0.ebuild b/games-strategy/freeciv/freeciv-2.2.0.ebuild index c675d2ac5383..6d504214877d 100644 --- a/games-strategy/freeciv/freeciv-2.2.0.ebuild +++ b/games-strategy/freeciv/freeciv-2.2.0.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-strategy/freeciv/freeciv-2.2.0.ebuild,v 1.1 2010/02/26 20:08:38 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-strategy/freeciv/freeciv-2.2.0.ebuild,v 1.2 2010/02/27 22:11:23 mr_bones_ Exp $ EAPI=2 inherit eutils gnome2-utils games @@ -58,12 +58,14 @@ src_prepare() { } src_configure() { - local myclient="gtk" # default to gtk if none specified + local myclient if use dedicated ; then myclient="no" else use sdl && myclient="${myclient} sdl" + use gtk && myclient="${myclient} gtk" + [[ -z ${myclient} ]] && myclient="gtk" # default to gtk if none specified fi egamesconf \ |