public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in games-strategy/wesnoth: ChangeLog wesnoth-1.6.2.ebuild
@ 2009-05-11  1:39 Michael Sterrett (mr_bones_)
  0 siblings, 0 replies; 6+ messages in thread
From: Michael Sterrett (mr_bones_) @ 2009-05-11  1:39 UTC (permalink / raw
  To: gentoo-commits

mr_bones_    09/05/11 01:39:45

  Modified:             ChangeLog
  Added:                wesnoth-1.6.2.ebuild
  Log:
  version bump
  (Portage version: 2.1.6.11/cvs/Linux i686)

Revision  Changes    Path
1.144                games-strategy/wesnoth/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/ChangeLog,v
retrieving revision 1.143
retrieving revision 1.144
diff -u -r1.143 -r1.144
--- ChangeLog	16 Apr 2009 06:23:39 -0000	1.143
+++ ChangeLog	11 May 2009 01:39:44 -0000	1.144
@@ -1,6 +1,12 @@
 # ChangeLog for games-strategy/wesnoth
 # Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/ChangeLog,v 1.143 2009/04/16 06:23:39 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/ChangeLog,v 1.144 2009/05/11 01:39:44 mr_bones_ Exp $
+
+*wesnoth-1.6.2 (11 May 2009)
+
+  11 May 2009; Michael Sterrett <mr_bones_@gentoo.org>
+  +wesnoth-1.6.2.ebuild:
+  version bump
 
   16 Apr 2009; Michael Sterrett <mr_bones_@gentoo.org> wesnoth-1.6.1.ebuild:
   fix the desktop files install (bug #263666)



1.1                  games-strategy/wesnoth/wesnoth-1.6.2.ebuild

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

Index: wesnoth-1.6.2.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/wesnoth-1.6.2.ebuild,v 1.1 2009/05/11 01:39:44 mr_bones_ Exp $

EAPI=2
inherit cmake-utils eutils toolchain-funcs flag-o-matic games

DESCRIPTION="Battle for Wesnoth - A fantasy turn-based strategy game"
HOMEPAGE="http://www.wesnoth.org/"
SRC_URI="mirror://sourceforge/wesnoth/${P}.tar.bz2"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE="dedicated nls server tinygui"

RDEPEND=">=media-libs/libsdl-1.2.7[X]
	media-libs/sdl-net
	>=media-libs/sdl-ttf-2.0.8
	>=media-libs/sdl-mixer-1.2[vorbis]
	>=media-libs/sdl-image-1.2[jpeg,png]
	dev-libs/boost
	sys-libs/zlib
	x11-libs/pango
	media-libs/fontconfig
	virtual/libintl"
DEPEND="${RDEPEND}
	dev-util/pkgconfig
	!dedicated? (
		tinygui? ( media-gfx/imagemagick[jpeg,png] )
	)
	nls? ( sys-devel/gettext )"

src_prepare() {
	if use dedicated || use server ; then
		sed \
			-e "s:GAMES_BINDIR:${GAMES_BINDIR}:" \
			-e "s:GAMES_STATEDIR:${GAMES_STATEDIR}:" \
			-e "s/GAMES_USER_DED/${GAMES_USER_DED}/" \
			-e "s/GAMES_GROUP/${GAMES_GROUP}/" "${FILESDIR}"/wesnothd.rc \
			> "${T}"/wesnothd \
			|| die "sed failed"
	fi
	# FIXME: remove this bit in the next version
	sed -i \
		-e '/Version/s/1/1.0/' \
		icons/*desktop \
		|| die "sed failed"
}

src_configure() {
	filter-flags -ftracer -fomit-frame-pointer
	if [[ $(gcc-major-version) -eq 3 ]] ; then
		filter-flags -fstack-protector
		append-flags -fno-stack-protector
	fi
	if use dedicated || use server ; then
		mycmakeargs="${mycmakeargs}
			-DENABLE_CAMPAIGN_SERVER=TRUE
			-DENABLE_SERVER=TRUE
			-DSERVER_UID=${GAMES_USER_DED}
			-DSERVER_GID=${GAMES_GROUP}
			-DFIFO_DIR=${GAMES_STATEDIR}/run/wesnothd"
	else
		mycmakeargs="${mycmakeargs}
			-DENABLE_CAMPAIGN_SERVER=FALSE
			-DENABLE_SERVER=FALSE"
	fi
	mycmakeargs="
		${mycmakeargs}
		$(cmake-utils_use_enable !dedicated GAME)
		$(cmake-utils_use_enable !dedicated ENABLE_DESKTOP_ENTRY)
		$(cmake-utils_use_enable nls NLS)
		-DGUI=$(use tinygui && echo tiny || echo normal)
		-DENABLE_FRIBIDI=FALSE
		-DCMAKE_INSTALL_PREFIX=${GAMES_PREFIX}
		-DPREFERENCES_DIR=.wesnoth
		-DDATAROOTDIR=${GAMES_DATADIR}
		-DBINDIR=${GAMES_BINDIR}
		-DICONDIR=/usr/share/pixmaps
		-DDESKTOPDIR=/usr/share/applications
		-DMANDIR=/usr/share/man
		-DDOCDIR=/usr/share/doc/${PF}"
	cmake-utils_src_configure
}

src_compile() {
	cmake-utils_src_compile
}

src_install() {
	DOCS="README changelog players_changelog" cmake-utils_src_install
	if use dedicated || use server; then
		keepdir "${GAMES_STATEDIR}/run/wesnothd"
		doinitd "${T}"/wesnothd || die "doinitd failed"
	fi
	prepgamesdirs
}






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

* [gentoo-commits] gentoo-x86 commit in games-strategy/wesnoth: ChangeLog wesnoth-1.6.2.ebuild
@ 2009-05-25 13:29 Ferris McCormick (fmccor)
  0 siblings, 0 replies; 6+ messages in thread
From: Ferris McCormick (fmccor) @ 2009-05-25 13:29 UTC (permalink / raw
  To: gentoo-commits

fmccor      09/05/25 13:29:27

  Modified:             ChangeLog wesnoth-1.6.2.ebuild
  Log:
  Sparc stable, Bug #271175.
  (Portage version: 2.2_rc33/cvs/Linux x86_64)

Revision  Changes    Path
1.145                games-strategy/wesnoth/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/ChangeLog,v
retrieving revision 1.144
retrieving revision 1.145
diff -u -r1.144 -r1.145
--- ChangeLog	11 May 2009 01:39:44 -0000	1.144
+++ ChangeLog	25 May 2009 13:29:27 -0000	1.145
@@ -1,6 +1,9 @@
 # ChangeLog for games-strategy/wesnoth
 # Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/ChangeLog,v 1.144 2009/05/11 01:39:44 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/ChangeLog,v 1.145 2009/05/25 13:29:27 fmccor Exp $
+
+  25 May 2009; Ferris McCormick <fmccor@gentoo.org> wesnoth-1.6.2.ebuild:
+  Sparc stable, Bug #271175.
 
 *wesnoth-1.6.2 (11 May 2009)
 



1.2                  games-strategy/wesnoth/wesnoth-1.6.2.ebuild

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

Index: wesnoth-1.6.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/wesnoth-1.6.2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- wesnoth-1.6.2.ebuild	11 May 2009 01:39:44 -0000	1.1
+++ wesnoth-1.6.2.ebuild	25 May 2009 13:29:27 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/wesnoth-1.6.2.ebuild,v 1.1 2009/05/11 01:39:44 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/wesnoth-1.6.2.ebuild,v 1.2 2009/05/25 13:29:27 fmccor Exp $
 
 EAPI=2
 inherit cmake-utils eutils toolchain-funcs flag-o-matic games
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~amd64 ~ppc ~ppc64 sparc ~x86 ~x86-fbsd"
 IUSE="dedicated nls server tinygui"
 
 RDEPEND=">=media-libs/libsdl-1.2.7[X]






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

* [gentoo-commits] gentoo-x86 commit in games-strategy/wesnoth: ChangeLog wesnoth-1.6.2.ebuild
@ 2009-05-27  6:50 Christian Faulhammer (fauli)
  0 siblings, 0 replies; 6+ messages in thread
From: Christian Faulhammer (fauli) @ 2009-05-27  6:50 UTC (permalink / raw
  To: gentoo-commits

fauli       09/05/27 06:50:53

  Modified:             ChangeLog wesnoth-1.6.2.ebuild
  Log:
  stable x86, bug 271175
  (Portage version: 2.1.6.11/cvs/Linux i686)

Revision  Changes    Path
1.146                games-strategy/wesnoth/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/ChangeLog,v
retrieving revision 1.145
retrieving revision 1.146
diff -u -r1.145 -r1.146
--- ChangeLog	25 May 2009 13:29:27 -0000	1.145
+++ ChangeLog	27 May 2009 06:50:53 -0000	1.146
@@ -1,6 +1,9 @@
 # ChangeLog for games-strategy/wesnoth
 # Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/ChangeLog,v 1.145 2009/05/25 13:29:27 fmccor Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/ChangeLog,v 1.146 2009/05/27 06:50:53 fauli Exp $
+
+  27 May 2009; Christian Faulhammer <fauli@gentoo.org> wesnoth-1.6.2.ebuild:
+  stable x86, bug 271175
 
   25 May 2009; Ferris McCormick <fmccor@gentoo.org> wesnoth-1.6.2.ebuild:
   Sparc stable, Bug #271175.



1.3                  games-strategy/wesnoth/wesnoth-1.6.2.ebuild

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

Index: wesnoth-1.6.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/wesnoth-1.6.2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- wesnoth-1.6.2.ebuild	25 May 2009 13:29:27 -0000	1.2
+++ wesnoth-1.6.2.ebuild	27 May 2009 06:50:53 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/wesnoth-1.6.2.ebuild,v 1.2 2009/05/25 13:29:27 fmccor Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/wesnoth-1.6.2.ebuild,v 1.3 2009/05/27 06:50:53 fauli Exp $
 
 EAPI=2
 inherit cmake-utils eutils toolchain-funcs flag-o-matic games
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 sparc ~x86 ~x86-fbsd"
+KEYWORDS="~amd64 ~ppc ~ppc64 sparc x86 ~x86-fbsd"
 IUSE="dedicated nls server tinygui"
 
 RDEPEND=">=media-libs/libsdl-1.2.7[X]






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

* [gentoo-commits] gentoo-x86 commit in games-strategy/wesnoth: ChangeLog wesnoth-1.6.2.ebuild
@ 2009-05-31 15:56 Brent Baude (ranger)
  0 siblings, 0 replies; 6+ messages in thread
From: Brent Baude (ranger) @ 2009-05-31 15:56 UTC (permalink / raw
  To: gentoo-commits

ranger      09/05/31 15:56:56

  Modified:             ChangeLog wesnoth-1.6.2.ebuild
  Log:
  Marking wesnoth-1.6.2 ppc64 for bug 271175
  (Portage version: 2.1.6.13/cvs/Linux ppc64)

Revision  Changes    Path
1.147                games-strategy/wesnoth/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/ChangeLog,v
retrieving revision 1.146
retrieving revision 1.147
diff -u -r1.146 -r1.147
--- ChangeLog	27 May 2009 06:50:53 -0000	1.146
+++ ChangeLog	31 May 2009 15:56:56 -0000	1.147
@@ -1,6 +1,9 @@
 # ChangeLog for games-strategy/wesnoth
 # Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/ChangeLog,v 1.146 2009/05/27 06:50:53 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/ChangeLog,v 1.147 2009/05/31 15:56:56 ranger Exp $
+
+  31 May 2009; Brent Baude <ranger@gentoo.org> wesnoth-1.6.2.ebuild:
+  Marking wesnoth-1.6.2 ppc64 for bug 271175
 
   27 May 2009; Christian Faulhammer <fauli@gentoo.org> wesnoth-1.6.2.ebuild:
   stable x86, bug 271175



1.4                  games-strategy/wesnoth/wesnoth-1.6.2.ebuild

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

Index: wesnoth-1.6.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/wesnoth-1.6.2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- wesnoth-1.6.2.ebuild	27 May 2009 06:50:53 -0000	1.3
+++ wesnoth-1.6.2.ebuild	31 May 2009 15:56:56 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/wesnoth-1.6.2.ebuild,v 1.3 2009/05/27 06:50:53 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/wesnoth-1.6.2.ebuild,v 1.4 2009/05/31 15:56:56 ranger Exp $
 
 EAPI=2
 inherit cmake-utils eutils toolchain-funcs flag-o-matic games
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 sparc x86 ~x86-fbsd"
+KEYWORDS="~amd64 ~ppc ppc64 sparc x86 ~x86-fbsd"
 IUSE="dedicated nls server tinygui"
 
 RDEPEND=">=media-libs/libsdl-1.2.7[X]






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

* [gentoo-commits] gentoo-x86 commit in games-strategy/wesnoth: ChangeLog wesnoth-1.6.2.ebuild
@ 2009-05-31 22:49 Markus Meier (maekke)
  0 siblings, 0 replies; 6+ messages in thread
From: Markus Meier (maekke) @ 2009-05-31 22:49 UTC (permalink / raw
  To: gentoo-commits

maekke      09/05/31 22:49:04

  Modified:             ChangeLog wesnoth-1.6.2.ebuild
  Log:
  amd64 stable, bug #271175
  (Portage version: 2.1.6.11/cvs/Linux x86_64)

Revision  Changes    Path
1.148                games-strategy/wesnoth/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/ChangeLog,v
retrieving revision 1.147
retrieving revision 1.148
diff -u -r1.147 -r1.148
--- ChangeLog	31 May 2009 15:56:56 -0000	1.147
+++ ChangeLog	31 May 2009 22:49:04 -0000	1.148
@@ -1,6 +1,9 @@
 # ChangeLog for games-strategy/wesnoth
-# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/ChangeLog,v 1.147 2009/05/31 15:56:56 ranger Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/ChangeLog,v 1.148 2009/05/31 22:49:04 maekke Exp $
+
+  31 May 2009; Markus Meier <maekke@gentoo.org> wesnoth-1.6.2.ebuild:
+  amd64 stable, bug #271175
 
   31 May 2009; Brent Baude <ranger@gentoo.org> wesnoth-1.6.2.ebuild:
   Marking wesnoth-1.6.2 ppc64 for bug 271175



1.5                  games-strategy/wesnoth/wesnoth-1.6.2.ebuild

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

Index: wesnoth-1.6.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/wesnoth-1.6.2.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- wesnoth-1.6.2.ebuild	31 May 2009 15:56:56 -0000	1.4
+++ wesnoth-1.6.2.ebuild	31 May 2009 22:49:04 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/wesnoth-1.6.2.ebuild,v 1.4 2009/05/31 15:56:56 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/wesnoth-1.6.2.ebuild,v 1.5 2009/05/31 22:49:04 maekke Exp $
 
 EAPI=2
 inherit cmake-utils eutils toolchain-funcs flag-o-matic games
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ppc64 sparc x86 ~x86-fbsd"
+KEYWORDS="amd64 ~ppc ppc64 sparc x86 ~x86-fbsd"
 IUSE="dedicated nls server tinygui"
 
 RDEPEND=">=media-libs/libsdl-1.2.7[X]






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

* [gentoo-commits] gentoo-x86 commit in games-strategy/wesnoth: ChangeLog wesnoth-1.6.2.ebuild
@ 2009-06-01 16:36 Gysbert Wassenaar (nixnut)
  0 siblings, 0 replies; 6+ messages in thread
From: Gysbert Wassenaar (nixnut) @ 2009-06-01 16:36 UTC (permalink / raw
  To: gentoo-commits

nixnut      09/06/01 16:36:24

  Modified:             ChangeLog wesnoth-1.6.2.ebuild
  Log:
  ppc stable #271175
  (Portage version: 2.1.6.13/cvs/Linux ppc)

Revision  Changes    Path
1.149                games-strategy/wesnoth/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/ChangeLog,v
retrieving revision 1.148
retrieving revision 1.149
diff -u -r1.148 -r1.149
--- ChangeLog	31 May 2009 22:49:04 -0000	1.148
+++ ChangeLog	1 Jun 2009 16:36:24 -0000	1.149
@@ -1,6 +1,9 @@
 # ChangeLog for games-strategy/wesnoth
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/ChangeLog,v 1.148 2009/05/31 22:49:04 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/ChangeLog,v 1.149 2009/06/01 16:36:24 nixnut Exp $
+
+  01 Jun 2009; nixnut <nixnut@gentoo.org> wesnoth-1.6.2.ebuild:
+  ppc stable #271175
 
   31 May 2009; Markus Meier <maekke@gentoo.org> wesnoth-1.6.2.ebuild:
   amd64 stable, bug #271175



1.6                  games-strategy/wesnoth/wesnoth-1.6.2.ebuild

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

Index: wesnoth-1.6.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/wesnoth-1.6.2.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- wesnoth-1.6.2.ebuild	31 May 2009 22:49:04 -0000	1.5
+++ wesnoth-1.6.2.ebuild	1 Jun 2009 16:36:24 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/wesnoth-1.6.2.ebuild,v 1.5 2009/05/31 22:49:04 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/wesnoth-1.6.2.ebuild,v 1.6 2009/06/01 16:36:24 nixnut Exp $
 
 EAPI=2
 inherit cmake-utils eutils toolchain-funcs flag-o-matic games
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~ppc ppc64 sparc x86 ~x86-fbsd"
+KEYWORDS="amd64 ppc ppc64 sparc x86 ~x86-fbsd"
 IUSE="dedicated nls server tinygui"
 
 RDEPEND=">=media-libs/libsdl-1.2.7[X]






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

end of thread, other threads:[~2009-06-01 16:36 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-05-11  1:39 [gentoo-commits] gentoo-x86 commit in games-strategy/wesnoth: ChangeLog wesnoth-1.6.2.ebuild Michael Sterrett (mr_bones_)
  -- strict thread matches above, loose matches on Subject: below --
2009-05-25 13:29 Ferris McCormick (fmccor)
2009-05-27  6:50 Christian Faulhammer (fauli)
2009-05-31 15:56 Brent Baude (ranger)
2009-05-31 22:49 Markus Meier (maekke)
2009-06-01 16:36 Gysbert Wassenaar (nixnut)

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