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-rpg/tmw: ChangeLog tmw-0.5.2.ebuild
Date: Mon, 05 Sep 2011 18:02:51
Message-Id: 20110905180237.7F9192004C@flycatcher.gentoo.org
1 mr_bones_ 11/09/05 18:02:37
2
3 Modified: ChangeLog tmw-0.5.2.ebuild
4 Log:
5 Fails to build without opengl (bug #378191)
6
7 (Portage version: 2.1.10.11/cvs/Linux i686)
8
9 Revision Changes Path
10 1.40 games-rpg/tmw/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-rpg/tmw/ChangeLog?rev=1.40&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-rpg/tmw/ChangeLog?rev=1.40&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-rpg/tmw/ChangeLog?r1=1.39&r2=1.40
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/games-rpg/tmw/ChangeLog,v
19 retrieving revision 1.39
20 retrieving revision 1.40
21 diff -u -r1.39 -r1.40
22 --- ChangeLog 2 Aug 2011 11:56:25 -0000 1.39
23 +++ ChangeLog 5 Sep 2011 18:02:37 -0000 1.40
24 @@ -1,6 +1,9 @@
25 # ChangeLog for games-rpg/tmw
26 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/games-rpg/tmw/ChangeLog,v 1.39 2011/08/02 11:56:25 tupone Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/games-rpg/tmw/ChangeLog,v 1.40 2011/09/05 18:02:37 mr_bones_ Exp $
29 +
30 + 05 Sep 2011; Michael Sterrett <mr_bones_@g.o> tmw-0.5.2.ebuild:
31 + Fails to build without opengl (bug #378191)
32
33 *tmw-0.5.2 (02 Aug 2011)
34
35
36
37
38 1.2 games-rpg/tmw/tmw-0.5.2.ebuild
39
40 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-rpg/tmw/tmw-0.5.2.ebuild?rev=1.2&view=markup
41 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-rpg/tmw/tmw-0.5.2.ebuild?rev=1.2&content-type=text/plain
42 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-rpg/tmw/tmw-0.5.2.ebuild?r1=1.1&r2=1.2
43
44 Index: tmw-0.5.2.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/games-rpg/tmw/tmw-0.5.2.ebuild,v
47 retrieving revision 1.1
48 retrieving revision 1.2
49 diff -u -r1.1 -r1.2
50 --- tmw-0.5.2.ebuild 2 Aug 2011 11:56:25 -0000 1.1
51 +++ tmw-0.5.2.ebuild 5 Sep 2011 18:02:37 -0000 1.2
52 @@ -1,9 +1,9 @@
53 # Copyright 1999-2011 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/games-rpg/tmw/tmw-0.5.2.ebuild,v 1.1 2011/08/02 11:56:25 tupone Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/games-rpg/tmw/tmw-0.5.2.ebuild,v 1.2 2011/09/05 18:02:37 mr_bones_ Exp $
57
58 EAPI=2
59 -inherit eutils games cmake-utils
60 +inherit eutils cmake-utils games
61
62 MUSIC=tmwmusic-0.3
63
64 @@ -15,7 +15,7 @@
65 LICENSE="GPL-2"
66 SLOT="0"
67 KEYWORDS="~amd64 ~ppc ~x86"
68 -IUSE="nls opengl"
69 +IUSE="nls"
70
71 RDEPEND=">=dev-games/physfs-1.0.0
72 dev-libs/libxml2
73 @@ -28,11 +28,11 @@
74 media-libs/libpng
75 media-fonts/dejavu
76 >=dev-games/guichan-0.8.1[sdl]
77 - media-libs/libsdl
78 + media-libs/libsdl[opengl,video]
79 media-libs/sdl-gfx
80 x11-libs/libX11
81 nls? ( virtual/libintl )
82 - opengl? ( virtual/opengl )"
83 + virtual/opengl"
84 DEPEND="${RDEPEND}
85 dev-util/pkgconfig
86 nls? ( sys-devel/gettext )"
87 @@ -57,7 +57,7 @@
88
89 src_configure() {
90 mycmakeargs=(
91 - $(cmake-utils_use_with opengl)
92 + -DWITH_OPENGL=ON
93 $(cmake-utils_use_enable nls)
94 )
95 cmake-utils_src_configure