diff options
author | 2010-08-20 19:53:42 +0000 | |
---|---|---|
committer | 2010-08-20 19:53:42 +0000 | |
commit | 0694dd89675953ecfba38bd2a539160b4e63a68f (patch) | |
tree | c5f0ce855e05f42da4e323fd8a372f5552b1ca9e /games-engines/scummvm | |
parent | old (diff) | |
download | gentoo-2-0694dd89675953ecfba38bd2a539160b4e63a68f.tar.gz gentoo-2-0694dd89675953ecfba38bd2a539160b4e63a68f.tar.bz2 gentoo-2-0694dd89675953ecfba38bd2a539160b4e63a68f.zip |
old
(Portage version: 2.1.8.3/cvs/Linux i686)
Diffstat (limited to 'games-engines/scummvm')
-rw-r--r-- | games-engines/scummvm/Manifest | 12 | ||||
-rw-r--r-- | games-engines/scummvm/scummvm-1.0.0.ebuild | 82 |
2 files changed, 0 insertions, 94 deletions
diff --git a/games-engines/scummvm/Manifest b/games-engines/scummvm/Manifest index 24a895baeff4..ae172e15dfd3 100644 --- a/games-engines/scummvm/Manifest +++ b/games-engines/scummvm/Manifest @@ -1,16 +1,4 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA1 - -DIST scummvm-1.0.0.tar.bz2 7955357 RMD160 b01c45e18cff0a640fd75245947b813d687232da SHA1 31e3f02d322cf9f51b89122dc56a0d947d92c25f SHA256 920932b9d0cfca019f35c2451d93d94ca3b9f981f0b82c418bfbc864fb8c00ec DIST scummvm-1.1.1.tar.bz2 8668735 RMD160 f581a5cae6821bae9b700ff1cb36a665ebefab61 SHA1 5f3dee411088987625f6351c721586a0ce6c3d42 SHA256 9cc865c5690bfc1df4970d35984455031467381180a71d84b08dcc9f51e39d4a -EBUILD scummvm-1.0.0.ebuild 2313 RMD160 c8b3ddeff46afe1096dc4567fae82c60530dcc20 SHA1 ff8e5ea2775a49ef8be36e1f65f8cf809a2395e0 SHA256 fbed1d7af24f7ba39b2b92fb9b959894cbe7b237a773b219971dc2edabd83f16 EBUILD scummvm-1.1.1.ebuild 2345 RMD160 09e0ceb431f69802cd60cab739c93b5f526058d5 SHA1 8b0652cf1ff14c6412e85278b8dbab4e12c431f7 SHA256 c39fcfba3958f8a692ff969af411a08e452e7576d2b96eb0ec7be847265c4af0 MISC ChangeLog 14000 RMD160 cdb782ad2bbe89c26ccb6d8f29ee7005b959da31 SHA1 643c47ebc49ed821708f951fad2104b72f4c4476 SHA256 b7472a6f8a4bafbe8d795fcbc2fb2ace9a025c1eee0492da24909f8a241d34c0 MISC metadata.xml 248 RMD160 ef65397fe4528a5ae0332b01a77e8f2a9e4c4e91 SHA1 a1c019c07494e52a3167dc8945533c2fd3ea1fc5 SHA256 d07430a4c6da117a018a33c479a43b812752dc8658311ae2559ef1d9f3654385 ------BEGIN PGP SIGNATURE----- -Version: GnuPG v2.0.15 (GNU/Linux) - -iEYEARECAAYFAkxEoHkACgkQcsIHjyDViGSylgCfUd1ukTUOgEe10CRTDSrKVQqX -OYAAoLqB6WX/ivQTkF0g0l0LUpyfA9Zy -=jPUQ ------END PGP SIGNATURE----- diff --git a/games-engines/scummvm/scummvm-1.0.0.ebuild b/games-engines/scummvm/scummvm-1.0.0.ebuild deleted file mode 100644 index 74799eaf3145..000000000000 --- a/games-engines/scummvm/scummvm-1.0.0.ebuild +++ /dev/null @@ -1,82 +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.0.0.ebuild,v 1.6 2010/01/30 18:12:53 armin76 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}" - - ( use vorbis || use ogg ) \ - && myconf="${myconf} --enable-vorbis" \ - || myconf="${myconf} --disable-vorbis" - - # 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 \ - --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 -} |