diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2008-05-20 05:50:01 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2008-05-20 05:50:01 +0000 |
commit | 986573a2c3e8fbb43914b47afd43efccc3b8d3b0 (patch) | |
tree | 05c982ca21a1d87b3a4b3dbb1c7505bc4d34b57e /games-strategy | |
parent | Stable for HPPA (bug #222789). (diff) | |
download | gentoo-2-986573a2c3e8fbb43914b47afd43efccc3b8d3b0.tar.gz gentoo-2-986573a2c3e8fbb43914b47afd43efccc3b8d3b0.tar.bz2 gentoo-2-986573a2c3e8fbb43914b47afd43efccc3b8d3b0.zip |
force the built_with_use check for USE=X with libsdl (bug #222033)
(Portage version: 2.1.4.4)
Diffstat (limited to 'games-strategy')
-rw-r--r-- | games-strategy/wesnoth/ChangeLog | 5 | ||||
-rw-r--r-- | games-strategy/wesnoth/wesnoth-1.4.2.ebuild | 5 |
2 files changed, 7 insertions, 3 deletions
diff --git a/games-strategy/wesnoth/ChangeLog b/games-strategy/wesnoth/ChangeLog index 96d46f017bd2..acc6d3c2f02e 100644 --- a/games-strategy/wesnoth/ChangeLog +++ b/games-strategy/wesnoth/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-strategy/wesnoth # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/ChangeLog,v 1.123 2008/05/13 14:24:03 fmccor Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/ChangeLog,v 1.124 2008/05/20 05:50:01 mr_bones_ Exp $ + + 20 May 2008; Michael Sterrett <mr_bones_@gentoo.org> wesnoth-1.4.2.ebuild: + force the built_with_use check for USE=X with libsdl (bug #222033) 13 May 2008; Ferris McCormick <fmccor@gentoo.org> wesnoth-1.4.2.ebuild: Sparc stable --- Bug #220957 --- plays for me. diff --git a/games-strategy/wesnoth/wesnoth-1.4.2.ebuild b/games-strategy/wesnoth/wesnoth-1.4.2.ebuild index b9247c4a0ca1..970478493b06 100644 --- a/games-strategy/wesnoth/wesnoth-1.4.2.ebuild +++ b/games-strategy/wesnoth/wesnoth-1.4.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/wesnoth-1.4.2.ebuild,v 1.4 2008/05/13 14:24:03 fmccor Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/wesnoth-1.4.2.ebuild,v 1.5 2008/05/20 05:50:01 mr_bones_ Exp $ inherit eutils toolchain-funcs flag-o-matic games @@ -44,7 +44,8 @@ pkg_setup() { if ! built_with_use media-libs/sdl-image png ; then die "Please emerge media-libs/sdl-image with USE=png" fi - if ! use dedicated && ! built_with_use media-libs/libsdl X ; then + # dedicated also needs USE=X for libsdl: bug #222033 + if ! built_with_use media-libs/libsdl X ; then die "Please emerge media-libs/libsdl with USE=X" fi games_pkg_setup |