summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2011-02-13 14:50:02 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2011-02-13 14:50:02 +0000
commit4f1a9c7fae584843eda684b8c5f442e5e72d0125 (patch)
tree466541e3cd0ad60dfa863a904fe1f487aca67b11 /games-engines
parentDrop libgda plugin still relying on old libgnomedb (bug #354241). Remove old ... (diff)
downloadgentoo-2-4f1a9c7fae584843eda684b8c5f442e5e72d0125.tar.gz
gentoo-2-4f1a9c7fae584843eda684b8c5f442e5e72d0125.tar.bz2
gentoo-2-4f1a9c7fae584843eda684b8c5f442e5e72d0125.zip
old
(Portage version: 2.1.9.25/cvs/Linux i686)
Diffstat (limited to 'games-engines')
-rw-r--r--games-engines/scummvm/Manifest2
-rw-r--r--games-engines/scummvm/scummvm-1.2.0-r1.ebuild81
2 files changed, 0 insertions, 83 deletions
diff --git a/games-engines/scummvm/Manifest b/games-engines/scummvm/Manifest
index 4fc2948a4ed5..76d0c7243cbb 100644
--- a/games-engines/scummvm/Manifest
+++ b/games-engines/scummvm/Manifest
@@ -1,6 +1,4 @@
-DIST scummvm-1.2.0.tar.bz2 9514141 RMD160 c0c3f982c955fc9d39102fefa936b0d86b115157 SHA1 5443c3720179a9e75d46eb0282ec787637a76d36 SHA256 3ffc594d7ce3c14ad9bbbfaec70479f83a8bdbda81cf1eacf2988127f1d4dac0
DIST scummvm-1.2.1.tar.bz2 9541548 RMD160 3e78eaf5657f395cbf097898b965735e0520da2a SHA1 f3dc6aae5a108c1fe4f9442a40c22c89ab2227b3 SHA256 488e0fc0fb48509f8d2dcc8f87a77d03655e8ae0e9f4333963aaa07ff75f2a09
-EBUILD scummvm-1.2.0-r1.ebuild 2227 RMD160 571829ccfeb0df827ccfe0fe31a97c10cea7dffe SHA1 f801adc18fdb93a10ed9223435f24c5b40b24187 SHA256 562922489588c847d95575e072875f4d9e73fc009f956bc02ca2135b23d173e2
EBUILD scummvm-1.2.1.ebuild 2242 RMD160 fe624842551d155a8f88a2184757704279373f0a SHA1 ee6d6a4dca311122a669a3d318ac0cfb48d9aedd SHA256 17d6385f6ef44706a89bb65e0adcd43e57bf2b9b3384ccc905e77f9e185e8fac
MISC ChangeLog 15072 RMD160 7009956ae2fbf38d1f9039fa6cefd0d2f1f71ddb SHA1 d2b3d7fca1fd4b407cd4a13de360c02237b862ea SHA256 ca68e3ddaa1f6af4c695f0c6a69f27028f9acb042e058118db6257ae8dd97d15
MISC metadata.xml 248 RMD160 ef65397fe4528a5ae0332b01a77e8f2a9e4c4e91 SHA1 a1c019c07494e52a3167dc8945533c2fd3ea1fc5 SHA256 d07430a4c6da117a018a33c479a43b812752dc8658311ae2559ef1d9f3654385
diff --git a/games-engines/scummvm/scummvm-1.2.0-r1.ebuild b/games-engines/scummvm/scummvm-1.2.0-r1.ebuild
deleted file mode 100644
index 3d06e21d8f7e..000000000000
--- a/games-engines/scummvm/scummvm-1.2.0-r1.ebuild
+++ /dev/null
@@ -1,81 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/scummvm-1.2.0-r1.ebuild,v 1.4 2011/02/13 12:30:01 armin76 Exp $
-
-EAPI=2
-inherit eutils flag-o-matic 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 ~ppc64 x86 ~x86-fbsd"
-IUSE="alsa debug flac fluidsynth mp3 ogg vorbis"
-RESTRICT="test" # it only looks like there's a test there #77507
-
-RDEPEND=">=media-libs/libsdl-1.2.2[audio,joystick,video]
- >media-libs/libmpeg2-0.3.1
- sys-libs/zlib
- ogg? ( media-libs/libogg media-libs/libvorbis )
- vorbis? ( media-libs/libogg media-libs/libvorbis )
- alsa? ( media-libs/alsa-lib )
- mp3? ( media-libs/libmad )
- flac? ( media-libs/flac )
- fluidsynth? ( media-sound/fluidsynth )"
-DEPEND="${RDEPEND}
- x86? ( dev-lang/nasm )"
-
-S=${WORKDIR}/${P/_/}
-
-src_prepare() {
- # -g isn't needed for nasm here
- sed -i \
- -e '/NASMFLAGS/ s/-g//' \
- configure || die
- sed -i \
- -e '/INSTALL.*doc/d' \
- -e '/INSTALL.*\/pixmaps/d' \
- -e 's/-s //' \
- ports.mk || die
-}
-
-src_configure() {
- local myconf="--backend=sdl" # x11 backend no worky (bug #83502)
-
- if use vorbis || use ogg ; then
- myconf="${myconf} --enable-vorbis"
- else
- myconf="${myconf} --disable-vorbis"
- fi
-
- # bug #137547
- use fluidsynth || myconf="${myconf} --disable-fluidsynth"
-
- use x86 && append-ldflags -Wl,-z,noexecstack
-
- # NOT AN AUTOCONF SCRIPT SO DONT CALL ECONF
- # mpeg2 support needs vorbis (bug #79149) so turn it off if -oggvorbis
- ./configure \
- --enable-verbose-build \
- --prefix=/usr \
- --bindir="${GAMES_BINDIR}" \
- --datadir="${GAMES_DATADIR}"/${PN} \
- --libdir="${GAMES_LIBDIR}" \
- --enable-zlib \
- $(use_enable debug) \
- $(use_enable alsa) \
- $(use_enable mp3 mad) \
- $(use_enable flac) \
- $(use_enable x86 nasm) \
- ${myconf} || die
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "emake install failed"
- dodoc AUTHORS NEWS README TODO
- doicon icons/scummvm.svg
- make_desktop_entry scummvm ScummVM scummvm "Game;AdventureGame"
- prepgamesdirs
-}