diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2005-02-28 02:50:31 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2005-02-28 02:50:31 +0000 |
commit | 7030fd88ca1e38d487e0613fd336592842976964 (patch) | |
tree | a023c3521fbbfb07da08ee592792b57c75528c59 /games-engines | |
parent | fixed date in ChangeLog (diff) | |
download | gentoo-2-7030fd88ca1e38d487e0613fd336592842976964.tar.gz gentoo-2-7030fd88ca1e38d487e0613fd336592842976964.tar.bz2 gentoo-2-7030fd88ca1e38d487e0613fd336592842976964.zip |
the x11 backend isn't fully functional so we require sdl (bug #83502)
(Portage version: 2.0.51-r15)
Diffstat (limited to 'games-engines')
-rw-r--r-- | games-engines/scummvm/ChangeLog | 5 | ||||
-rw-r--r-- | games-engines/scummvm/scummvm-0.7.0.ebuild | 12 |
2 files changed, 8 insertions, 9 deletions
diff --git a/games-engines/scummvm/ChangeLog b/games-engines/scummvm/ChangeLog index 77f6dcf9ac70..5e5e1db20ddb 100644 --- a/games-engines/scummvm/ChangeLog +++ b/games-engines/scummvm/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-engines/scummvm # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/ChangeLog,v 1.21 2005/02/21 19:39:34 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/ChangeLog,v 1.22 2005/02/28 02:50:31 mr_bones_ Exp $ + + 27 Feb 2005; Michael Sterrett <mr_bones_@gentoo.org> scummvm-0.7.0.ebuild: + the x11 backend isn't fully functional so we require sdl (bug #83502) 21 Feb 2005; Michael Sterrett <mr_bones_@gentoo.org> +files/0.7.0-configure.patch, -scummvm-0.6.1b.ebuild, scummvm-0.7.0.ebuild: diff --git a/games-engines/scummvm/scummvm-0.7.0.ebuild b/games-engines/scummvm/scummvm-0.7.0.ebuild index fa0ca09c4feb..aaaf615acf0e 100644 --- a/games-engines/scummvm/scummvm-0.7.0.ebuild +++ b/games-engines/scummvm/scummvm-0.7.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/scummvm-0.7.0.ebuild,v 1.7 2005/02/21 19:39:34 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/scummvm-0.7.0.ebuild,v 1.8 2005/02/28 02:50:31 mr_bones_ Exp $ inherit eutils games @@ -15,9 +15,8 @@ IUSE="alsa debug flac mad oggvorbis sdl zlib" RESTRICT="maketest" # it only looks like there's a test there #77507 RDEPEND="virtual/libc - virtual/x11 + >=media-libs/libsdl-1.2.2 >media-libs/libmpeg2-0.3.1 - sdl? ( >=media-libs/libsdl-1.2.2 ) oggvorbis? ( media-libs/libogg media-libs/libvorbis @@ -36,17 +35,14 @@ src_unpack() { } src_compile() { - local myconf= + local myconf="--backend=sdl" # x11 backend no worky (bug #83502) - use sdl \ - && myconf="${myconf} --backend=sdl" \ - || myconf="${myconf} --backend=x11" use debug \ || myconf="${myconf} --disable-debug" use oggvorbis \ || myconf="${myconf} --disable-mpeg2" - # not an autoconf script so dont call econf + # NOT AN AUTOCONF SCRIPT SO DONT CALL ECONF # mpeg2 support needs vorbis (bug #79149) so turn it off if -oggvorbis ./configure \ $(use_enable alsa) \ |