summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2009-03-02 18:10:55 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2009-03-02 18:10:55 +0000
commit80e88f934e5f1b60e8d56db7a6f83481f545c869 (patch)
treec57a97537e770c72175d601aedbaf634b6c475b7 /games-engines
parentlibchipcard bump (diff)
downloadgentoo-2-80e88f934e5f1b60e8d56db7a6f83481f545c869.tar.gz
gentoo-2-80e88f934e5f1b60e8d56db7a6f83481f545c869.tar.bz2
gentoo-2-80e88f934e5f1b60e8d56db7a6f83481f545c869.zip
version bump
(Portage version: 2.1.6.7/cvs/Linux i686)
Diffstat (limited to 'games-engines')
-rw-r--r--games-engines/scummvm-tools/ChangeLog8
-rw-r--r--games-engines/scummvm-tools/scummvm-tools-0.13.0.ebuild38
2 files changed, 45 insertions, 1 deletions
diff --git a/games-engines/scummvm-tools/ChangeLog b/games-engines/scummvm-tools/ChangeLog
index 304cec5717e0..08efc57efe86 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-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm-tools/ChangeLog,v 1.21 2009/02/26 15:14:54 josejx Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm-tools/ChangeLog,v 1.22 2009/03/02 18:10:55 mr_bones_ Exp $
+
+*scummvm-tools-0.13.0 (02 Mar 2009)
+
+ 02 Mar 2009; Michael Sterrett <mr_bones_@gentoo.org>
+ +scummvm-tools-0.13.0.ebuild:
+ version bump
26 Feb 2009; Joseph Jezak <josejx@gentoo.org> scummvm-tools-0.12.0.ebuild:
Marked ppc stable for bug #255574.
diff --git a/games-engines/scummvm-tools/scummvm-tools-0.13.0.ebuild b/games-engines/scummvm-tools/scummvm-tools-0.13.0.ebuild
new file mode 100644
index 000000000000..b727ac81da56
--- /dev/null
+++ b/games-engines/scummvm-tools/scummvm-tools-0.13.0.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2009 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.13.0.ebuild,v 1.1 2009/03/02 18:10:55 mr_bones_ Exp $
+
+EAPI=2
+WX_GTK_VER=2.8
+inherit toolchain-funcs wxwidgets 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 ~sparc ~x86 ~x86-fbsd"
+IUSE=""
+
+DEPEND="media-libs/libpng
+ media-libs/flac
+ media-libs/libvorbis
+ x11-libs/wxGTK:2.8"
+
+src_prepare() {
+ rm -f *.bat
+ sed -ri \
+ -e '/^(CC|CXX)\b/d' \
+ Makefile \
+ || die "sed 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 TODO
+ prepgamesdirs
+}