summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2007-12-27 21:34:21 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2007-12-27 21:34:21 +0000
commit2c260f1ff7e7098dc312bcd859f97a62b76063a1 (patch)
tree27154fdf96a5460e1210e0841a6cc1b61b1664a4 /games-engines
parenttweak DESCRIPTION #203428 (diff)
downloadgentoo-2-2c260f1ff7e7098dc312bcd859f97a62b76063a1.tar.gz
gentoo-2-2c260f1ff7e7098dc312bcd859f97a62b76063a1.tar.bz2
gentoo-2-2c260f1ff7e7098dc312bcd859f97a62b76063a1.zip
version bump (ebuild submitted by Davide Cendron via bug #203190)
(Portage version: 2.1.3.19)
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.10.03
-rw-r--r--games-engines/scummvm-tools/scummvm-tools-0.10.0.ebuild33
3 files changed, 44 insertions, 2 deletions
diff --git a/games-engines/scummvm-tools/ChangeLog b/games-engines/scummvm-tools/ChangeLog
index 318eb8716655..c793857c52f1 100644
--- a/games-engines/scummvm-tools/ChangeLog
+++ b/games-engines/scummvm-tools/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for games-engines/scummvm-tools
-# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm-tools/ChangeLog,v 1.11 2006/11/06 07:11:03 the_paya Exp $
+# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm-tools/ChangeLog,v 1.12 2007/12/27 21:34:20 mr_bones_ Exp $
+
+*scummvm-tools-0.10.0 (27 Dec 2007)
+
+ 27 Dec 2007; Michael Sterrett <mr_bones_@gentoo.org>
+ +scummvm-tools-0.10.0.ebuild:
+ version bump (ebuild submitted by Davide Cendron via bug #203190)
06 Nov 2006; Javier Villavicencio <the_paya@gentoo.org>
scummvm-tools-0.9.0.ebuild:
diff --git a/games-engines/scummvm-tools/files/digest-scummvm-tools-0.10.0 b/games-engines/scummvm-tools/files/digest-scummvm-tools-0.10.0
new file mode 100644
index 000000000000..bdfca5428534
--- /dev/null
+++ b/games-engines/scummvm-tools/files/digest-scummvm-tools-0.10.0
@@ -0,0 +1,3 @@
+MD5 c72250ad730243d43cf2d1aea0428acd scummvm-tools-0.10.0.tar.bz2 134395
+RMD160 359e45cda7b36aa1d4b02055e38faa3a6d8d97d1 scummvm-tools-0.10.0.tar.bz2 134395
+SHA256 b3909c1a913bffda75efb2a3f7ac65e1e3d125efc1b17415d39834460569dd15 scummvm-tools-0.10.0.tar.bz2 134395
diff --git a/games-engines/scummvm-tools/scummvm-tools-0.10.0.ebuild b/games-engines/scummvm-tools/scummvm-tools-0.10.0.ebuild
new file mode 100644
index 000000000000..5b975d3683fd
--- /dev/null
+++ b/games-engines/scummvm-tools/scummvm-tools-0.10.0.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2007 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.10.0.ebuild,v 1.1 2007/12/27 21:34:20 mr_bones_ Exp $
+
+inherit toolchain-funcs 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 ~x86-fbsd"
+IUSE=""
+
+DEPEND="media-libs/libpng"
+
+src_compile() {
+ emake \
+ CC=$(tc-getCC) \
+ CXX=$(tc-getCXX) \
+ CFLAGS="${CFLAGS} -DUNIX" \
+ || die "emake failed"
+}
+
+src_install() {
+ local f
+ for f in $(find . -type f -perm +1 -print); do
+ newgamesbin $f ${PN}-${f##*/} || die "newgamesbin $f failed"
+ done
+ dodoc README
+ prepgamesdirs
+}