diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-07-29 08:24:51 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-07-29 08:24:51 +0000 |
commit | 157b63dda6ff9a40fca6c01d4aeb6bfbd3f32d87 (patch) | |
tree | a63d3ccea6232850883254a92aa9bcb38b3251a8 /games-engines/scummvm-tools | |
parent | version bump (bug #58542) (diff) | |
download | historical-157b63dda6ff9a40fca6c01d4aeb6bfbd3f32d87.tar.gz historical-157b63dda6ff9a40fca6c01d4aeb6bfbd3f32d87.tar.bz2 historical-157b63dda6ff9a40fca6c01d4aeb6bfbd3f32d87.zip |
version bump
Diffstat (limited to 'games-engines/scummvm-tools')
-rw-r--r-- | games-engines/scummvm-tools/ChangeLog | 8 | ||||
-rw-r--r-- | games-engines/scummvm-tools/files/digest-scummvm-tools-0.6.1 | 1 | ||||
-rw-r--r-- | games-engines/scummvm-tools/scummvm-tools-0.6.1.ebuild | 33 |
3 files changed, 41 insertions, 1 deletions
diff --git a/games-engines/scummvm-tools/ChangeLog b/games-engines/scummvm-tools/ChangeLog index 45eba225ff5e..ad788cad5854 100644 --- a/games-engines/scummvm-tools/ChangeLog +++ b/games-engines/scummvm-tools/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for games-engines/scummvm-tools # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm-tools/ChangeLog,v 1.3 2004/06/24 22:39:25 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm-tools/ChangeLog,v 1.4 2004/07/29 08:24:51 mr_bones_ Exp $ + +*scummvm-tools-0.6.1 (29 Jul 2004) + + 29 Jul 2004; Michael Sterrett <mr_bones_@gentoo.org> + +scummvm-tools-0.6.1.ebuild: + version bump *scummvm-tools-0.6.0 (05 Apr 2004) diff --git a/games-engines/scummvm-tools/files/digest-scummvm-tools-0.6.1 b/games-engines/scummvm-tools/files/digest-scummvm-tools-0.6.1 new file mode 100644 index 000000000000..e0d1c61078f3 --- /dev/null +++ b/games-engines/scummvm-tools/files/digest-scummvm-tools-0.6.1 @@ -0,0 +1 @@ +MD5 b2ba0801fbd85a568af1c5af14fd18ac scummvm-tools-0.6.1-src.tar.bz2 83980 diff --git a/games-engines/scummvm-tools/scummvm-tools-0.6.1.ebuild b/games-engines/scummvm-tools/scummvm-tools-0.6.1.ebuild new file mode 100644 index 000000000000..57ccb1142fc3 --- /dev/null +++ b/games-engines/scummvm-tools/scummvm-tools-0.6.1.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm-tools/scummvm-tools-0.6.1.ebuild,v 1.1 2004/07/29 08:24:51 mr_bones_ Exp $ + +inherit games + +DESCRIPTION="utilities for the SCUMM game engine" +HOMEPAGE="http://scummvm.sourceforge.net/" +SRC_URI="mirror://sourceforge/scummvm/${P}-src.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="x86 ppc" +IUSE="" + +DEPEND="virtual/libc" + +S="${WORKDIR}/scummvm-${PV}-tools" + +src_compile() { + emake CFLAGS="${CFLAGS}" || die "emake failed" +} + +src_install() { + local f + + for f in convbdf descumm desword2 extract md5table mm_nes_extract queenrebuild rescumm simon1decr simon2mp3 + do + newgamesbin $f ${PN}-$f || die "newgamesbin $f failed" + done + dodoc README + prepgamesdirs +} |