summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2005-05-12 01:57:45 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2005-05-12 01:57:45 +0000
commit1c867ae3dcb24d44d7fed9a61cf928d792a4c77f (patch)
tree84c893f562e175ed6fd035f1d6e0939244a9b68e /games-engines/scummvm
parentVersion bump. (diff)
downloadgentoo-2-1c867ae3dcb24d44d7fed9a61cf928d792a4c77f.tar.gz
gentoo-2-1c867ae3dcb24d44d7fed9a61cf928d792a4c77f.tar.bz2
gentoo-2-1c867ae3dcb24d44d7fed9a61cf928d792a4c77f.zip
clean old version
(Portage version: 2.0.51.19)
Diffstat (limited to 'games-engines/scummvm')
-rw-r--r--games-engines/scummvm/ChangeLog6
-rw-r--r--games-engines/scummvm/files/0.7.0-configure.patch19
-rw-r--r--games-engines/scummvm/files/digest-scummvm-0.7.01
-rw-r--r--games-engines/scummvm/scummvm-0.7.0.ebuild66
4 files changed, 5 insertions, 87 deletions
diff --git a/games-engines/scummvm/ChangeLog b/games-engines/scummvm/ChangeLog
index f36e71392d05..4ad053a47896 100644
--- a/games-engines/scummvm/ChangeLog
+++ b/games-engines/scummvm/ChangeLog
@@ -1,6 +1,10 @@
# 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.23 2005/03/29 00:09:17 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/ChangeLog,v 1.24 2005/05/12 01:57:45 mr_bones_ Exp $
+
+ 12 May 2005; Michael Sterrett <mr_bones_@gentoo.org>
+ -files/0.7.0-configure.patch, -scummvm-0.7.0.ebuild:
+ clean old version
*scummvm-0.7.1 (28 Mar 2005)
diff --git a/games-engines/scummvm/files/0.7.0-configure.patch b/games-engines/scummvm/files/0.7.0-configure.patch
deleted file mode 100644
index 8fbddcff2491..000000000000
--- a/games-engines/scummvm/files/0.7.0-configure.patch
+++ /dev/null
@@ -1,19 +0,0 @@
---- configure.orig 2005-02-21 14:32:17.000000000 -0500
-+++ configure 2005-02-21 14:33:46.000000000 -0500
-@@ -462,14 +462,14 @@
-
- echocheck "compiler version"
-
--cxx_name=`( $cc -v ) 2>&1 | tail -1 | cut -d ' ' -f 1`
-+cxx_name=`( $cc -v ) 2>&1 | tail -n 1 | cut -d ' ' -f 1`
- cxx_version=`( $CXX -dumpversion ) 2>&1`
- if test "$?" -gt 0; then
- cxx_version="not found"
- fi
-
- case $cxx_version in
-- 2.95.[2-9]|2.95.[2-9][-.]*|3.[0-9]|3.[0-9].[0-9])
-+ 2.95.[2-9]|2.95.[2-9][-.]*|3.[0-9]|3.[0-9].[0-9]|3.[0-9].[0-9]-*)
- _cxx_major=`echo $cxx_version | cut -d '.' -f 1`
- _cxx_minor=`echo $cxx_version | cut -d '.' -f 2`
- cxx_version="$cxx_version, ok"
diff --git a/games-engines/scummvm/files/digest-scummvm-0.7.0 b/games-engines/scummvm/files/digest-scummvm-0.7.0
deleted file mode 100644
index 3de9d7da0e2b..000000000000
--- a/games-engines/scummvm/files/digest-scummvm-0.7.0
+++ /dev/null
@@ -1 +0,0 @@
-MD5 7e2f9bc1bc54aa78285f7f3189ee8a7c scummvm-0.7.0.tar.bz2 2045328
diff --git a/games-engines/scummvm/scummvm-0.7.0.ebuild b/games-engines/scummvm/scummvm-0.7.0.ebuild
deleted file mode 100644
index aaaf615acf0e..000000000000
--- a/games-engines/scummvm/scummvm-0.7.0.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# 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.8 2005/02/28 02:50:31 mr_bones_ Exp $
-
-inherit eutils games
-
-DESCRIPTION="Reimplementation of the SCUMM game engine used in Lucasarts adventures"
-HOMEPAGE="http://scummvm.sourceforge.net/"
-SRC_URI="mirror://sourceforge/scummvm/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc sparc x86"
-IUSE="alsa debug flac mad oggvorbis sdl zlib"
-RESTRICT="maketest" # it only looks like there's a test there #77507
-
-RDEPEND="virtual/libc
- >=media-libs/libsdl-1.2.2
- >media-libs/libmpeg2-0.3.1
- oggvorbis? (
- media-libs/libogg
- media-libs/libvorbis
- )
- alsa? ( >=media-libs/alsa-lib-0.9 )
- mad? ( media-libs/libmad )
- flac? ( media-libs/flac )
- zlib? ( sys-libs/zlib )"
-DEPEND="${RDEPEND}
- x86? ( dev-lang/nasm )"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${FILESDIR}/${PV}-configure.patch"
-}
-
-src_compile() {
- local myconf="--backend=sdl" # x11 backend no worky (bug #83502)
-
- use debug \
- || myconf="${myconf} --disable-debug"
- use oggvorbis \
- || myconf="${myconf} --disable-mpeg2"
-
- # NOT AN AUTOCONF SCRIPT SO DONT CALL ECONF
- # mpeg2 support needs vorbis (bug #79149) so turn it off if -oggvorbis
- ./configure \
- $(use_enable alsa) \
- $(use_enable mad) \
- $(use_enable flac) \
- $(use_enable oggvorbis vorbis) \
- $(use_enable zlib) \
- $(use_enable x86 nasm) \
- ${myconf} \
- || die "configure failed"
- emake || die "emake failed"
-}
-
-src_install() {
- dogamesbin scummvm || die "dobin failed"
- doman scummvm.6
- dodoc NEWS README TODO
- doicon scummvm.xpm
- make_desktop_entry scummvm ScummVM
- prepgamesdirs
-}