* [gentoo-commits] gentoo-x86 commit in games-strategy/freeciv: ChangeLog freeciv-2.1.9.ebuild
@ 2009-04-06 2:45 Michael Sterrett (mr_bones_)
0 siblings, 0 replies; 8+ messages in thread
From: Michael Sterrett (mr_bones_) @ 2009-04-06 2:45 UTC (permalink / raw
To: gentoo-commits
mr_bones_ 09/04/06 02:45:58
Modified: ChangeLog
Added: freeciv-2.1.9.ebuild
Log:
version bump
(Portage version: 2.1.6.7/cvs/Linux i686)
Revision Changes Path
1.88 games-strategy/freeciv/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/ChangeLog?rev=1.88&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/ChangeLog?rev=1.88&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/ChangeLog?r1=1.87&r2=1.88
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/freeciv/ChangeLog,v
retrieving revision 1.87
retrieving revision 1.88
diff -u -r1.87 -r1.88
--- ChangeLog 21 Mar 2009 17:09:30 -0000 1.87
+++ ChangeLog 6 Apr 2009 02:45:58 -0000 1.88
@@ -1,6 +1,12 @@
# ChangeLog for games-strategy/freeciv
# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-strategy/freeciv/ChangeLog,v 1.87 2009/03/21 17:09:30 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/freeciv/ChangeLog,v 1.88 2009/04/06 02:45:58 mr_bones_ Exp $
+
+*freeciv-2.1.9 (06 Apr 2009)
+
+ 06 Apr 2009; Michael Sterrett <mr_bones_@gentoo.org>
+ +freeciv-2.1.9.ebuild:
+ version bump
21 Mar 2009; Raúl Porcel <armin76@gentoo.org> freeciv-2.1.8.ebuild:
x86 stable, bug #261797
1.1 games-strategy/freeciv/freeciv-2.1.9.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/freeciv-2.1.9.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/freeciv-2.1.9.ebuild?rev=1.1&content-type=text/plain
Index: freeciv-2.1.9.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-strategy/freeciv/freeciv-2.1.9.ebuild,v 1.1 2009/04/06 02:45:58 mr_bones_ Exp $
inherit eutils games
DESCRIPTION="multiplayer strategy game (Civilization Clone)"
HOMEPAGE="http://www.freeciv.org/"
SRC_URI="mirror://sourceforge/freeciv/${P}.tar.bz2
!dedicated? (
alsa? (
ftp://ftp.freeciv.org/freeciv/contrib/audio/soundsets/stdsounds3.tar.gz )
esd? (
ftp://ftp.freeciv.org/freeciv/contrib/audio/soundsets/stdsounds3.tar.gz )
sdl? (
ftp://ftp.freeciv.org/freeciv/contrib/audio/soundsets/stdsounds3.tar.gz )
)"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~mips ~ppc ~ppc64 ~sparc ~x86"
IUSE="alsa auth dedicated esd gtk nls readline sdl Xaw3d"
RDEPEND="readline? ( sys-libs/readline )
!dedicated? (
nls? ( virtual/libintl )
gtk? ( >=x11-libs/gtk+-2 )
!gtk? (
Xaw3d? ( x11-libs/Xaw3d )
!Xaw3d? (
sdl? (
media-libs/libsdl
media-libs/sdl-image
media-libs/freetype
)
!sdl? ( x11-libs/libXaw )
)
)
media-libs/libpng
alsa? (
media-libs/alsa-lib
media-libs/audiofile
)
esd? ( media-sound/esound )
sdl? ( media-libs/sdl-mixer )
auth? ( virtual/mysql )
)"
DEPEND="${RDEPEND}
nls? ( sys-devel/gettext )
!dedicated? (
gtk? ( dev-util/pkgconfig )
x11-proto/xextproto
)"
pkg_setup() {
games_pkg_setup
if ! use dedicated ; then
if use gtk ; then
einfo "The Freeciv Client will be built with the GTK+-2 toolkit"
elif use Xaw3d ; then
einfo "The Freeciv Client will be built with the Xaw3d toolkit"
elif use sdl ; then
einfo "The Freeciv Client will be built with the SDL toolkit"
else
einfo "The Freeciv Client will be built with the Xaw toolkit"
fi
if ! use esd && ! use alsa && ! use sdl ; then
ewarn
ewarn "To enable sound support in civclient, you must enable"
ewarn "at least one of this USE flags: alsa, esd, sdl"
ewarn
fi
fi
}
src_unpack() {
unpack ${A}
cd "${S}"
# install locales in /usr/share/locale
sed -i \
-e 's:^\(localedir = \).*:\1/usr/share/locale:' \
intl/Makefile.in po/Makefile.in.in \
|| die "sed failed"
sed -i \
-e 's:$datadir/locale:/usr/share/locale:' \
configure \
|| die "sed failed"
# change .desktop category so it's freedesktop complient
sed -i \
-e '/Icon/ s:\.png::' \
bootstrap/freeciv.desktop.in \
|| die "sed failed"
# 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
sed -i \
-e '/man_MANS = /s:civclient.6::' \
doc/man/Makefile.in \
|| die "sed failed"
fi
}
src_compile() {
local mysoundconf
local myclient
if use dedicated ; then
mysoundconf="--disable-alsa --disable-esd --disable-sdl-mixer"
myclient="no"
else
myclient="xaw"
use sdl && myclient="sdl"
use Xaw3d && myclient="xaw3d"
if use gtk ; then
myclient="gtk-2.0"
fi
#FIXME --enable-{alsa,esd,sdl-mixer} actually disable them...
#FIXME ==> use --disable-* only, and autodetect to enable.
use alsa || mysoundconf="${mysoundconf} --disable-alsa"
use esd || mysoundconf="${mysoundconf} --disable-esd"
use sdl || mysoundconf="${mysoundconf} --disable-sdl-mixer"
fi
egamesconf \
--disable-dependency-tracking \
--with-zlib \
$(use_enable auth) \
$(use_enable nls) \
$(use_with readline) \
--enable-client=${myclient} \
${mysoundconf} \
|| die "egamesconf failed"
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
if ! use dedicated ; then
# Install the app-defaults if Xaw/Xaw3d toolkit
if ! use gtk && ! use sdl ; then
insinto /etc/X11/app-defaults
doins data/Freeciv || die "doins failed"
fi
# Install sounds if at least one sound plugin was built
if use alsa || use esd || use sdl ; then
insinto "${GAMES_DATADIR}"/${PN}
doins -r ../data/stdsounds* || die "doins sounds failed"
fi
# 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
fi
dodoc ChangeLog NEWS doc/{BUGS,CodingStyle,HACKING,HOWTOPLAY,README*,TODO}
prepgamesdirs
}
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in games-strategy/freeciv: ChangeLog freeciv-2.1.9.ebuild
@ 2009-05-09 14:42 Tobias Klausmann (klausman)
0 siblings, 0 replies; 8+ messages in thread
From: Tobias Klausmann (klausman) @ 2009-05-09 14:42 UTC (permalink / raw
To: gentoo-commits
klausman 09/05/09 14:42:52
Modified: ChangeLog freeciv-2.1.9.ebuild
Log:
Stable on alpha, bug #268536
(Portage version: 2.1.6.13/cvs/Linux x86_64)
Revision Changes Path
1.89 games-strategy/freeciv/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/ChangeLog?rev=1.89&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/ChangeLog?rev=1.89&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/ChangeLog?r1=1.88&r2=1.89
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/freeciv/ChangeLog,v
retrieving revision 1.88
retrieving revision 1.89
diff -u -r1.88 -r1.89
--- ChangeLog 6 Apr 2009 02:45:58 -0000 1.88
+++ ChangeLog 9 May 2009 14:42:51 -0000 1.89
@@ -1,6 +1,9 @@
# ChangeLog for games-strategy/freeciv
-# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-strategy/freeciv/ChangeLog,v 1.88 2009/04/06 02:45:58 mr_bones_ Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/freeciv/ChangeLog,v 1.89 2009/05/09 14:42:51 klausman Exp $
+
+ 09 May 2009; Tobias Klausmann <klausman@gentoo.org> freeciv-2.1.9.ebuild:
+ Stable on alpha, bug #268536
*freeciv-2.1.9 (06 Apr 2009)
1.2 games-strategy/freeciv/freeciv-2.1.9.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/freeciv-2.1.9.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/freeciv-2.1.9.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/freeciv-2.1.9.ebuild?r1=1.1&r2=1.2
Index: freeciv-2.1.9.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/freeciv/freeciv-2.1.9.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- freeciv-2.1.9.ebuild 6 Apr 2009 02:45:58 -0000 1.1
+++ freeciv-2.1.9.ebuild 9 May 2009 14:42:51 -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/freeciv/freeciv-2.1.9.ebuild,v 1.1 2009/04/06 02:45:58 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/freeciv/freeciv-2.1.9.ebuild,v 1.2 2009/05/09 14:42:51 klausman Exp $
inherit eutils games
@@ -18,7 +18,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="alpha ~amd64 ~mips ~ppc ~ppc64 ~sparc ~x86"
IUSE="alsa auth dedicated esd gtk nls readline sdl Xaw3d"
RDEPEND="readline? ( sys-libs/readline )
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in games-strategy/freeciv: ChangeLog freeciv-2.1.9.ebuild
@ 2009-05-13 18:58 Markus Meier (maekke)
0 siblings, 0 replies; 8+ messages in thread
From: Markus Meier (maekke) @ 2009-05-13 18:58 UTC (permalink / raw
To: gentoo-commits
maekke 09/05/13 18:58:45
Modified: ChangeLog freeciv-2.1.9.ebuild
Log:
amd64/x86 stable, bug #268536
(Portage version: 2.1.6.13/cvs/Linux x86_64)
Revision Changes Path
1.90 games-strategy/freeciv/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/ChangeLog?rev=1.90&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/ChangeLog?rev=1.90&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/ChangeLog?r1=1.89&r2=1.90
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/freeciv/ChangeLog,v
retrieving revision 1.89
retrieving revision 1.90
diff -u -r1.89 -r1.90
--- ChangeLog 9 May 2009 14:42:51 -0000 1.89
+++ ChangeLog 13 May 2009 18:58:45 -0000 1.90
@@ -1,6 +1,9 @@
# ChangeLog for games-strategy/freeciv
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-strategy/freeciv/ChangeLog,v 1.89 2009/05/09 14:42:51 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/freeciv/ChangeLog,v 1.90 2009/05/13 18:58:45 maekke Exp $
+
+ 13 May 2009; Markus Meier <maekke@gentoo.org> freeciv-2.1.9.ebuild:
+ amd64/x86 stable, bug #268536
09 May 2009; Tobias Klausmann <klausman@gentoo.org> freeciv-2.1.9.ebuild:
Stable on alpha, bug #268536
1.3 games-strategy/freeciv/freeciv-2.1.9.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/freeciv-2.1.9.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/freeciv-2.1.9.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/freeciv-2.1.9.ebuild?r1=1.2&r2=1.3
Index: freeciv-2.1.9.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/freeciv/freeciv-2.1.9.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- freeciv-2.1.9.ebuild 9 May 2009 14:42:51 -0000 1.2
+++ freeciv-2.1.9.ebuild 13 May 2009 18:58:45 -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/freeciv/freeciv-2.1.9.ebuild,v 1.2 2009/05/09 14:42:51 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/freeciv/freeciv-2.1.9.ebuild,v 1.3 2009/05/13 18:58:45 maekke Exp $
inherit eutils games
@@ -18,7 +18,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="alpha ~amd64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="alpha amd64 ~mips ~ppc ~ppc64 ~sparc x86"
IUSE="alsa auth dedicated esd gtk nls readline sdl Xaw3d"
RDEPEND="readline? ( sys-libs/readline )
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in games-strategy/freeciv: ChangeLog freeciv-2.1.9.ebuild
@ 2009-05-13 19:10 Ferris McCormick (fmccor)
0 siblings, 0 replies; 8+ messages in thread
From: Ferris McCormick (fmccor) @ 2009-05-13 19:10 UTC (permalink / raw
To: gentoo-commits
fmccor 09/05/13 19:10:40
Modified: ChangeLog freeciv-2.1.9.ebuild
Log:
Sparc stable, Bug #268536.
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Revision Changes Path
1.91 games-strategy/freeciv/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/ChangeLog?rev=1.91&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/ChangeLog?rev=1.91&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/ChangeLog?r1=1.90&r2=1.91
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/freeciv/ChangeLog,v
retrieving revision 1.90
retrieving revision 1.91
diff -u -r1.90 -r1.91
--- ChangeLog 13 May 2009 18:58:45 -0000 1.90
+++ ChangeLog 13 May 2009 19:10:40 -0000 1.91
@@ -1,6 +1,9 @@
# ChangeLog for games-strategy/freeciv
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-strategy/freeciv/ChangeLog,v 1.90 2009/05/13 18:58:45 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/freeciv/ChangeLog,v 1.91 2009/05/13 19:10:40 fmccor Exp $
+
+ 13 May 2009; Ferris McCormick <fmccor@gentoo.org> freeciv-2.1.9.ebuild:
+ Sparc stable, Bug #268536.
13 May 2009; Markus Meier <maekke@gentoo.org> freeciv-2.1.9.ebuild:
amd64/x86 stable, bug #268536
1.4 games-strategy/freeciv/freeciv-2.1.9.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/freeciv-2.1.9.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/freeciv-2.1.9.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/freeciv-2.1.9.ebuild?r1=1.3&r2=1.4
Index: freeciv-2.1.9.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/freeciv/freeciv-2.1.9.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- freeciv-2.1.9.ebuild 13 May 2009 18:58:45 -0000 1.3
+++ freeciv-2.1.9.ebuild 13 May 2009 19:10:40 -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/freeciv/freeciv-2.1.9.ebuild,v 1.3 2009/05/13 18:58:45 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/freeciv/freeciv-2.1.9.ebuild,v 1.4 2009/05/13 19:10:40 fmccor Exp $
inherit eutils games
@@ -18,7 +18,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="alpha amd64 ~mips ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="alpha amd64 ~mips ~ppc ~ppc64 sparc x86"
IUSE="alsa auth dedicated esd gtk nls readline sdl Xaw3d"
RDEPEND="readline? ( sys-libs/readline )
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in games-strategy/freeciv: ChangeLog freeciv-2.1.9.ebuild
@ 2009-05-20 16:56 Gysbert Wassenaar (nixnut)
0 siblings, 0 replies; 8+ messages in thread
From: Gysbert Wassenaar (nixnut) @ 2009-05-20 16:56 UTC (permalink / raw
To: gentoo-commits
nixnut 09/05/20 16:56:08
Modified: ChangeLog freeciv-2.1.9.ebuild
Log:
ppc stable #268536
(Portage version: 2.1.6.13/cvs/Linux ppc)
Revision Changes Path
1.92 games-strategy/freeciv/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/ChangeLog?rev=1.92&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/ChangeLog?rev=1.92&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/ChangeLog?r1=1.91&r2=1.92
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/freeciv/ChangeLog,v
retrieving revision 1.91
retrieving revision 1.92
diff -u -r1.91 -r1.92
--- ChangeLog 13 May 2009 19:10:40 -0000 1.91
+++ ChangeLog 20 May 2009 16:56:08 -0000 1.92
@@ -1,6 +1,9 @@
# ChangeLog for games-strategy/freeciv
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-strategy/freeciv/ChangeLog,v 1.91 2009/05/13 19:10:40 fmccor Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/freeciv/ChangeLog,v 1.92 2009/05/20 16:56:08 nixnut Exp $
+
+ 20 May 2009; nixnut <nixnut@gentoo.org> freeciv-2.1.9.ebuild:
+ ppc stable #268536
13 May 2009; Ferris McCormick <fmccor@gentoo.org> freeciv-2.1.9.ebuild:
Sparc stable, Bug #268536.
1.5 games-strategy/freeciv/freeciv-2.1.9.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/freeciv-2.1.9.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/freeciv-2.1.9.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/freeciv-2.1.9.ebuild?r1=1.4&r2=1.5
Index: freeciv-2.1.9.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/freeciv/freeciv-2.1.9.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- freeciv-2.1.9.ebuild 13 May 2009 19:10:40 -0000 1.4
+++ freeciv-2.1.9.ebuild 20 May 2009 16:56:08 -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/freeciv/freeciv-2.1.9.ebuild,v 1.4 2009/05/13 19:10:40 fmccor Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/freeciv/freeciv-2.1.9.ebuild,v 1.5 2009/05/20 16:56:08 nixnut Exp $
inherit eutils games
@@ -18,7 +18,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="alpha amd64 ~mips ~ppc ~ppc64 sparc x86"
+KEYWORDS="alpha amd64 ~mips ppc ~ppc64 sparc x86"
IUSE="alsa auth dedicated esd gtk nls readline sdl Xaw3d"
RDEPEND="readline? ( sys-libs/readline )
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in games-strategy/freeciv: ChangeLog freeciv-2.1.9.ebuild
@ 2009-05-31 18:30 Brent Baude (ranger)
0 siblings, 0 replies; 8+ messages in thread
From: Brent Baude (ranger) @ 2009-05-31 18:30 UTC (permalink / raw
To: gentoo-commits
ranger 09/05/31 18:30:10
Modified: ChangeLog freeciv-2.1.9.ebuild
Log:
Marking freeciv-2.1.9 ppc64 for bug 268536
(Portage version: 2.1.6.13/cvs/Linux ppc64)
Revision Changes Path
1.93 games-strategy/freeciv/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/ChangeLog?rev=1.93&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/ChangeLog?rev=1.93&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/ChangeLog?r1=1.92&r2=1.93
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/freeciv/ChangeLog,v
retrieving revision 1.92
retrieving revision 1.93
diff -u -r1.92 -r1.93
--- ChangeLog 20 May 2009 16:56:08 -0000 1.92
+++ ChangeLog 31 May 2009 18:30:10 -0000 1.93
@@ -1,6 +1,9 @@
# ChangeLog for games-strategy/freeciv
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-strategy/freeciv/ChangeLog,v 1.92 2009/05/20 16:56:08 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/freeciv/ChangeLog,v 1.93 2009/05/31 18:30:10 ranger Exp $
+
+ 31 May 2009; Brent Baude <ranger@gentoo.org> freeciv-2.1.9.ebuild:
+ Marking freeciv-2.1.9 ppc64 for bug 268536
20 May 2009; nixnut <nixnut@gentoo.org> freeciv-2.1.9.ebuild:
ppc stable #268536
1.6 games-strategy/freeciv/freeciv-2.1.9.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/freeciv-2.1.9.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/freeciv-2.1.9.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/freeciv-2.1.9.ebuild?r1=1.5&r2=1.6
Index: freeciv-2.1.9.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/freeciv/freeciv-2.1.9.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- freeciv-2.1.9.ebuild 20 May 2009 16:56:08 -0000 1.5
+++ freeciv-2.1.9.ebuild 31 May 2009 18:30:10 -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/freeciv/freeciv-2.1.9.ebuild,v 1.5 2009/05/20 16:56:08 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/freeciv/freeciv-2.1.9.ebuild,v 1.6 2009/05/31 18:30:10 ranger Exp $
inherit eutils games
@@ -18,7 +18,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="alpha amd64 ~mips ppc ~ppc64 sparc x86"
+KEYWORDS="alpha amd64 ~mips ppc ppc64 sparc x86"
IUSE="alsa auth dedicated esd gtk nls readline sdl Xaw3d"
RDEPEND="readline? ( sys-libs/readline )
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in games-strategy/freeciv: ChangeLog freeciv-2.1.9.ebuild
@ 2009-06-02 17:21 Michael Sterrett (mr_bones_)
0 siblings, 0 replies; 8+ messages in thread
From: Michael Sterrett (mr_bones_) @ 2009-06-02 17:21 UTC (permalink / raw
To: gentoo-commits
mr_bones_ 09/06/02 17:21:06
Modified: ChangeLog freeciv-2.1.9.ebuild
Log:
esound is going away
(Portage version: 2.1.6.11/cvs/Linux i686)
Revision Changes Path
1.94 games-strategy/freeciv/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/ChangeLog?rev=1.94&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/ChangeLog?rev=1.94&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/ChangeLog?r1=1.93&r2=1.94
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/freeciv/ChangeLog,v
retrieving revision 1.93
retrieving revision 1.94
diff -u -r1.93 -r1.94
--- ChangeLog 31 May 2009 18:30:10 -0000 1.93
+++ ChangeLog 2 Jun 2009 17:21:06 -0000 1.94
@@ -1,6 +1,9 @@
# ChangeLog for games-strategy/freeciv
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-strategy/freeciv/ChangeLog,v 1.93 2009/05/31 18:30:10 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/freeciv/ChangeLog,v 1.94 2009/06/02 17:21:06 mr_bones_ Exp $
+
+ 02 Jun 2009; Michael Sterrett <mr_bones_@gentoo.org> freeciv-2.1.9.ebuild:
+ esound is going away
31 May 2009; Brent Baude <ranger@gentoo.org> freeciv-2.1.9.ebuild:
Marking freeciv-2.1.9 ppc64 for bug 268536
1.7 games-strategy/freeciv/freeciv-2.1.9.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/freeciv-2.1.9.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/freeciv-2.1.9.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/freeciv-2.1.9.ebuild?r1=1.6&r2=1.7
Index: freeciv-2.1.9.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/freeciv/freeciv-2.1.9.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- freeciv-2.1.9.ebuild 31 May 2009 18:30:10 -0000 1.6
+++ freeciv-2.1.9.ebuild 2 Jun 2009 17:21:06 -0000 1.7
@@ -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/freeciv/freeciv-2.1.9.ebuild,v 1.6 2009/05/31 18:30:10 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/freeciv/freeciv-2.1.9.ebuild,v 1.7 2009/06/02 17:21:06 mr_bones_ Exp $
inherit eutils games
@@ -10,8 +10,6 @@
!dedicated? (
alsa? (
ftp://ftp.freeciv.org/freeciv/contrib/audio/soundsets/stdsounds3.tar.gz )
- esd? (
- ftp://ftp.freeciv.org/freeciv/contrib/audio/soundsets/stdsounds3.tar.gz )
sdl? (
ftp://ftp.freeciv.org/freeciv/contrib/audio/soundsets/stdsounds3.tar.gz )
)"
@@ -19,7 +17,7 @@
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 ~mips ppc ppc64 sparc x86"
-IUSE="alsa auth dedicated esd gtk nls readline sdl Xaw3d"
+IUSE="alsa auth dedicated gtk nls readline sdl Xaw3d"
RDEPEND="readline? ( sys-libs/readline )
!dedicated? (
@@ -41,7 +39,6 @@
media-libs/alsa-lib
media-libs/audiofile
)
- esd? ( media-sound/esound )
sdl? ( media-libs/sdl-mixer )
auth? ( virtual/mysql )
)"
@@ -64,10 +61,10 @@
else
einfo "The Freeciv Client will be built with the Xaw toolkit"
fi
- if ! use esd && ! use alsa && ! use sdl ; then
+ if ! use alsa && ! use sdl ; then
ewarn
ewarn "To enable sound support in civclient, you must enable"
- ewarn "at least one of this USE flags: alsa, esd, sdl"
+ ewarn "at least one of this USE flags: alsa, sdl"
ewarn
fi
fi
@@ -129,8 +126,8 @@
fi
#FIXME --enable-{alsa,esd,sdl-mixer} actually disable them...
#FIXME ==> use --disable-* only, and autodetect to enable.
+ mysoundconf="${mysoundconf} --disable-esd"
use alsa || mysoundconf="${mysoundconf} --disable-alsa"
- use esd || mysoundconf="${mysoundconf} --disable-esd"
use sdl || mysoundconf="${mysoundconf} --disable-sdl-mixer"
fi
@@ -157,7 +154,7 @@
doins data/Freeciv || die "doins failed"
fi
# Install sounds if at least one sound plugin was built
- if use alsa || use esd || use sdl ; then
+ if use alsa || use sdl ; then
insinto "${GAMES_DATADIR}"/${PN}
doins -r ../data/stdsounds* || die "doins sounds failed"
fi
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in games-strategy/freeciv: ChangeLog freeciv-2.1.9.ebuild
@ 2009-08-28 11:18 Tristan Heaven (nyhm)
0 siblings, 0 replies; 8+ messages in thread
From: Tristan Heaven (nyhm) @ 2009-08-28 11:18 UTC (permalink / raw
To: gentoo-commits
nyhm 09/08/28 11:18:25
Modified: ChangeLog freeciv-2.1.9.ebuild
Log:
Update icon cache after install/remove
(Portage version: 2.2_rc40/cvs/Linux x86_64)
Revision Changes Path
1.95 games-strategy/freeciv/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/ChangeLog?rev=1.95&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/ChangeLog?rev=1.95&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/ChangeLog?r1=1.94&r2=1.95
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/freeciv/ChangeLog,v
retrieving revision 1.94
retrieving revision 1.95
diff -u -r1.94 -r1.95
--- ChangeLog 2 Jun 2009 17:21:06 -0000 1.94
+++ ChangeLog 28 Aug 2009 11:18:25 -0000 1.95
@@ -1,6 +1,9 @@
# ChangeLog for games-strategy/freeciv
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-strategy/freeciv/ChangeLog,v 1.94 2009/06/02 17:21:06 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/freeciv/ChangeLog,v 1.95 2009/08/28 11:18:25 nyhm Exp $
+
+ 28 Aug 2009; Tristan Heaven <nyhm@gentoo.org> freeciv-2.1.9.ebuild:
+ Update icon cache after install/remove
02 Jun 2009; Michael Sterrett <mr_bones_@gentoo.org> freeciv-2.1.9.ebuild:
esound is going away
1.8 games-strategy/freeciv/freeciv-2.1.9.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/freeciv-2.1.9.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/freeciv-2.1.9.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/freeciv/freeciv-2.1.9.ebuild?r1=1.7&r2=1.8
Index: freeciv-2.1.9.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/freeciv/freeciv-2.1.9.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- freeciv-2.1.9.ebuild 2 Jun 2009 17:21:06 -0000 1.7
+++ freeciv-2.1.9.ebuild 28 Aug 2009 11:18:25 -0000 1.8
@@ -1,8 +1,8 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-strategy/freeciv/freeciv-2.1.9.ebuild,v 1.7 2009/06/02 17:21:06 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/freeciv/freeciv-2.1.9.ebuild,v 1.8 2009/08/28 11:18:25 nyhm Exp $
-inherit eutils games
+inherit eutils gnome2-utils games
DESCRIPTION="multiplayer strategy game (Civilization Clone)"
HOMEPAGE="http://www.freeciv.org/"
@@ -172,3 +172,17 @@
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] 8+ messages in thread
end of thread, other threads:[~2009-08-28 6:09 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-05-13 19:10 [gentoo-commits] gentoo-x86 commit in games-strategy/freeciv: ChangeLog freeciv-2.1.9.ebuild Ferris McCormick (fmccor)
-- strict thread matches above, loose matches on Subject: below --
2009-08-28 11:18 Tristan Heaven (nyhm)
2009-06-02 17:21 Michael Sterrett (mr_bones_)
2009-05-31 18:30 Brent Baude (ranger)
2009-05-20 16:56 Gysbert Wassenaar (nixnut)
2009-05-13 18:58 Markus Meier (maekke)
2009-05-09 14:42 Tobias Klausmann (klausman)
2009-04-06 2:45 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