public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in games-strategy/freeciv: ChangeLog freeciv-2.2.0.ebuild
@ 2010-02-26 20:08 Michael Sterrett (mr_bones_)
  0 siblings, 0 replies; 10+ messages in thread
From: Michael Sterrett (mr_bones_) @ 2010-02-26 20:08 UTC (permalink / raw
  To: gentoo-commits

mr_bones_    10/02/26 20:08:38

  Modified:             ChangeLog
  Added:                freeciv-2.2.0.ebuild
  Log:
  version bump
  (Portage version: 2.1.7.16/cvs/Linux i686)

Revision  Changes    Path
1.99                 games-strategy/freeciv/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/ChangeLog?rev=1.99&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/ChangeLog?rev=1.99&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/ChangeLog?r1=1.98&r2=1.99

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/freeciv/ChangeLog,v
retrieving revision 1.98
retrieving revision 1.99
diff -u -r1.98 -r1.99
--- ChangeLog	9 Feb 2010 05:51:43 -0000	1.98
+++ ChangeLog	26 Feb 2010 20:08:38 -0000	1.99
@@ -1,6 +1,12 @@
 # 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.98 2010/02/09 05:51:43 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/freeciv/ChangeLog,v 1.99 2010/02/26 20:08:38 mr_bones_ Exp $
+
+*freeciv-2.2.0 (26 Feb 2010)
+
+  26 Feb 2010; Michael Sterrett <mr_bones_@gentoo.org>
+  +freeciv-2.2.0.ebuild, +files/freeciv-2.2.0-clean-man.patch:
+  version bump
 
   09 Feb 2010; Michael Sterrett <mr_bones_@gentoo.org>
   freeciv-2.1.11.ebuild:



1.1                  games-strategy/freeciv/freeciv-2.2.0.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/freeciv-2.2.0.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/freeciv-2.2.0.ebuild?rev=1.1&content-type=text/plain

Index: freeciv-2.2.0.ebuild
===================================================================
# 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 $

EAPI=2
inherit eutils gnome2-utils games

DESCRIPTION="multiplayer strategy game (Civilization Clone)"
HOMEPAGE="http://www.freeciv.org/"
SRC_URI="mirror://sourceforge/freeciv/${P}.tar.bz2"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~mips ~ppc ~ppc64 ~sparc ~x86"
IUSE="auth dedicated ggz gtk nls readline sdl"

RDEPEND="readline? ( sys-libs/readline )
	sys-libs/zlib
	app-arch/bzip2
	!dedicated? (
		nls? ( virtual/libintl )
		gtk? ( x11-libs/gtk+:2 )
		sdl? (
			media-libs/libsdl[audio,video]
			media-libs/sdl-image[png]
			media-libs/freetype
			media-libs/sdl-mixer
		)
		!gtk? ( !sdl? ( x11-libs/gtk+:2 ) )
		ggz? ( dev-games/ggz-client-libs )
		media-libs/libpng
		auth? ( virtual/mysql )
	)"
DEPEND="${RDEPEND}
	dev-util/pkgconfig
	!dedicated? (
		nls? ( sys-devel/gettext )
		x11-proto/xextproto
	)"

src_prepare() {
	# install the .desktop in /usr/share/applications
	# install the icons in /usr/share/pixmaps
	sed -i \
		-e 's:^\(desktopfiledir = \).*:\1/usr/share/applications:' \
		-e 's:^\(icon[0-9]*dir = \)$(prefix)\(.*\):\1/usr\2:' \
		-e 's:^\(icon[0-9]*dir = \)$(datadir)\(.*\):\1/usr/share\2:' \
		client/Makefile.in \
		server/Makefile.in \
		data/Makefile.in \
		data/icons/Makefile.in \
		|| die "sed failed"

	# remove civclient manpage if dedicated server
	if use dedicated ; then
		epatch "${FILESDIR}"/${P}-clean-man.patch
	fi
}

src_configure() {
	local myclient="gtk" # default to gtk if none specified

	if use dedicated ; then
		myclient="no"
	else
		use sdl && myclient="${myclient} sdl"
	fi

	egamesconf \
		--disable-dependency-tracking \
		--localedir=/usr/share/locale \
		$(use_enable auth) \
		$(use_enable nls) \
		$(use_with readline) \
		$(use_enable sdl sdl-mixer) \
		$(use_with ggz ggz-client) \
		--enable-client="${myclient}"
}

src_install() {
	emake DESTDIR="${D}" install || die "emake install failed"

	if ! use dedicated ; then
		# Create and install the html manual. It can't be done for dedicated
		# servers, because the 'civmanual' tool is then not built. Also
		# delete civmanual from the GAMES_BINDIR, because it's then useless.
		# Note: to have it localized, it should be ran from _postinst, or
		# something like that, but then it's a PITA to avoid orphan files...
		./manual/civmanual || die "civmanual failed"
		dohtml manual*.html || die "dohtml failed"
		rm -f "${D}/${GAMES_BINDIR}"/civmanual
		use sdl && make_desktop_entry freeciv-sdl "Freeciv (SDL)" freeciv-client
	fi

	dodoc ChangeLog NEWS doc/{BUGS,CodingStyle,HACKING,HOWTOPLAY,README*,TODO}

	prepgamesdirs
}

pkg_preinst() {
	games_pkg_preinst
	gnome2_icon_savelist
}

pkg_postinst() {
	games_pkg_postinst
	gnome2_icon_cache_update
}

pkg_postrm() {
	gnome2_icon_cache_update
}






^ permalink raw reply	[flat|nested] 10+ messages in thread

* [gentoo-commits] gentoo-x86 commit in games-strategy/freeciv: ChangeLog freeciv-2.2.0.ebuild
@ 2010-02-27 22:11 Michael Sterrett (mr_bones_)
  0 siblings, 0 replies; 10+ messages in thread
From: Michael Sterrett (mr_bones_) @ 2010-02-27 22:11 UTC (permalink / raw
  To: gentoo-commits

mr_bones_    10/02/27 22:11:24

  Modified:             ChangeLog freeciv-2.2.0.ebuild
  Log:
  fix default client logic (bug #307117)
  (Portage version: 2.1.7.16/cvs/Linux i686)

Revision  Changes    Path
1.100                games-strategy/freeciv/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/ChangeLog?rev=1.100&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/ChangeLog?rev=1.100&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/ChangeLog?r1=1.99&r2=1.100

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/freeciv/ChangeLog,v
retrieving revision 1.99
retrieving revision 1.100
diff -u -r1.99 -r1.100
--- ChangeLog	26 Feb 2010 20:08:38 -0000	1.99
+++ ChangeLog	27 Feb 2010 22:11:23 -0000	1.100
@@ -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)
 



1.2                  games-strategy/freeciv/freeciv-2.2.0.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/freeciv-2.2.0.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/freeciv-2.2.0.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/freeciv-2.2.0.ebuild?r1=1.1&r2=1.2

Index: freeciv-2.2.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/freeciv/freeciv-2.2.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- freeciv-2.2.0.ebuild	26 Feb 2010 20:08:38 -0000	1.1
+++ freeciv-2.2.0.ebuild	27 Feb 2010 22:11:23 -0000	1.2
@@ -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_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 \






^ permalink raw reply	[flat|nested] 10+ messages in thread

* [gentoo-commits] gentoo-x86 commit in games-strategy/freeciv: ChangeLog freeciv-2.2.0.ebuild
@ 2010-04-13 15:49 Michael Sterrett (mr_bones_)
  0 siblings, 0 replies; 10+ messages in thread
From: Michael Sterrett (mr_bones_) @ 2010-04-13 15:49 UTC (permalink / raw
  To: gentoo-commits

mr_bones_    10/04/13 15:49:21

  Modified:             ChangeLog freeciv-2.2.0.ebuild
  Log:
  fix deps for auth support (bug #315005)
  (Portage version: 2.1.8.3/cvs/Linux i686)

Revision  Changes    Path
1.102                games-strategy/freeciv/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/ChangeLog?rev=1.102&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/ChangeLog?rev=1.102&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/ChangeLog?r1=1.101&r2=1.102

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/freeciv/ChangeLog,v
retrieving revision 1.101
retrieving revision 1.102
diff -u -r1.101 -r1.102
--- ChangeLog	5 Mar 2010 20:23:25 -0000	1.101
+++ ChangeLog	13 Apr 2010 15:49:21 -0000	1.102
@@ -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.101 2010/03/05 20:23:25 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/freeciv/ChangeLog,v 1.102 2010/04/13 15:49:21 mr_bones_ Exp $
+
+  13 Apr 2010; Michael Sterrett <mr_bones_@gentoo.org> freeciv-2.2.0.ebuild:
+  fix deps for auth support (bug #315005)
 
   05 Mar 2010; Michael Sterrett <mr_bones_@gentoo.org> freeciv-2.2.0.ebuild,
   metadata.xml:



1.4                  games-strategy/freeciv/freeciv-2.2.0.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/freeciv-2.2.0.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/freeciv-2.2.0.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/freeciv-2.2.0.ebuild?r1=1.3&r2=1.4

Index: freeciv-2.2.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/freeciv/freeciv-2.2.0.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- freeciv-2.2.0.ebuild	5 Mar 2010 20:23:25 -0000	1.3
+++ freeciv-2.2.0.ebuild	13 Apr 2010 15:49:21 -0000	1.4
@@ -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.3 2010/03/05 20:23:25 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/freeciv/freeciv-2.2.0.ebuild,v 1.4 2010/04/13 15:49:21 mr_bones_ Exp $
 
 EAPI=2
 inherit eutils gnome2-utils games
@@ -17,6 +17,7 @@
 RDEPEND="readline? ( sys-libs/readline )
 	sys-libs/zlib
 	app-arch/bzip2
+	auth? ( virtual/mysql )
 	!dedicated? (
 		nls? ( virtual/libintl )
 		gtk? ( x11-libs/gtk+:2 )
@@ -32,7 +33,6 @@
 		)
 		ggz? ( dev-games/ggz-client-libs )
 		media-libs/libpng
-		auth? ( virtual/mysql )
 	)"
 DEPEND="${RDEPEND}
 	dev-util/pkgconfig






^ permalink raw reply	[flat|nested] 10+ messages in thread

* [gentoo-commits] gentoo-x86 commit in games-strategy/freeciv: ChangeLog freeciv-2.2.0.ebuild
@ 2010-04-27  6:38 Michael Sterrett (mr_bones_)
  0 siblings, 0 replies; 10+ messages in thread
From: Michael Sterrett (mr_bones_) @ 2010-04-27  6:38 UTC (permalink / raw
  To: gentoo-commits

mr_bones_    10/04/27 06:38:00

  Modified:             ChangeLog freeciv-2.2.0.ebuild
  Log:
  add required ggz deps (bug #317289)
  (Portage version: 2.1.8.3/cvs/Linux i686)

Revision  Changes    Path
1.103                games-strategy/freeciv/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/ChangeLog?rev=1.103&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/ChangeLog?rev=1.103&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/ChangeLog?r1=1.102&r2=1.103

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/freeciv/ChangeLog,v
retrieving revision 1.102
retrieving revision 1.103
diff -u -r1.102 -r1.103
--- ChangeLog	13 Apr 2010 15:49:21 -0000	1.102
+++ ChangeLog	27 Apr 2010 06:38:00 -0000	1.103
@@ -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.102 2010/04/13 15:49:21 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/freeciv/ChangeLog,v 1.103 2010/04/27 06:38:00 mr_bones_ Exp $
+
+  27 Apr 2010; Michael Sterrett <mr_bones_@gentoo.org> freeciv-2.2.0.ebuild:
+  add required ggz deps (bug #317289); drop mips due to missing keywords
 
   13 Apr 2010; Michael Sterrett <mr_bones_@gentoo.org> freeciv-2.2.0.ebuild:
   fix deps for auth support (bug #315005)



1.5                  games-strategy/freeciv/freeciv-2.2.0.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/freeciv-2.2.0.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/freeciv-2.2.0.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/freeciv-2.2.0.ebuild?r1=1.4&r2=1.5

Index: freeciv-2.2.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/freeciv/freeciv-2.2.0.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- freeciv-2.2.0.ebuild	13 Apr 2010 15:49:21 -0000	1.4
+++ freeciv-2.2.0.ebuild	27 Apr 2010 06:38:00 -0000	1.5
@@ -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.4 2010/04/13 15:49:21 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/freeciv/freeciv-2.2.0.ebuild,v 1.5 2010/04/27 06:38:00 mr_bones_ Exp $
 
 EAPI=2
 inherit eutils gnome2-utils games
@@ -11,12 +11,13 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86"
 IUSE="auth dedicated ggz gtk ipv6 nls readline sdl +sound"
 
 RDEPEND="readline? ( sys-libs/readline )
 	sys-libs/zlib
 	app-arch/bzip2
+	dev-games/libggz
 	auth? ( virtual/mysql )
 	!dedicated? (
 		nls? ( virtual/libintl )
@@ -31,7 +32,7 @@
 			media-libs/libsdl[audio]
 			media-libs/sdl-mixer
 		)
-		ggz? ( dev-games/ggz-client-libs )
+		ggz? ( games-board/ggz-gtk-client )
 		media-libs/libpng
 	)"
 DEPEND="${RDEPEND}
@@ -61,7 +62,7 @@
 }
 
 src_configure() {
-	local myclient
+	local myclient myopts
 
 	if use dedicated ; then
 		myclient="no"
@@ -69,17 +70,19 @@
 		use sdl && myclient="${myclient} sdl"
 		use gtk && myclient="${myclient} gtk"
 		[[ -z ${myclient} ]] && myclient="gtk" # default to gtk if none specified
+		myopts=$(use_with ggz ggz-client)
 	fi
 
 	egamesconf \
 		--disable-dependency-tracking \
 		--localedir=/usr/share/locale \
+		--with-ggzconfig=/usr/bin \
 		$(use_enable auth) \
 		$(use_enable ipv6) \
 		$(use_enable nls) \
 		$(use_with readline) \
 		$(use_enable sound sdl-mixer) \
-		$(use_with ggz ggz-client) \
+		${myopts} \
 		--enable-client="${myclient}"
 }
 






^ permalink raw reply	[flat|nested] 10+ messages in thread

* [gentoo-commits] gentoo-x86 commit in games-strategy/freeciv: ChangeLog freeciv-2.2.0.ebuild
@ 2010-04-27 12:14 PaweA Hajdan (phajdan.jr)
  0 siblings, 0 replies; 10+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2010-04-27 12:14 UTC (permalink / raw
  To: gentoo-commits

phajdan.jr    10/04/27 12:14:42

  Modified:             ChangeLog freeciv-2.2.0.ebuild
  Log:
  x86 stable wrt bug #313345. Keywords for alpha, mips, ppc64 and sparc are
  dropped due to unsatisfied dependencies (filed bug #317461).
  (Portage version: 2.1.8.3/cvs/Linux i686)

Revision  Changes    Path
1.104                games-strategy/freeciv/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/ChangeLog?rev=1.104&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/ChangeLog?rev=1.104&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/ChangeLog?r1=1.103&r2=1.104

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/freeciv/ChangeLog,v
retrieving revision 1.103
retrieving revision 1.104
diff -u -r1.103 -r1.104
--- ChangeLog	27 Apr 2010 06:38:00 -0000	1.103
+++ ChangeLog	27 Apr 2010 12:14:42 -0000	1.104
@@ -1,6 +1,10 @@
 # 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.103 2010/04/27 06:38:00 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/freeciv/ChangeLog,v 1.104 2010/04/27 12:14:42 phajdan.jr Exp $
+
+  27 Apr 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org> freeciv-2.2.0.ebuild:
+  x86 stable wrt bug #313345. Keywords for alpha, mips, ppc64 and sparc are
+  dropped due to unsatisfied dependencies (filed bug #317461).
 
   27 Apr 2010; Michael Sterrett <mr_bones_@gentoo.org> freeciv-2.2.0.ebuild:
   add required ggz deps (bug #317289); drop mips due to missing keywords



1.6                  games-strategy/freeciv/freeciv-2.2.0.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/freeciv-2.2.0.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/freeciv-2.2.0.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/freeciv-2.2.0.ebuild?r1=1.5&r2=1.6

Index: freeciv-2.2.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/freeciv/freeciv-2.2.0.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- freeciv-2.2.0.ebuild	27 Apr 2010 06:38:00 -0000	1.5
+++ freeciv-2.2.0.ebuild	27 Apr 2010 12:14:42 -0000	1.6
@@ -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.5 2010/04/27 06:38:00 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/freeciv/freeciv-2.2.0.ebuild,v 1.6 2010/04/27 12:14:42 phajdan.jr Exp $
 
 EAPI=2
 inherit eutils gnome2-utils games
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~amd64 ~ppc x86"
 IUSE="auth dedicated ggz gtk ipv6 nls readline sdl +sound"
 
 RDEPEND="readline? ( sys-libs/readline )






^ permalink raw reply	[flat|nested] 10+ messages in thread

* [gentoo-commits] gentoo-x86 commit in games-strategy/freeciv: ChangeLog freeciv-2.2.0.ebuild
@ 2010-05-02 13:16 Tristan Heaven (nyhm)
  0 siblings, 0 replies; 10+ messages in thread
From: Tristan Heaven (nyhm) @ 2010-05-02 13:16 UTC (permalink / raw
  To: gentoo-commits

nyhm        10/05/02 13:16:57

  Modified:             ChangeLog freeciv-2.2.0.ebuild
  Log:
  Use games-ggz.eclass
  (Portage version: 2.2_rc67/cvs/Linux x86_64)

Revision  Changes    Path
1.105                games-strategy/freeciv/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/ChangeLog?rev=1.105&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/ChangeLog?rev=1.105&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/ChangeLog?r1=1.104&r2=1.105

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/freeciv/ChangeLog,v
retrieving revision 1.104
retrieving revision 1.105
diff -u -r1.104 -r1.105
--- ChangeLog	27 Apr 2010 12:14:42 -0000	1.104
+++ ChangeLog	2 May 2010 13:16:57 -0000	1.105
@@ -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.104 2010/04/27 12:14:42 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/freeciv/ChangeLog,v 1.105 2010/05/02 13:16:57 nyhm Exp $
+
+  02 May 2010; Tristan Heaven <nyhm@gentoo.org> freeciv-2.2.0.ebuild:
+  Use games-ggz.eclass
 
   27 Apr 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org> freeciv-2.2.0.ebuild:
   x86 stable wrt bug #313345. Keywords for alpha, mips, ppc64 and sparc are



1.7                  games-strategy/freeciv/freeciv-2.2.0.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/freeciv-2.2.0.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/freeciv-2.2.0.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/freeciv-2.2.0.ebuild?r1=1.6&r2=1.7

Index: freeciv-2.2.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/freeciv/freeciv-2.2.0.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- freeciv-2.2.0.ebuild	27 Apr 2010 12:14:42 -0000	1.6
+++ freeciv-2.2.0.ebuild	2 May 2010 13:16:57 -0000	1.7
@@ -1,9 +1,9 @@
 # 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.6 2010/04/27 12:14:42 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/freeciv/freeciv-2.2.0.ebuild,v 1.7 2010/05/02 13:16:57 nyhm Exp $
 
 EAPI=2
-inherit eutils gnome2-utils games
+inherit eutils gnome2-utils games-ggz games
 
 DESCRIPTION="multiplayer strategy game (Civilization Clone)"
 HOMEPAGE="http://www.freeciv.org/"
@@ -77,6 +77,7 @@
 		--disable-dependency-tracking \
 		--localedir=/usr/share/locale \
 		--with-ggzconfig=/usr/bin \
+		--enable-noregistry="${GGZ_MODDIR}" \
 		$(use_enable auth) \
 		$(use_enable ipv6) \
 		$(use_enable nls) \
@@ -113,9 +114,11 @@
 
 pkg_postinst() {
 	games_pkg_postinst
+	games-ggz_update_modules
 	gnome2_icon_cache_update
 }
 
 pkg_postrm() {
+	games-ggz_update_modules
 	gnome2_icon_cache_update
 }






^ permalink raw reply	[flat|nested] 10+ messages in thread

* [gentoo-commits] gentoo-x86 commit in games-strategy/freeciv: ChangeLog freeciv-2.2.0.ebuild
@ 2010-05-09 18:25 Raul Porcel (armin76)
  0 siblings, 0 replies; 10+ messages in thread
From: Raul Porcel (armin76) @ 2010-05-09 18:25 UTC (permalink / raw
  To: gentoo-commits

armin76     10/05/09 18:25:45

  Modified:             ChangeLog freeciv-2.2.0.ebuild
  Log:
  Re-add ~alpha/~sparc wrt #317461
  (Portage version: 2.1.8.3/cvs/Linux ia64)

Revision  Changes    Path
1.106                games-strategy/freeciv/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/freeciv/ChangeLog?rev=1.106&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/freeciv/ChangeLog?rev=1.106&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/freeciv/ChangeLog?r1=1.105&r2=1.106

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/freeciv/ChangeLog,v
retrieving revision 1.105
retrieving revision 1.106
diff -u -r1.105 -r1.106
--- ChangeLog	2 May 2010 13:16:57 -0000	1.105
+++ ChangeLog	9 May 2010 18:25:45 -0000	1.106
@@ -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.105 2010/05/02 13:16:57 nyhm Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/freeciv/ChangeLog,v 1.106 2010/05/09 18:25:45 armin76 Exp $
+
+  09 May 2010; Raúl Porcel <armin76@gentoo.org> freeciv-2.2.0.ebuild:
+  Re-add ~alpha/~sparc wrt #317461
 
   02 May 2010; Tristan Heaven <nyhm@gentoo.org> freeciv-2.2.0.ebuild:
   Use games-ggz.eclass



1.8                  games-strategy/freeciv/freeciv-2.2.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/freeciv/freeciv-2.2.0.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/freeciv/freeciv-2.2.0.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/freeciv/freeciv-2.2.0.ebuild?r1=1.7&r2=1.8

Index: freeciv-2.2.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/freeciv/freeciv-2.2.0.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- freeciv-2.2.0.ebuild	2 May 2010 13:16:57 -0000	1.7
+++ freeciv-2.2.0.ebuild	9 May 2010 18:25:45 -0000	1.8
@@ -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.7 2010/05/02 13:16:57 nyhm Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/freeciv/freeciv-2.2.0.ebuild,v 1.8 2010/05/09 18:25:45 armin76 Exp $
 
 EAPI=2
 inherit eutils gnome2-utils games-ggz games
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc x86"
+KEYWORDS="~alpha ~amd64 ~ppc ~sparc x86"
 IUSE="auth dedicated ggz gtk ipv6 nls readline sdl +sound"
 
 RDEPEND="readline? ( sys-libs/readline )






^ permalink raw reply	[flat|nested] 10+ messages in thread

* [gentoo-commits] gentoo-x86 commit in games-strategy/freeciv: ChangeLog freeciv-2.2.0.ebuild
@ 2010-05-11 21:14 Brent Baude (ranger)
  0 siblings, 0 replies; 10+ messages in thread
From: Brent Baude (ranger) @ 2010-05-11 21:14 UTC (permalink / raw
  To: gentoo-commits

ranger      10/05/11 21:14:38

  Modified:             ChangeLog freeciv-2.2.0.ebuild
  Log:
  keyworded ~arch for ppc64, bug 313345
  (Portage version: 2.1.7.17/cvs/Linux ppc64)

Revision  Changes    Path
1.107                games-strategy/freeciv/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/freeciv/ChangeLog?rev=1.107&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/freeciv/ChangeLog?rev=1.107&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/freeciv/ChangeLog?r1=1.106&r2=1.107

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/freeciv/ChangeLog,v
retrieving revision 1.106
retrieving revision 1.107
diff -u -r1.106 -r1.107
--- ChangeLog	9 May 2010 18:25:45 -0000	1.106
+++ ChangeLog	11 May 2010 21:14:38 -0000	1.107
@@ -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.106 2010/05/09 18:25:45 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/freeciv/ChangeLog,v 1.107 2010/05/11 21:14:38 ranger Exp $
+
+  11 May 2010; Brent Baude <ranger@gentoo.org> freeciv-2.2.0.ebuild:
+  keyworded ~arch for ppc64, bug 313345
 
   09 May 2010; Raúl Porcel <armin76@gentoo.org> freeciv-2.2.0.ebuild:
   Re-add ~alpha/~sparc wrt #317461



1.9                  games-strategy/freeciv/freeciv-2.2.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/freeciv/freeciv-2.2.0.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/freeciv/freeciv-2.2.0.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/freeciv/freeciv-2.2.0.ebuild?r1=1.8&r2=1.9

Index: freeciv-2.2.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/freeciv/freeciv-2.2.0.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- freeciv-2.2.0.ebuild	9 May 2010 18:25:45 -0000	1.8
+++ freeciv-2.2.0.ebuild	11 May 2010 21:14:38 -0000	1.9
@@ -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.8 2010/05/09 18:25:45 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/freeciv/freeciv-2.2.0.ebuild,v 1.9 2010/05/11 21:14:38 ranger Exp $
 
 EAPI=2
 inherit eutils gnome2-utils games-ggz games
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~ppc ~sparc x86"
+KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc x86"
 IUSE="auth dedicated ggz gtk ipv6 nls readline sdl +sound"
 
 RDEPEND="readline? ( sys-libs/readline )






^ permalink raw reply	[flat|nested] 10+ messages in thread

* [gentoo-commits] gentoo-x86 commit in games-strategy/freeciv: ChangeLog freeciv-2.2.0.ebuild
@ 2010-05-23 20:15 Pacho Ramos (pacho)
  0 siblings, 0 replies; 10+ messages in thread
From: Pacho Ramos (pacho) @ 2010-05-23 20:15 UTC (permalink / raw
  To: gentoo-commits

pacho       10/05/23 20:15:34

  Modified:             ChangeLog freeciv-2.2.0.ebuild
  Log:
  stable amd64, bug 313345
  (Portage version: 2.1.8.3/cvs/Linux x86_64)

Revision  Changes    Path
1.108                games-strategy/freeciv/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/freeciv/ChangeLog?rev=1.108&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/freeciv/ChangeLog?rev=1.108&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/freeciv/ChangeLog?r1=1.107&r2=1.108

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/freeciv/ChangeLog,v
retrieving revision 1.107
retrieving revision 1.108
diff -u -r1.107 -r1.108
--- ChangeLog	11 May 2010 21:14:38 -0000	1.107
+++ ChangeLog	23 May 2010 20:15:34 -0000	1.108
@@ -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.107 2010/05/11 21:14:38 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/freeciv/ChangeLog,v 1.108 2010/05/23 20:15:34 pacho Exp $
+
+  23 May 2010; Pacho Ramos <pacho@gentoo.org> freeciv-2.2.0.ebuild:
+  stable amd64, bug 313345
 
   11 May 2010; Brent Baude <ranger@gentoo.org> freeciv-2.2.0.ebuild:
   keyworded ~arch for ppc64, bug 313345



1.10                 games-strategy/freeciv/freeciv-2.2.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/freeciv/freeciv-2.2.0.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/freeciv/freeciv-2.2.0.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/freeciv/freeciv-2.2.0.ebuild?r1=1.9&r2=1.10

Index: freeciv-2.2.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/freeciv/freeciv-2.2.0.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- freeciv-2.2.0.ebuild	11 May 2010 21:14:38 -0000	1.9
+++ freeciv-2.2.0.ebuild	23 May 2010 20:15:34 -0000	1.10
@@ -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.9 2010/05/11 21:14:38 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/freeciv/freeciv-2.2.0.ebuild,v 1.10 2010/05/23 20:15:34 pacho Exp $
 
 EAPI=2
 inherit eutils gnome2-utils games-ggz games
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ~ppc ~ppc64 ~sparc x86"
 IUSE="auth dedicated ggz gtk ipv6 nls readline sdl +sound"
 
 RDEPEND="readline? ( sys-libs/readline )






^ permalink raw reply	[flat|nested] 10+ messages in thread

* [gentoo-commits] gentoo-x86 commit in games-strategy/freeciv: ChangeLog freeciv-2.2.0.ebuild
@ 2010-07-19  4:37 Joseph Jezak (josejx)
  0 siblings, 0 replies; 10+ messages in thread
From: Joseph Jezak (josejx) @ 2010-07-19  4:37 UTC (permalink / raw
  To: gentoo-commits

josejx      10/07/19 04:37:43

  Modified:             ChangeLog freeciv-2.2.0.ebuild
  Log:
  Marked ppc stable for bug #313345.
  (Portage version: 2.1.8.3/cvs/Linux x86_64)

Revision  Changes    Path
1.110                games-strategy/freeciv/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/freeciv/ChangeLog?rev=1.110&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/freeciv/ChangeLog?rev=1.110&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/freeciv/ChangeLog?r1=1.109&r2=1.110

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/freeciv/ChangeLog,v
retrieving revision 1.109
retrieving revision 1.110
diff -u -r1.109 -r1.110
--- ChangeLog	30 May 2010 18:39:04 -0000	1.109
+++ ChangeLog	19 Jul 2010 04:37:43 -0000	1.110
@@ -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.109 2010/05/30 18:39:04 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/freeciv/ChangeLog,v 1.110 2010/07/19 04:37:43 josejx Exp $
+
+  19 Jul 2010; Joseph Jezak <josejx@gentoo.org> freeciv-2.2.0.ebuild:
+  Marked ppc stable for bug #313345.
 
   30 May 2010; Raúl Porcel <armin76@gentoo.org> freeciv-2.1.9.ebuild,
   freeciv-2.1.11.ebuild, freeciv-2.2.0.ebuild:



1.12                 games-strategy/freeciv/freeciv-2.2.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/freeciv/freeciv-2.2.0.ebuild?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/freeciv/freeciv-2.2.0.ebuild?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/freeciv/freeciv-2.2.0.ebuild?r1=1.11&r2=1.12

Index: freeciv-2.2.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/freeciv/freeciv-2.2.0.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- freeciv-2.2.0.ebuild	30 May 2010 18:39:04 -0000	1.11
+++ freeciv-2.2.0.ebuild	19 Jul 2010 04:37:43 -0000	1.12
@@ -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.11 2010/05/30 18:39:04 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/freeciv/freeciv-2.2.0.ebuild,v 1.12 2010/07/19 04:37:43 josejx Exp $
 
 EAPI=2
 inherit eutils gnome2-utils games-ggz games
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~ppc ~ppc64 x86"
+KEYWORDS="amd64 ppc ~ppc64 x86"
 IUSE="auth dedicated ggz gtk ipv6 nls readline sdl +sound"
 
 RDEPEND="readline? ( sys-libs/readline )






^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2010-07-19  4:37 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-02-27 22:11 [gentoo-commits] gentoo-x86 commit in games-strategy/freeciv: ChangeLog freeciv-2.2.0.ebuild Michael Sterrett (mr_bones_)
  -- strict thread matches above, loose matches on Subject: below --
2010-07-19  4:37 Joseph Jezak (josejx)
2010-05-23 20:15 Pacho Ramos (pacho)
2010-05-11 21:14 Brent Baude (ranger)
2010-05-09 18:25 Raul Porcel (armin76)
2010-05-02 13:16 Tristan Heaven (nyhm)
2010-04-27 12:14 PaweA Hajdan (phajdan.jr)
2010-04-27  6:38 Michael Sterrett (mr_bones_)
2010-04-13 15:49 Michael Sterrett (mr_bones_)
2010-02-26 20:08 Michael Sterrett (mr_bones_)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox