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