diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2006-06-26 05:47:57 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2006-06-26 05:47:57 +0000 |
commit | 1dfa56d1784f61b69f2161f3c3f09ebb94a93df8 (patch) | |
tree | ff64974db1501812687d9829135baf5919ba7353 /games-engines | |
parent | Add sed to fix kxkb with autoconf 2.59d. (diff) | |
download | gentoo-2-1dfa56d1784f61b69f2161f3c3f09ebb94a93df8.tar.gz gentoo-2-1dfa56d1784f61b69f2161f3c3f09ebb94a93df8.tar.bz2 gentoo-2-1dfa56d1784f61b69f2161f3c3f09ebb94a93df8.zip |
version bump
(Portage version: 2.1.1_pre1-r2)
Diffstat (limited to 'games-engines')
-rw-r--r-- | games-engines/scummvm/ChangeLog | 8 | ||||
-rw-r--r-- | games-engines/scummvm/files/digest-scummvm-0.9.0 | 3 | ||||
-rw-r--r-- | games-engines/scummvm/scummvm-0.9.0.ebuild | 76 |
3 files changed, 86 insertions, 1 deletions
diff --git a/games-engines/scummvm/ChangeLog b/games-engines/scummvm/ChangeLog index 8640ac2a0736..1605e3f76dc7 100644 --- a/games-engines/scummvm/ChangeLog +++ b/games-engines/scummvm/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for games-engines/scummvm # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/ChangeLog,v 1.31 2006/06/22 07:51:48 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/ChangeLog,v 1.32 2006/06/26 05:47:57 mr_bones_ Exp $ + +*scummvm-0.9.0 (26 Jun 2006) + + 26 Jun 2006; Michael Sterrett <mr_bones_@gentoo.org> + +scummvm-0.9.0.ebuild: + version bump 22 Jun 2006; Michael Sterrett <mr_bones_@gentoo.org> scummvm-0.8.2.ebuild: Add support for fluidsynth (bug #137547) diff --git a/games-engines/scummvm/files/digest-scummvm-0.9.0 b/games-engines/scummvm/files/digest-scummvm-0.9.0 new file mode 100644 index 000000000000..59823e085242 --- /dev/null +++ b/games-engines/scummvm/files/digest-scummvm-0.9.0 @@ -0,0 +1,3 @@ +MD5 5eede9c97d1883f80770a3e211419783 scummvm-0.9.0.tar.bz2 4305972 +RMD160 3537c2c0c5ed92db50dea47836b1dca83b21e1f0 scummvm-0.9.0.tar.bz2 4305972 +SHA256 5824f67aa37b00fc8b92ac4fcc413a9a7d868174dcd6df580c4d706807e4545e scummvm-0.9.0.tar.bz2 4305972 diff --git a/games-engines/scummvm/scummvm-0.9.0.ebuild b/games-engines/scummvm/scummvm-0.9.0.ebuild new file mode 100644 index 000000000000..f58c6e2f80f1 --- /dev/null +++ b/games-engines/scummvm/scummvm-0.9.0.ebuild @@ -0,0 +1,76 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/scummvm-0.9.0.ebuild,v 1.1 2006/06/26 05:47:57 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 fluidsynth 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 ) + fluidsynth? ( media-sound/fluidsynth ) + zlib? ( sys-libs/zlib )" +DEPEND="${RDEPEND} + x86? ( dev-lang/nasm )" + +src_unpack() { + unpack ${A} + cd "${S}" + if use x86 ; then + local f + for f in graphics/scaler/{hq3x_i386.asm,hq2x_i386.asm} + do + cat >> $f <<EOF + %ifidn __OUTPUT_FORMAT__,elf + section .note.GNU-stack noalloc noexec nowrite progbits + %endif +EOF + done + fi +} + +src_compile() { + local myconf="--backend=sdl" # x11 backend no worky (bug #83502) + + ( use vorbis || use ogg ) \ + && myconf="${myconf} --enable-vorbis" \ + || myconf="${myconf} --disable-vorbis --disable-mpeg2" + + # 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 \ + $(use_enable debug) \ + $(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 dists/scummvm.6 + dodoc AUTHORS NEWS README TODO + doicon icons/scummvm.xpm + make_desktop_entry scummvm ScummVM scummvm.xpm + prepgamesdirs +} |