diff options
author | Alfredo Tupone <tupone@gentoo.org> | 2007-11-30 22:59:49 +0000 |
---|---|---|
committer | Alfredo Tupone <tupone@gentoo.org> | 2007-11-30 22:59:49 +0000 |
commit | 05df3d290cc84dae7720a57bf2ddc15d42b86578 (patch) | |
tree | 690ccb91b3a3fe9a2134e056156d936a873a3846 /games-action | |
parent | ppc stable, bug #199897 (diff) | |
download | gentoo-2-05df3d290cc84dae7720a57bf2ddc15d42b86578.tar.gz gentoo-2-05df3d290cc84dae7720a57bf2ddc15d42b86578.tar.bz2 gentoo-2-05df3d290cc84dae7720a57bf2ddc15d42b86578.zip |
Better use net-misc/curl built with c-ares support. Bug #200798
(Portage version: 2.1.3.19)
Diffstat (limited to 'games-action')
-rw-r--r-- | games-action/bzflag/ChangeLog | 5 | ||||
-rw-r--r-- | games-action/bzflag/bzflag-2.0.10.ebuild | 7 |
2 files changed, 10 insertions, 2 deletions
diff --git a/games-action/bzflag/ChangeLog b/games-action/bzflag/ChangeLog index d2890c9910d3..3462c058f823 100644 --- a/games-action/bzflag/ChangeLog +++ b/games-action/bzflag/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-action/bzflag # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-action/bzflag/ChangeLog,v 1.32 2007/11/15 23:54:37 tupone Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-action/bzflag/ChangeLog,v 1.33 2007/11/30 22:59:49 tupone Exp $ + + 30 Nov 2007; Tupone Alfredo <tupone@gentoo.org> bzflag-2.0.10.ebuild: + Better use net-misc/curl built with c-ares support. Bug #200798 by gionnico *bzflag-2.0.10 (15 Nov 2007) diff --git a/games-action/bzflag/bzflag-2.0.10.ebuild b/games-action/bzflag/bzflag-2.0.10.ebuild index 228575f1da5f..bfaa2d810679 100644 --- a/games-action/bzflag/bzflag-2.0.10.ebuild +++ b/games-action/bzflag/bzflag-2.0.10.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-action/bzflag/bzflag-2.0.10.ebuild,v 1.1 2007/11/15 23:54:37 tupone Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-action/bzflag/bzflag-2.0.10.ebuild,v 1.2 2007/11/30 22:59:49 tupone Exp $ inherit eutils flag-o-matic games @@ -37,6 +37,11 @@ DEPEND=">=net-misc/curl-7.15.0 pkg_setup() { # Only do the libsdl checks for !dedicated - bug #107792 use dedicated || GAMES_USE_SDL="nojoystick" + if ! built_with_use net-misc/curl ares; then + ewarn "net-misc/curl is not buily with c-ares support" + ewarn "To avoid undesired glitch during play consider" + ewarn "emerging net-misc/curl with USE=\"ares\"." + fi games_pkg_setup } |