Gentoo Archives: gentoo-commits

From: "Michael Sterrett (mr_bones_)" <mr_bones_@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in games-engines/scummvm-tools: ChangeLog scummvm-tools-1.0.0_rc1.ebuild
Date: Thu, 10 Sep 2009 17:11:26
Message-Id: E1MlnB6-0001KW-D4@stork.gentoo.org
1 mr_bones_ 09/09/10 17:11:24
2
3 Modified: ChangeLog
4 Added: scummvm-tools-1.0.0_rc1.ebuild
5 Log:
6 version bump
7 (Portage version: 2.1.6.13/cvs/Linux i686)
8
9 Revision Changes Path
10 1.27 games-engines/scummvm-tools/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/scummvm-tools/ChangeLog?rev=1.27&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/scummvm-tools/ChangeLog?rev=1.27&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/scummvm-tools/ChangeLog?r1=1.26&r2=1.27
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/games-engines/scummvm-tools/ChangeLog,v
19 retrieving revision 1.26
20 retrieving revision 1.27
21 diff -u -r1.26 -r1.27
22 --- ChangeLog 2 Aug 2009 00:02:37 -0000 1.26
23 +++ ChangeLog 10 Sep 2009 17:11:24 -0000 1.27
24 @@ -1,6 +1,12 @@
25 # ChangeLog for games-engines/scummvm-tools
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm-tools/ChangeLog,v 1.26 2009/08/02 00:02:37 chainsaw Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm-tools/ChangeLog,v 1.27 2009/09/10 17:11:24 mr_bones_ Exp $
29 +
30 +*scummvm-tools-1.0.0_rc1 (10 Sep 2009)
31 +
32 + 10 Sep 2009; Michael Sterrett <mr_bones_@g.o>
33 + +scummvm-tools-1.0.0_rc1.ebuild:
34 + version bump
35
36 01 Aug 2009; <chainsaw@g.o> scummvm-tools-0.13.0.ebuild:
37 Marked stable on AMD64 as requested by Michael "Mr. Bones" Sterrett
38
39
40
41 1.1 games-engines/scummvm-tools/scummvm-tools-1.0.0_rc1.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/scummvm-tools/scummvm-tools-1.0.0_rc1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/scummvm-tools/scummvm-tools-1.0.0_rc1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: scummvm-tools-1.0.0_rc1.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm-tools/scummvm-tools-1.0.0_rc1.ebuild,v 1.1 2009/09/10 17:11:24 mr_bones_ Exp $
51
52 EAPI=2
53 WX_GTK_VER=2.8
54 inherit toolchain-funcs wxwidgets games
55
56 DESCRIPTION="utilities for the SCUMM game engine"
57 HOMEPAGE="http://scummvm.sourceforge.net/"
58 SRC_URI="mirror://sourceforge/scummvm/${P/_/}.tar.bz2"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
63 IUSE=""
64
65 DEPEND="media-libs/libpng
66 media-libs/flac
67 media-libs/libvorbis
68 x11-libs/wxGTK:2.8"
69
70 S=${WORKDIR}/${P/_/}
71
72 src_prepare() {
73 rm -f *.bat
74 sed -ri \
75 -e '/^(CC|CXX)\b/d' \
76 Makefile \
77 || die "sed failed"
78 }
79
80 src_install() {
81 local f
82 for f in $(find . -type f -perm +1 -print); do
83 newgamesbin $f ${PN}-${f##*/} || die "newgamesbin $f failed"
84 done
85 dodoc README TODO
86 prepgamesdirs
87 }