Gentoo Archives: gentoo-commits

From: "Michael Sterrett (mr_bones_)" <mr_bones_@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in games-strategy/freeciv: ChangeLog freeciv-2.2.0.ebuild
Date: Sat, 27 Feb 2010 22:11:31
Message-Id: E1NlUse-0000PM-HJ@stork.gentoo.org
1 mr_bones_ 10/02/27 22:11:24
2
3 Modified: ChangeLog freeciv-2.2.0.ebuild
4 Log:
5 fix default client logic (bug #307117)
6 (Portage version: 2.1.7.16/cvs/Linux i686)
7
8 Revision Changes Path
9 1.100 games-strategy/freeciv/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/ChangeLog?rev=1.100&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/ChangeLog?rev=1.100&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/ChangeLog?r1=1.99&r2=1.100
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/games-strategy/freeciv/ChangeLog,v
18 retrieving revision 1.99
19 retrieving revision 1.100
20 diff -u -r1.99 -r1.100
21 --- ChangeLog 26 Feb 2010 20:08:38 -0000 1.99
22 +++ ChangeLog 27 Feb 2010 22:11:23 -0000 1.100
23 @@ -1,6 +1,9 @@
24 # ChangeLog for games-strategy/freeciv
25 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/games-strategy/freeciv/ChangeLog,v 1.99 2010/02/26 20:08:38 mr_bones_ Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/games-strategy/freeciv/ChangeLog,v 1.100 2010/02/27 22:11:23 mr_bones_ Exp $
28 +
29 + 27 Feb 2010; Michael Sterrett <mr_bones_@g.o> freeciv-2.2.0.ebuild:
30 + fix default client logic (bug #307117)
31
32 *freeciv-2.2.0 (26 Feb 2010)
33
34
35
36
37 1.2 games-strategy/freeciv/freeciv-2.2.0.ebuild
38
39 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/freeciv-2.2.0.ebuild?rev=1.2&view=markup
40 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/freeciv-2.2.0.ebuild?rev=1.2&content-type=text/plain
41 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/freeciv-2.2.0.ebuild?r1=1.1&r2=1.2
42
43 Index: freeciv-2.2.0.ebuild
44 ===================================================================
45 RCS file: /var/cvsroot/gentoo-x86/games-strategy/freeciv/freeciv-2.2.0.ebuild,v
46 retrieving revision 1.1
47 retrieving revision 1.2
48 diff -u -r1.1 -r1.2
49 --- freeciv-2.2.0.ebuild 26 Feb 2010 20:08:38 -0000 1.1
50 +++ freeciv-2.2.0.ebuild 27 Feb 2010 22:11:23 -0000 1.2
51 @@ -1,6 +1,6 @@
52 # Copyright 1999-2010 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 -# $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 $
55 +# $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 $
56
57 EAPI=2
58 inherit eutils gnome2-utils games
59 @@ -58,12 +58,14 @@
60 }
61
62 src_configure() {
63 - local myclient="gtk" # default to gtk if none specified
64 + local myclient
65
66 if use dedicated ; then
67 myclient="no"
68 else
69 use sdl && myclient="${myclient} sdl"
70 + use gtk && myclient="${myclient} gtk"
71 + [[ -z ${myclient} ]] && myclient="gtk" # default to gtk if none specified
72 fi
73
74 egamesconf \