diff options
Diffstat (limited to 'games-engines')
-rw-r--r-- | games-engines/scummvm-tools/ChangeLog | 8 | ||||
-rw-r--r-- | games-engines/scummvm-tools/files/digest-scummvm-tools-0.5.0 | 1 | ||||
-rw-r--r-- | games-engines/scummvm-tools/scummvm-tools-0.5.0.ebuild | 30 |
3 files changed, 39 insertions, 0 deletions
diff --git a/games-engines/scummvm-tools/ChangeLog b/games-engines/scummvm-tools/ChangeLog new file mode 100644 index 000000000000..462f3e6d73c1 --- /dev/null +++ b/games-engines/scummvm-tools/ChangeLog @@ -0,0 +1,8 @@ +# ChangeLog for games-engines/scummvm-tools +# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm-tools/ChangeLog,v 1.1 2003/09/26 18:50:34 vapier Exp $ + +*scummvm-tools-0.5.0 (26 Sep 2003) + + 26 Sep 2003; Mike Frysinger <vapier@gentoo.org> : + Initial ebuild #29167. diff --git a/games-engines/scummvm-tools/files/digest-scummvm-tools-0.5.0 b/games-engines/scummvm-tools/files/digest-scummvm-tools-0.5.0 new file mode 100644 index 000000000000..97938b83271d --- /dev/null +++ b/games-engines/scummvm-tools/files/digest-scummvm-tools-0.5.0 @@ -0,0 +1 @@ +MD5 4d9d4821b2cac5225ac408f00a69c189 scummvm-tools-0.5.0.tar.bz2 40355 diff --git a/games-engines/scummvm-tools/scummvm-tools-0.5.0.ebuild b/games-engines/scummvm-tools/scummvm-tools-0.5.0.ebuild new file mode 100644 index 000000000000..5edbeac0f209 --- /dev/null +++ b/games-engines/scummvm-tools/scummvm-tools-0.5.0.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm-tools/scummvm-tools-0.5.0.ebuild,v 1.1 2003/09/26 18:50:34 vapier Exp $ + +inherit games + +DESCRIPTION="utilities for the SCUMM game engine" +HOMEPAGE="http://scummvm.sourceforge.net/" +SRC_URI="mirror://sourceforge/scummvm/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="x86 ppc" + +DEPEND="" + +src_unpack() { + unpack ${A} + sed -i "s:-g -O -Wall:${CFLAGS}:" ${S}/Makefile +} + +src_compile() { + emake || die "emake failed" +} + +src_install() { + dogamesbin descumm descumm6 extract rescumm simon1decr simon2mp3 + dodoc README + prepgamesdirs +} |