summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-10-31 01:31:16 +0000
committerMike Frysinger <vapier@gentoo.org>2005-10-31 01:31:16 +0000
commit31888a110d68139e667241f597dad0e2ee6b0a07 (patch)
treef5e8165b128e98b7801d6e663b8a2c92b05d23cb /games-engines
parentold (diff)
downloadgentoo-2-31888a110d68139e667241f597dad0e2ee6b0a07.tar.gz
gentoo-2-31888a110d68139e667241f597dad0e2ee6b0a07.tar.bz2
gentoo-2-31888a110d68139e667241f597dad0e2ee6b0a07.zip
Version bump #110930 by Robert Lundmark.
(Portage version: 2.0.53_rc6)
Diffstat (limited to 'games-engines')
-rw-r--r--games-engines/scummvm-tools/ChangeLog10
-rw-r--r--games-engines/scummvm-tools/files/digest-scummvm-tools-0.8.01
-rw-r--r--games-engines/scummvm-tools/scummvm-tools-0.8.0.ebuild33
3 files changed, 42 insertions, 2 deletions
diff --git a/games-engines/scummvm-tools/ChangeLog b/games-engines/scummvm-tools/ChangeLog
index 40c2293bbf5e..bffec250e3cb 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.6 2004/12/26 10:12:17 vapier Exp $
+# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm-tools/ChangeLog,v 1.7 2005/10/31 01:31:16 vapier Exp $
+
+*scummvm-tools-0.8.0 (31 Oct 2005)
+
+ 31 Oct 2005; Mike Frysinger <vapier@gentoo.org>
+ +scummvm-tools-0.8.0.ebuild:
+ Version bump #110930 by Robert Lundmark.
*scummvm-tools-0.7.0 (26 Dec 2004)
diff --git a/games-engines/scummvm-tools/files/digest-scummvm-tools-0.8.0 b/games-engines/scummvm-tools/files/digest-scummvm-tools-0.8.0
new file mode 100644
index 000000000000..431bd026ba9c
--- /dev/null
+++ b/games-engines/scummvm-tools/files/digest-scummvm-tools-0.8.0
@@ -0,0 +1 @@
+MD5 cc7e13ea10acf692c10e90b9507074ed scummvm-tools-0.8.0.tar.bz2 92983
diff --git a/games-engines/scummvm-tools/scummvm-tools-0.8.0.ebuild b/games-engines/scummvm-tools/scummvm-tools-0.8.0.ebuild
new file mode 100644
index 000000000000..c9ac35bc68be
--- /dev/null
+++ b/games-engines/scummvm-tools/scummvm-tools-0.8.0.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2005 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.8.0.ebuild,v 1.1 2005/10/31 01:31:16 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="amd64 ppc x86"
+IUSE=""
+
+DEPEND=""
+
+S=${WORKDIR}/tools-${PV}
+
+src_unpack() {
+ unpack ${A}
+ cd "${S}"
+ sed -i -e '/CFLAGS/s: -g -O : :' Makefile
+}
+
+src_install() {
+ local f
+ for f in $(find -type f -perm +1 -printf '%f ') ; do
+ newgamesbin $f ${PN}-$f || die "newgamesbin $f failed"
+ done
+ dodoc README
+ prepgamesdirs
+}