diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-04-05 22:55:24 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-04-05 22:55:24 +0000 |
commit | 0cf423eb9987768687a73bff9ad3e351589264fe (patch) | |
tree | 7c61eda6369cf12ce1a21d8ea5dba408b00e349b /games-engines | |
parent | bump to 0.3 (diff) | |
download | historical-0cf423eb9987768687a73bff9ad3e351589264fe.tar.gz historical-0cf423eb9987768687a73bff9ad3e351589264fe.tar.bz2 historical-0cf423eb9987768687a73bff9ad3e351589264fe.zip |
version bump (bug #44826)
Diffstat (limited to 'games-engines')
-rw-r--r-- | games-engines/scummvm-tools/ChangeLog | 11 | ||||
-rw-r--r-- | games-engines/scummvm-tools/Manifest | 8 | ||||
-rw-r--r-- | games-engines/scummvm-tools/files/digest-scummvm-tools-0.6.0 | 1 | ||||
-rw-r--r-- | games-engines/scummvm-tools/scummvm-tools-0.6.0.ebuild | 32 |
4 files changed, 47 insertions, 5 deletions
diff --git a/games-engines/scummvm-tools/ChangeLog b/games-engines/scummvm-tools/ChangeLog index 462f3e6d73c1..6fce348410f8 100644 --- a/games-engines/scummvm-tools/ChangeLog +++ b/games-engines/scummvm-tools/ChangeLog @@ -1,6 +1,13 @@ # 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 $ +# Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm-tools/ChangeLog,v 1.2 2004/04/05 22:55:24 mr_bones_ Exp $ + +*scummvm-tools-0.6.0 (05 Apr 2004) + + 05 Apr 2004; Michael Sterrett <mr_bones_@gentoo.org> + scummvm-tools-0.6.0.ebuild: + version bump (bug #44826); now installed with ${PN} prefix so badly named + utilities won't conflict with other packages *scummvm-tools-0.5.0 (26 Sep 2003) diff --git a/games-engines/scummvm-tools/Manifest b/games-engines/scummvm-tools/Manifest index c9dace095470..8edb30a2a431 100644 --- a/games-engines/scummvm-tools/Manifest +++ b/games-engines/scummvm-tools/Manifest @@ -1,4 +1,6 @@ -MD5 6688802155504c977bbbc7b91c668af3 files/digest-scummvm-tools-0.5.0 71 -MD5 cee9b9083d6b62be3488697ee3bfbcf4 ChangeLog 349 -MD5 f17b9b8fa07a38914fe1c03268f51678 metadata.xml 158 +MD5 42c5e788442dc1305af46e451f4695ba ChangeLog 597 MD5 decb9a3d07d5ef6853014d6e3dd1fa5c scummvm-tools-0.5.0.ebuild 707 +MD5 f17b9b8fa07a38914fe1c03268f51678 metadata.xml 158 +MD5 e050919d8efe53f823ec09ffd4f3d668 scummvm-tools-0.6.0.ebuild 814 +MD5 6688802155504c977bbbc7b91c668af3 files/digest-scummvm-tools-0.5.0 71 +MD5 c73df55b71e4f2164e870d8f85aa7e04 files/digest-scummvm-tools-0.6.0 71 diff --git a/games-engines/scummvm-tools/files/digest-scummvm-tools-0.6.0 b/games-engines/scummvm-tools/files/digest-scummvm-tools-0.6.0 new file mode 100644 index 000000000000..a9c61100f683 --- /dev/null +++ b/games-engines/scummvm-tools/files/digest-scummvm-tools-0.6.0 @@ -0,0 +1 @@ +MD5 03becc363e7b1a551b723f76abe734b1 scummvm-tools-0.6.0.tar.bz2 75467 diff --git a/games-engines/scummvm-tools/scummvm-tools-0.6.0.ebuild b/games-engines/scummvm-tools/scummvm-tools-0.6.0.ebuild new file mode 100644 index 000000000000..fce4faeacaab --- /dev/null +++ b/games-engines/scummvm-tools/scummvm-tools-0.6.0.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2004 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.6.0.ebuild,v 1.1 2004/04/05 22:55:24 mr_bones_ Exp $ + +inherit games + +S="${WORKDIR}/tools-${PV}" +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" +IUSE="" + +DEPEND="virtual/glibc" + +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 +} |