* [gentoo-commits] gentoo-x86 commit in games-strategy/freeciv: metadata.xml ChangeLog freeciv-2.2.0.ebuild
@ 2010-03-05 20:23 Michael Sterrett (mr_bones_)
0 siblings, 0 replies; only message in thread
From: Michael Sterrett (mr_bones_) @ 2010-03-05 20:23 UTC (permalink / raw
To: gentoo-commits
mr_bones_ 10/03/05 20:23:26
Modified: metadata.xml ChangeLog freeciv-2.2.0.ebuild
Log:
put sound behind sound use flag; pass ipv6 choice to configure (bug #307153)
(Portage version: 2.1.7.17/cvs/Linux i686)
Revision Changes Path
1.5 games-strategy/freeciv/metadata.xml
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/metadata.xml?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/metadata.xml?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/metadata.xml?r1=1.4&r2=1.5
Index: metadata.xml
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/freeciv/metadata.xml,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- metadata.xml 31 Jan 2010 07:27:00 -0000 1.4
+++ metadata.xml 5 Mar 2010 20:23:25 -0000 1.5
@@ -5,5 +5,6 @@
<use>
<flag name="auth">Add authentication capability</flag>
<flag name="ggz">Add support for GGZ Gaming Zone</flag>
+ <flag name="sound">Add support for sound provided by <pkg>media-libs/sdl-mixer</pkg></flag>
</use>
</pkgmetadata>
1.101 games-strategy/freeciv/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/ChangeLog?rev=1.101&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/ChangeLog?rev=1.101&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/ChangeLog?r1=1.100&r2=1.101
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/freeciv/ChangeLog,v
retrieving revision 1.100
retrieving revision 1.101
diff -u -r1.100 -r1.101
--- ChangeLog 27 Feb 2010 22:11:23 -0000 1.100
+++ ChangeLog 5 Mar 2010 20:23:25 -0000 1.101
@@ -1,6 +1,11 @@
# 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.100 2010/02/27 22:11:23 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/freeciv/ChangeLog,v 1.101 2010/03/05 20:23:25 mr_bones_ Exp $
+
+ 05 Mar 2010; Michael Sterrett <mr_bones_@gentoo.org> freeciv-2.2.0.ebuild,
+ metadata.xml:
+ put sound behind sound use flag; pass ipv6 choice to configure (bug
+ #307153)
27 Feb 2010; Michael Sterrett <mr_bones_@gentoo.org> freeciv-2.2.0.ebuild:
fix default client logic (bug #307117)
1.3 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.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/freeciv-2.2.0.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/freeciv-2.2.0.ebuild?r1=1.2&r2=1.3
Index: freeciv-2.2.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/freeciv/freeciv-2.2.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- freeciv-2.2.0.ebuild 27 Feb 2010 22:11:23 -0000 1.2
+++ freeciv-2.2.0.ebuild 5 Mar 2010 20:23:25 -0000 1.3
@@ -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.2 2010/02/27 22:11:23 mr_bones_ Exp $
+# $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 $
EAPI=2
inherit eutils gnome2-utils games
@@ -12,7 +12,7 @@
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~mips ~ppc ~ppc64 ~sparc ~x86"
-IUSE="auth dedicated ggz gtk nls readline sdl"
+IUSE="auth dedicated ggz gtk ipv6 nls readline sdl +sound"
RDEPEND="readline? ( sys-libs/readline )
sys-libs/zlib
@@ -21,12 +21,15 @@
nls? ( virtual/libintl )
gtk? ( x11-libs/gtk+:2 )
sdl? (
- media-libs/libsdl[audio,video]
+ media-libs/libsdl[video]
media-libs/sdl-image[png]
media-libs/freetype
- media-libs/sdl-mixer
)
!gtk? ( !sdl? ( x11-libs/gtk+:2 ) )
+ sound? (
+ media-libs/libsdl[audio]
+ media-libs/sdl-mixer
+ )
ggz? ( dev-games/ggz-client-libs )
media-libs/libpng
auth? ( virtual/mysql )
@@ -72,9 +75,10 @@
--disable-dependency-tracking \
--localedir=/usr/share/locale \
$(use_enable auth) \
+ $(use_enable ipv6) \
$(use_enable nls) \
$(use_with readline) \
- $(use_enable sdl sdl-mixer) \
+ $(use_enable sound sdl-mixer) \
$(use_with ggz ggz-client) \
--enable-client="${myclient}"
}
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2010-03-05 20:23 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-03-05 20:23 [gentoo-commits] gentoo-x86 commit in games-strategy/freeciv: metadata.xml ChangeLog freeciv-2.2.0.ebuild 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