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.3.0.ebuild
Date: Wed, 01 Jun 2011 06:06:16
Message-Id: 20110601060603.A0F9920054@flycatcher.gentoo.org
1 mr_bones_ 11/06/01 06:06:03
2
3 Modified: ChangeLog
4 Added: scummvm-tools-1.3.0.ebuild
5 Log:
6 version bump
7
8 (Portage version: 2.1.9.42/cvs/Linux i686)
9
10 Revision Changes Path
11 1.46 games-engines/scummvm-tools/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-engines/scummvm-tools/ChangeLog?rev=1.46&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-engines/scummvm-tools/ChangeLog?rev=1.46&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-engines/scummvm-tools/ChangeLog?r1=1.45&r2=1.46
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/games-engines/scummvm-tools/ChangeLog,v
20 retrieving revision 1.45
21 retrieving revision 1.46
22 diff -u -r1.45 -r1.46
23 --- ChangeLog 13 Feb 2011 12:33:29 -0000 1.45
24 +++ ChangeLog 1 Jun 2011 06:06:03 -0000 1.46
25 @@ -1,6 +1,12 @@
26 # ChangeLog for games-engines/scummvm-tools
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm-tools/ChangeLog,v 1.45 2011/02/13 12:33:29 armin76 Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm-tools/ChangeLog,v 1.46 2011/06/01 06:06:03 mr_bones_ Exp $
30 +
31 +*scummvm-tools-1.3.0 (01 Jun 2011)
32 +
33 + 01 Jun 2011; Michael Sterrett <mr_bones_@g.o>
34 + +scummvm-tools-1.3.0.ebuild:
35 + version bump
36
37 13 Feb 2011; Raúl Porcel <armin76@g.o> scummvm-tools-1.2.0.ebuild:
38 Drop sparc keywords
39
40
41
42 1.1 games-engines/scummvm-tools/scummvm-tools-1.3.0.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-engines/scummvm-tools/scummvm-tools-1.3.0.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-engines/scummvm-tools/scummvm-tools-1.3.0.ebuild?rev=1.1&content-type=text/plain
46
47 Index: scummvm-tools-1.3.0.ebuild
48 ===================================================================
49 # Copyright 1999-2011 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm-tools/scummvm-tools-1.3.0.ebuild,v 1.1 2011/06/01 06:06:03 mr_bones_ Exp $
52
53 EAPI=2
54 WX_GTK_VER=2.8
55 inherit wxwidgets games
56
57 DESCRIPTION="utilities for the SCUMM game engine"
58 HOMEPAGE="http://scummvm.sourceforge.net/"
59 SRC_URI="mirror://sourceforge/scummvm/${P/_/}.tar.bz2"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd"
64 IUSE="flac iconv mad png vorbis"
65
66 RDEPEND="png? ( media-libs/libpng )
67 mad? ( media-libs/libmad )
68 flac? ( media-libs/flac )
69 vorbis? ( media-libs/libvorbis )
70 iconv? ( virtual/libiconv media-libs/freetype:2 )
71 sys-libs/zlib
72 x11-libs/wxGTK:2.8"
73 DEPEND="${RDEPEND}
74 dev-util/pkgconfig"
75
76 S=${WORKDIR}/${P/_/}
77
78 src_prepare() {
79 rm -f *.bat
80 sed -ri \
81 -e '/^(CC|CXX)\b/d' \
82 Makefile \
83 || die "sed failed"
84 }
85
86 src_configure() {
87 # Not an autoconf script
88 ./configure \
89 --enable-verbose-build \
90 --mandir=/usr/share/man \
91 --prefix=/usr/games \
92 --libdir=/usr/games/lib \
93 $(use_enable flac) \
94 $(use_enable iconv) \
95 $(use_enable iconv freetype) \
96 $(use_enable mad) \
97 $(use_enable png) \
98 $(use_enable vorbis) \
99 || die
100 }
101
102 src_install() {
103 local f
104 for f in $(find . -type f -perm +1 -print); do
105 newgamesbin $f ${PN}-${f##*/} || die "newgamesbin $f failed"
106 done
107 dodoc README TODO
108 prepgamesdirs
109 }