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 | b92ab2312b90ec2099c5bd8985a7fc46a19c265f (patch) | |
tree | 0a3654934203cad0bb62fde44e85fc91103bdd6c /games-engines/scummvm-tools | |
parent | version bump (bug #58542) (Manifest recommit) (diff) | |
download | gentoo-2-b92ab2312b90ec2099c5bd8985a7fc46a19c265f.tar.gz gentoo-2-b92ab2312b90ec2099c5bd8985a7fc46a19c265f.tar.bz2 gentoo-2-b92ab2312b90ec2099c5bd8985a7fc46a19c265f.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/Manifest | 6 | ||||
-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 |
4 files changed, 45 insertions, 3 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/Manifest b/games-engines/scummvm-tools/Manifest index e030f2a2a548..ebad67fe42ff 100644 --- a/games-engines/scummvm-tools/Manifest +++ b/games-engines/scummvm-tools/Manifest @@ -1,6 +1,8 @@ -MD5 7c56b52dbed1b620f500c75ea0ae1aaa scummvm-tools-0.5.0.ebuild 705 -MD5 94b800ffcb41868e4fd97e77b6ec6b98 scummvm-tools-0.6.0.ebuild 777 MD5 8bc3027e99556489222c41fae37f923f ChangeLog 587 +MD5 7c56b52dbed1b620f500c75ea0ae1aaa scummvm-tools-0.5.0.ebuild 705 MD5 f17b9b8fa07a38914fe1c03268f51678 metadata.xml 158 +MD5 94b800ffcb41868e4fd97e77b6ec6b98 scummvm-tools-0.6.0.ebuild 777 +MD5 1292a838c763a2b3d0f26a84c80f9e7a scummvm-tools-0.6.1.ebuild 781 MD5 6688802155504c977bbbc7b91c668af3 files/digest-scummvm-tools-0.5.0 71 MD5 62f2dbbaa22d40bd48bc58fadd9fb64b files/digest-scummvm-tools-0.6.0 71 +MD5 5236ae9c4da539ccaecd67365fc21900 files/digest-scummvm-tools-0.6.1 75 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 +} |