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.1.0.ebuild
Date: Mon, 05 Apr 2010 23:08:39
Message-Id: 20100405230836.12D6B2C04A@corvid.gentoo.org
1 mr_bones_ 10/04/05 23:08:35
2
3 Modified: ChangeLog
4 Added: scummvm-tools-1.1.0.ebuild
5 Log:
6 version bump
7 (Portage version: 2.1.7.17/cvs/Linux i686)
8
9 Revision Changes Path
10 1.36 games-engines/scummvm-tools/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/scummvm-tools/ChangeLog?rev=1.36&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/scummvm-tools/ChangeLog?rev=1.36&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/scummvm-tools/ChangeLog?r1=1.35&r2=1.36
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/games-engines/scummvm-tools/ChangeLog,v
19 retrieving revision 1.35
20 retrieving revision 1.36
21 diff -u -r1.35 -r1.36
22 --- ChangeLog 30 Jan 2010 18:11:51 -0000 1.35
23 +++ ChangeLog 5 Apr 2010 23:08:35 -0000 1.36
24 @@ -1,6 +1,12 @@
25 # ChangeLog for games-engines/scummvm-tools
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm-tools/ChangeLog,v 1.35 2010/01/30 18:11:51 armin76 Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm-tools/ChangeLog,v 1.36 2010/04/05 23:08:35 mr_bones_ Exp $
29 +
30 +*scummvm-tools-1.1.0 (05 Apr 2010)
31 +
32 + 05 Apr 2010; Michael Sterrett <mr_bones_@g.o>
33 + +scummvm-tools-1.1.0.ebuild:
34 + version bump
35
36 30 Jan 2010; Raúl Porcel <armin76@g.o> scummvm-tools-1.0.0.ebuild:
37 sparc stable wrt #297264
38
39
40
41 1.1 games-engines/scummvm-tools/scummvm-tools-1.1.0.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/scummvm-tools/scummvm-tools-1.1.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/scummvm-tools/scummvm-tools-1.1.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: scummvm-tools-1.1.0.ebuild
47 ===================================================================
48 # Copyright 1999-2010 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.1.0.ebuild,v 1.1 2010/04/05 23:08:35 mr_bones_ Exp $
51
52 EAPI=2
53 WX_GTK_VER=2.8
54 inherit 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="flac iconv mad png vorbis"
64
65 RDEPEND="png? ( media-libs/libpng )
66 mad? ( media-libs/libmad )
67 flac? ( media-libs/flac )
68 vorbis? ( media-libs/libvorbis )
69 iconv? ( virtual/libiconv media-libs/freetype:2 )
70 sys-libs/zlib
71 x11-libs/wxGTK:2.8"
72 DEPEND="${RDEPEND}
73 dev-util/pkgconfig"
74
75 S=${WORKDIR}/${P/_/}
76
77 src_prepare() {
78 rm -f *.bat
79 sed -ri \
80 -e '/^(CC|CXX)\b/d' \
81 Makefile \
82 || die "sed failed"
83 }
84
85 src_configure() {
86 # Not an autoconf script
87 ./configure \
88 --enable-verbose-build \
89 --mandir=/usr/share/man \
90 --prefix=/usr/games \
91 --libdir=/usr/games/lib \
92 $(use_enable flac) \
93 $(use_enable iconv) \
94 $(use_enable iconv freetype) \
95 $(use_enable mad) \
96 $(use_enable png) \
97 $(use_enable vorbis) \
98 || die
99 }
100
101 src_install() {
102 local f
103 for f in $(find . -type f -perm +1 -print); do
104 newgamesbin $f ${PN}-${f##*/} || die "newgamesbin $f failed"
105 done
106 dodoc README TODO
107 prepgamesdirs
108 }