summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2007-05-12 03:44:50 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2007-05-12 03:44:50 +0000
commitdc3b3f60b2264905e5d5a52b10875c8d0ee5ae72 (patch)
tree7b19879186f8bda34d23a583b5e45a1e3b835b89 /games-engines/scummvm
parentStable on mips. (diff)
downloadgentoo-2-dc3b3f60b2264905e5d5a52b10875c8d0ee5ae72.tar.gz
gentoo-2-dc3b3f60b2264905e5d5a52b10875c8d0ee5ae72.tar.bz2
gentoo-2-dc3b3f60b2264905e5d5a52b10875c8d0ee5ae72.zip
patch from Michael Vogt to make the engine find its data files in the right place (bug #138121)
(Portage version: 2.1.2.2)
Diffstat (limited to 'games-engines/scummvm')
-rw-r--r--games-engines/scummvm/ChangeLog6
-rw-r--r--games-engines/scummvm/scummvm-0.9.1.ebuild5
2 files changed, 9 insertions, 2 deletions
diff --git a/games-engines/scummvm/ChangeLog b/games-engines/scummvm/ChangeLog
index ee54f0f222db..06aa9736b6d3 100644
--- a/games-engines/scummvm/ChangeLog
+++ b/games-engines/scummvm/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for games-engines/scummvm
# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/ChangeLog,v 1.44 2007/03/12 14:14:34 genone Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/ChangeLog,v 1.45 2007/05/12 03:44:50 mr_bones_ Exp $
+
+ 12 May 2007; Michael Sterrett <mr_bones_@gentoo.org> scummvm-0.9.1.ebuild:
+ patch from Michael Vogt to make the engine find its data files in the
+ right place (bug #138121)
12 Mar 2007; Marius Mauch <genone@gentoo.org> scummvm-0.9.1.ebuild:
Replacing einfo with elog
diff --git a/games-engines/scummvm/scummvm-0.9.1.ebuild b/games-engines/scummvm/scummvm-0.9.1.ebuild
index bcc643c5f472..0d5536527e53 100644
--- a/games-engines/scummvm/scummvm-0.9.1.ebuild
+++ b/games-engines/scummvm/scummvm-0.9.1.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-engines/scummvm/scummvm-0.9.1.ebuild,v 1.6 2007/03/12 14:14:34 genone Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/scummvm-0.9.1.ebuild,v 1.7 2007/05/12 03:44:50 mr_bones_ Exp $
inherit eutils games
@@ -46,6 +46,9 @@ EOF
src_compile() {
local myconf="--backend=sdl" # x11 backend no worky (bug #83502)
+ # let the engine find its data files in the right place (bug #178116)
+ myconf="${myconf} --datadir=${GAMES_DATADIR}"
+
( use vorbis || use ogg ) \
&& myconf="${myconf} --enable-vorbis" \
|| myconf="${myconf} --disable-vorbis --disable-mpeg2"