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-0.12.0.ebuild
Date: Mon, 01 Sep 2008 19:01:17
Message-Id: E1KaEeH-0002Av-67@stork.gentoo.org
1 mr_bones_ 08/09/01 19:01:13
2
3 Modified: ChangeLog
4 Added: scummvm-tools-0.12.0.ebuild
5 Log:
6 version bump
7 (Portage version: 2.1.4.4)
8
9 Revision Changes Path
10 1.17 games-engines/scummvm-tools/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/scummvm-tools/ChangeLog?rev=1.17&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/scummvm-tools/ChangeLog?rev=1.17&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/scummvm-tools/ChangeLog?r1=1.16&r2=1.17
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/games-engines/scummvm-tools/ChangeLog,v
19 retrieving revision 1.16
20 retrieving revision 1.17
21 diff -u -r1.16 -r1.17
22 --- ChangeLog 14 Jun 2008 18:46:16 -0000 1.16
23 +++ ChangeLog 1 Sep 2008 19:01:12 -0000 1.17
24 @@ -1,6 +1,12 @@
25 # ChangeLog for games-engines/scummvm-tools
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm-tools/ChangeLog,v 1.16 2008/06/14 18:46:16 coldwind Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm-tools/ChangeLog,v 1.17 2008/09/01 19:01:12 mr_bones_ Exp $
29 +
30 +*scummvm-tools-0.12.0 (01 Sep 2008)
31 +
32 + 01 Sep 2008; Michael Sterrett <mr_bones_@g.o>
33 + +scummvm-tools-0.12.0.ebuild:
34 + version bump
35
36 14 Jun 2008; Santiago M. Mola <coldwind@g.o>
37 scummvm-tools-0.11.0.ebuild:
38
39
40
41 1.1 games-engines/scummvm-tools/scummvm-tools-0.12.0.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/scummvm-tools/scummvm-tools-0.12.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/scummvm-tools/scummvm-tools-0.12.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: scummvm-tools-0.12.0.ebuild
47 ===================================================================
48 # Copyright 1999-2008 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-0.12.0.ebuild,v 1.1 2008/09/01 19:01:12 mr_bones_ Exp $
51
52 inherit toolchain-funcs games
53
54 DESCRIPTION="utilities for the SCUMM game engine"
55 HOMEPAGE="http://scummvm.sourceforge.net/"
56 SRC_URI="mirror://sourceforge/scummvm/${P}.tar.bz2"
57
58 LICENSE="GPL-2"
59 SLOT="0"
60 KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
61 IUSE=""
62
63 DEPEND="media-libs/libpng
64 x11-libs/wxGTK"
65
66 src_unpack() {
67 unpack ${A}
68 cd "${S}"
69 rm -f *.bat
70 }
71
72 src_compile() {
73 emake \
74 CC=$(tc-getCC) \
75 CXX=$(tc-getCXX) \
76 CFLAGS="${CFLAGS} -DUNIX" \
77 || die "emake 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
86 prepgamesdirs
87 }