summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2006-01-30 01:44:11 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2006-01-30 01:44:11 +0000
commit31e06a9716556f8e5eec168d7f20b65a39e15e1f (patch)
treea68f583c0a0ad56df3395a3f17f6679c1370f0b2 /games-engines
parentOnly unpack cjk patch if cjk flag is set for bug 120888. (diff)
downloadhistorical-31e06a9716556f8e5eec168d7f20b65a39e15e1f.tar.gz
historical-31e06a9716556f8e5eec168d7f20b65a39e15e1f.tar.bz2
historical-31e06a9716556f8e5eec168d7f20b65a39e15e1f.zip
old
Package-Manager: portage-2.0.54
Diffstat (limited to 'games-engines')
-rw-r--r--games-engines/scummvm/Manifest14
-rw-r--r--games-engines/scummvm/files/0.7.1-configure.patch19
-rw-r--r--games-engines/scummvm/files/digest-scummvm-0.7.11
-rw-r--r--games-engines/scummvm/files/scummvm-0.7.1-64bit.patch35
-rw-r--r--games-engines/scummvm/scummvm-0.7.1.ebuild64
5 files changed, 0 insertions, 133 deletions
diff --git a/games-engines/scummvm/Manifest b/games-engines/scummvm/Manifest
index d625d9522bd9..874735dd0aae 100644
--- a/games-engines/scummvm/Manifest
+++ b/games-engines/scummvm/Manifest
@@ -1,19 +1,5 @@
------BEGIN PGP SIGNED MESSAGE-----
-Hash: SHA1
-
MD5 36b3f0fa634eb72621fd10a51f2e6e33 ChangeLog 5861
-MD5 6b7e3eea92e3d3345457d83a2d851099 files/0.7.1-configure.patch 699
-MD5 fb4256256ccf802b62a4a9e798e259d3 files/digest-scummvm-0.7.1 67
MD5 6f31e946479f67ee67ba1f51819f5d60 files/digest-scummvm-0.8.0 67
-MD5 8fb0ec95fec1bb32eac712cf85a116c4 files/scummvm-0.7.1-64bit.patch 1083
MD5 960f5d0a4e84df65775164313f55ef59 files/scummvm-0.8.0-configure.patch 184
MD5 f17b9b8fa07a38914fe1c03268f51678 metadata.xml 158
-MD5 aa1b37e7c166efb943f22779b115bad5 scummvm-0.7.1.ebuild 1813
MD5 0e8df7593839cc383bdcbf7034cae1f4 scummvm-0.8.0.ebuild 1744
------BEGIN PGP SIGNATURE-----
-Version: GnuPG v1.4.2 (GNU/Linux)
-
-iD8DBQFDZXK9gIKl8Uu19MoRAqGvAJ9RkbmAu2ruu1Cq+9VWiGIB1rkPPgCfeENJ
-SKd3j2pMeTCHSC95b+rEhtk=
-=rquJ
------END PGP SIGNATURE-----
diff --git a/games-engines/scummvm/files/0.7.1-configure.patch b/games-engines/scummvm/files/0.7.1-configure.patch
deleted file mode 100644
index e174994aa2ff..000000000000
--- a/games-engines/scummvm/files/0.7.1-configure.patch
+++ /dev/null
@@ -1,19 +0,0 @@
---- configure.orig 2005-03-28 18:50:50.000000000 -0500
-+++ configure 2005-03-28 18:56:08.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]|4.[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]-*|4.[0-9].[0-9]|4.[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.1 b/games-engines/scummvm/files/digest-scummvm-0.7.1
deleted file mode 100644
index 945a8a522727..000000000000
--- a/games-engines/scummvm/files/digest-scummvm-0.7.1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 a935499011c59441fcce8322ea1c4f1d scummvm-0.7.1.tar.bz2 2051004
diff --git a/games-engines/scummvm/files/scummvm-0.7.1-64bit.patch b/games-engines/scummvm/files/scummvm-0.7.1-64bit.patch
deleted file mode 100644
index 224b7106718d..000000000000
--- a/games-engines/scummvm/files/scummvm-0.7.1-64bit.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-Fixes for 64bit issues from upstream.
-
-http://bugs.gentoo.org/103450
-
---- scummvm/scummvm/common/scaler.cpp
-+++ scummvm/scummvm/common/scaler.cpp
-@@ -123,7 +123,7 @@
- int width, int height) {
- uint8 *r;
-
-- assert(((int)dstPtr & 3) == 0);
-+ assert(((long)dstPtr & 3) == 0);
- while (height--) {
- r = dstPtr;
- for (int i = 0; i < width; ++i, r += 4) {
-@@ -148,7 +148,7 @@
- const uint32 dstPitch2 = dstPitch * 2;
- const uint32 dstPitch3 = dstPitch * 3;
-
-- assert(((int)dstPtr & 1) == 0);
-+ assert(((long)dstPtr & 1) == 0);
- while (height--) {
- r = dstPtr;
- for (int i = 0; i < width; ++i, r += 6) {
---- scummvm/scummvm/scumm/instrument.h
-+++ scummvm/scummvm/scumm/instrument.h
-@@ -60,7 +60,7 @@
-
- void clear();
- void copy_to (Instrument *dest) { if (_instrument) _instrument->copy_to (dest); else dest->clear(); }
-- operator int() { return (_instrument ? (int) _instrument : 255); }
-+ operator int() { return (_instrument ? (long) _instrument : 255); }
- void program (byte program, bool mt32);
- void adlib (byte *instrument);
- void roland (byte *instrument);
diff --git a/games-engines/scummvm/scummvm-0.7.1.ebuild b/games-engines/scummvm/scummvm-0.7.1.ebuild
deleted file mode 100644
index bd49fda07aff..000000000000
--- a/games-engines/scummvm/scummvm-0.7.1.ebuild
+++ /dev/null
@@ -1,64 +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.1.ebuild,v 1.5 2005/09/01 03:18:31 vapier 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 mp3 ogg vorbis sdl zlib"
-RESTRICT="test" # it only looks like there's a test there #77507
-
-RDEPEND=">=media-libs/libsdl-1.2.2
- >media-libs/libmpeg2-0.3.1
- ogg? ( media-libs/libogg media-libs/libvorbis )
- vorbis? ( media-libs/libogg media-libs/libvorbis )
- alsa? ( >=media-libs/alsa-lib-0.9 )
- mp3? ( 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
- epatch "${FILESDIR}"/${P}-64bit.patch
-}
-
-src_compile() {
- local myconf="--backend=sdl" # x11 backend no worky (bug #83502)
-
- use debug \
- || myconf="${myconf} --disable-debug"
- (use vorbis || use ogg) \
- && myconf="${myconf} --enable-vorbis" \
- || myconf="${myconf} --disable-vorbis --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 mp3 mad) \
- $(use_enable flac) \
- $(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
-}