summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2004-09-19 00:57:18 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2004-09-19 00:57:18 +0000
commitb9887b62562f3adbf6b704ea6617048a5c0d9025 (patch)
treeef78da891cde3014f38a0c09808a74b7164493f8 /games-engines
parentRemoving EMBOSS support for now - to many issues. (Manifest recommit) (diff)
downloadgentoo-2-b9887b62562f3adbf6b704ea6617048a5c0d9025.tar.gz
gentoo-2-b9887b62562f3adbf6b704ea6617048a5c0d9025.tar.bz2
gentoo-2-b9887b62562f3adbf6b704ea6617048a5c0d9025.zip
fix up configure for bug #64550
Diffstat (limited to 'games-engines')
-rw-r--r--games-engines/scummvm/ChangeLog5
-rw-r--r--games-engines/scummvm/scummvm-0.6.1b.ebuild16
2 files changed, 17 insertions, 4 deletions
diff --git a/games-engines/scummvm/ChangeLog b/games-engines/scummvm/ChangeLog
index 0e305ab8e0f3..f5df8a4c62de 100644
--- a/games-engines/scummvm/ChangeLog
+++ b/games-engines/scummvm/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for games-engines/scummvm
# Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/ChangeLog,v 1.13 2004/09/19 00:33:44 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/ChangeLog,v 1.14 2004/09/19 00:57:18 mr_bones_ Exp $
+
+ 18 Sep 2004; Michael Sterrett <mr_bones_@gentoo.org> scummvm-0.6.1b.ebuild:
+ fix up configure for bug #64550
18 Sep 2004; Michael Sterrett <mr_bones_@gentoo.org>
-files/0.5.1-alsa.patch, -files/0.6.0-gcc34.patch, -scummvm-0.5.1.ebuild,
diff --git a/games-engines/scummvm/scummvm-0.6.1b.ebuild b/games-engines/scummvm/scummvm-0.6.1b.ebuild
index 58dde5ff391f..d80d2a416064 100644
--- a/games-engines/scummvm/scummvm-0.6.1b.ebuild
+++ b/games-engines/scummvm/scummvm-0.6.1b.ebuild
@@ -1,8 +1,8 @@
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/scummvm-0.6.1b.ebuild,v 1.1 2004/08/09 08:20:15 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/scummvm-0.6.1b.ebuild,v 1.2 2004/09/19 00:57:18 mr_bones_ Exp $
-inherit eutils games
+inherit fixheadtails eutils games
DESCRIPTION="Reimplementation of the SCUMM game engine used in Lucasarts adventures"
HOMEPAGE="http://scummvm.sourceforge.net/"
@@ -25,6 +25,16 @@ DEPEND="virtual/libc
mad? ( media-libs/libmad )
zlib? ( sys-libs/zlib )"
+src_unpack() {
+ unpack ${A}
+ cd "${S}"
+ # configure luvin from bug #64550
+ ht_fix_file configure
+ sed -i \
+ -e "s:/tmp/:./:" configure \
+ || die "sed configure failed"
+}
+
src_compile() {
local myconf=
@@ -50,7 +60,7 @@ src_install() {
doman scummvm.6
dodoc NEWS README TODO
insinto /usr/share/pixmaps
- doins scummvm.xpm || die "doins failed"
+ doins scummvm.xpm || die "doins failed"
make_desktop_entry scummvm ScummVM
prepgamesdirs
}