summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuli Suominen <ssuominen@gentoo.org>2011-01-05 21:33:44 +0000
committerSamuli Suominen <ssuominen@gentoo.org>2011-01-05 21:33:44 +0000
commit178ca6a9a587e9aad293b84d01e73aaef30683f9 (patch)
tree91524a59328ac8eee581928dff2f900c452d3538 /games-engines
parentpunt old, drop stable keyword for minor arches (diff)
downloadgentoo-2-178ca6a9a587e9aad293b84d01e73aaef30683f9.tar.gz
gentoo-2-178ca6a9a587e9aad293b84d01e73aaef30683f9.tar.bz2
gentoo-2-178ca6a9a587e9aad293b84d01e73aaef30683f9.zip
punt old, drop stable keyword for minor arches
(Portage version: 2.2.0_alpha10/cvs/Linux x86_64)
Diffstat (limited to 'games-engines')
-rw-r--r--games-engines/scummvm/Manifest2
-rw-r--r--games-engines/scummvm/scummvm-1.1.1.ebuild85
2 files changed, 0 insertions, 87 deletions
diff --git a/games-engines/scummvm/Manifest b/games-engines/scummvm/Manifest
index cc56c4fa98a4..56a9e55eba9e 100644
--- a/games-engines/scummvm/Manifest
+++ b/games-engines/scummvm/Manifest
@@ -1,7 +1,5 @@
-DIST scummvm-1.1.1.tar.bz2 8668735 RMD160 f581a5cae6821bae9b700ff1cb36a665ebefab61 SHA1 5f3dee411088987625f6351c721586a0ce6c3d42 SHA256 9cc865c5690bfc1df4970d35984455031467381180a71d84b08dcc9f51e39d4a
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.1.1.ebuild 2345 RMD160 09e0ceb431f69802cd60cab739c93b5f526058d5 SHA1 8b0652cf1ff14c6412e85278b8dbab4e12c431f7 SHA256 c39fcfba3958f8a692ff969af411a08e452e7576d2b96eb0ec7be847265c4af0
EBUILD scummvm-1.2.0-r1.ebuild 2229 RMD160 abd8a4511e4d89327495f50873c1acbfbecaf324 SHA1 f12126d513e538c4e09dbf0d461b99e0ed46c9bc SHA256 0b41adaf0e3298bfe8364cf8316522b81df3b1fbe52c50dfe08f47c699bea9b1
EBUILD scummvm-1.2.1.ebuild 2235 RMD160 d0bc101ebef65e170e65cb49048c815d258a30f4 SHA1 0187363282dfea00dbc719e866cd110d88e6d74c SHA256 9ef093146b1e35b0e58fffcd4217209aff522b3ef8b8f8722a4dadad124413e3
MISC ChangeLog 14597 RMD160 fbd440e8a8393d66c57dc4295856a8ea97e077bb SHA1 88168950a531e02ed68cb33019d4551fab62fd39 SHA256 98e5d300ccb8b4990535546c02e42df6c6a8a6c26c961c0f1fe77d81515fe1ed
diff --git a/games-engines/scummvm/scummvm-1.1.1.ebuild b/games-engines/scummvm/scummvm-1.1.1.ebuild
deleted file mode 100644
index f89e5824bb52..000000000000
--- a/games-engines/scummvm/scummvm-1.1.1.ebuild
+++ /dev/null
@@ -1,85 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/scummvm-1.1.1.ebuild,v 1.6 2010/07/19 18:59:05 josejx Exp $
-
-EAPI=2
-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 ppc64 sparc 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//' \
- Makefile.common \
- || die "sed failed"
- sed -i \
- -e '/INSTALL.*doc\//d' \
- -e '/INSTALL.*\/pixmaps/d' \
- -e 's/-s //' \
- ports.mk \
- || die "sed failed"
-}
-
-src_configure() {
- 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}"
-
- if use vorbis || use ogg ; then
- myconf="${myconf} --enable-vorbis"
- else
- myconf="${myconf} --disable-vorbis"
- fi
-
- # bug #137547
- use fluidsynth || myconf="${myconf} --disable-fluidsynth"
-
- # 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}" \
- --libdir="${GAMES_LIBDIR}" \
- --enable-zlib \
- $(use_enable debug) \
- $(use_enable alsa) \
- $(use_enable mp3 mad) \
- $(use_enable flac) \
- $(use_enable x86 nasm) \
- ${myconf} \
- || die "configure failed"
-}
-
-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
-}