diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2009-06-02 17:21:06 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2009-06-02 17:21:06 +0000 |
commit | ee8379ca9cf2826c6f29d3b751d8c99b17a20281 (patch) | |
tree | 54f7bc72a2f5d192db9278af9c9fb6923d7b1cf2 /games-strategy | |
parent | old (diff) | |
download | gentoo-2-ee8379ca9cf2826c6f29d3b751d8c99b17a20281.tar.gz gentoo-2-ee8379ca9cf2826c6f29d3b751d8c99b17a20281.tar.bz2 gentoo-2-ee8379ca9cf2826c6f29d3b751d8c99b17a20281.zip |
esound is going away
(Portage version: 2.1.6.11/cvs/Linux i686)
Diffstat (limited to 'games-strategy')
-rw-r--r-- | games-strategy/freeciv/ChangeLog | 5 | ||||
-rw-r--r-- | games-strategy/freeciv/freeciv-2.1.9.ebuild | 15 |
2 files changed, 10 insertions, 10 deletions
diff --git a/games-strategy/freeciv/ChangeLog b/games-strategy/freeciv/ChangeLog index a690ad2bb0e7..315b45ea84cd 100644 --- a/games-strategy/freeciv/ChangeLog +++ b/games-strategy/freeciv/ChangeLog @@ -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 diff --git a/games-strategy/freeciv/freeciv-2.1.9.ebuild b/games-strategy/freeciv/freeciv-2.1.9.ebuild index 05056c93f4b0..bd469a584620 100644 --- a/games-strategy/freeciv/freeciv-2.1.9.ebuild +++ b/games-strategy/freeciv/freeciv-2.1.9.ebuild @@ -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 @@ 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 ) )" @@ -19,7 +17,7 @@ SRC_URI="mirror://sourceforge/freeciv/${P}.tar.bz2 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 @@ RDEPEND="readline? ( sys-libs/readline ) media-libs/alsa-lib media-libs/audiofile ) - esd? ( media-sound/esound ) sdl? ( media-libs/sdl-mixer ) auth? ( virtual/mysql ) )" @@ -64,10 +61,10 @@ pkg_setup() { 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 @@ src_compile() { 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 @@ src_install() { 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 |