Gentoo Archives: gentoo-commits

From: "Michael Palimaka (kensington)" <kensington@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/gluon: gluon-0.71.0.ebuild ChangeLog
Date: Sun, 24 Jun 2012 17:13:58
Message-Id: 20120624171348.739E12004B@flycatcher.gentoo.org
1 kensington 12/06/24 17:13:48
2
3 Modified: ChangeLog
4 Added: gluon-0.71.0.ebuild
5 Log:
6 Version bump. Add a patch from upstream to fix build with GCC 4.7, wrt bug #423337.
7
8 (Portage version: 2.1.11.1/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.4 media-libs/gluon/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gluon/ChangeLog?rev=1.4&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gluon/ChangeLog?rev=1.4&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gluon/ChangeLog?r1=1.3&r2=1.4
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-libs/gluon/ChangeLog,v
20 retrieving revision 1.3
21 retrieving revision 1.4
22 diff -u -r1.3 -r1.4
23 --- ChangeLog 28 Oct 2011 23:53:45 -0000 1.3
24 +++ ChangeLog 24 Jun 2012 17:13:48 -0000 1.4
25 @@ -1,6 +1,13 @@
26 # ChangeLog for media-libs/gluon
27 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-libs/gluon/ChangeLog,v 1.3 2011/10/28 23:53:45 abcd Exp $
29 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/media-libs/gluon/ChangeLog,v 1.4 2012/06/24 17:13:48 kensington Exp $
31 +
32 +*gluon-0.71.0 (24 Jun 2012)
33 +
34 + 24 Jun 2012; Michael Palimaka <kensington@g.o>
35 + +files/gluon-0.71.0-gcc-4.7.patch, +gluon-0.71.0.ebuild:
36 + Version bump. Add a patch from upstream to fix build with GCC 4.7, wrt bug
37 + #423337.
38
39 28 Oct 2011; Jonathan Callen <abcd@g.o> gluon-0.70.0.ebuild:
40 Bump to EAPI=4
41 @@ -13,4 +20,3 @@
42 06 Jun 2010; Jorge Manuel B. S. Vicetto <jmbsvicetto@g.o>
43 +gluon-0.70.0.ebuild, +metadata.xml:
44 [media-libs/gluon] Initial import to the tree of the first alpha release.
45 -
46
47
48
49 1.1 media-libs/gluon/gluon-0.71.0.ebuild
50
51 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gluon/gluon-0.71.0.ebuild?rev=1.1&view=markup
52 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gluon/gluon-0.71.0.ebuild?rev=1.1&content-type=text/plain
53
54 Index: gluon-0.71.0.ebuild
55 ===================================================================
56 # Copyright 1999-2012 Gentoo Foundation
57 # Distributed under the terms of the GNU General Public License v2
58 # $Header: /var/cvsroot/gentoo-x86/media-libs/gluon/gluon-0.71.0.ebuild,v 1.1 2012/06/24 17:13:48 kensington Exp $
59
60 EAPI=4
61
62 OPENGL_REQUIRED="always"
63 inherit kde4-base versionator
64
65 DESCRIPTION="Gluon is a Free and Open Source framework for creating and distributing games."
66 HOMEPAGE="http://gluon.tuxfamily.org/"
67 SRC_URI="mirror://kde/unstable/${PN}/$(get_version_component_range 1-2)/src/${P}.tar.gz"
68
69 LICENSE="LGPL-2.1"
70 KEYWORDS="~amd64"
71 SLOT="4"
72 IUSE="debug examples"
73
74 DEPEND="
75 media-libs/alure
76 media-libs/libsndfile
77 media-libs/openal
78 virtual/glu
79 virtual/opengl
80 x11-libs/qt-declarative:4
81 "
82 RDEPEND="${DEPEND}"
83
84 PATCHES=( "${FILESDIR}/${P}-gcc-4.7.patch" )
85
86 src_configure() {
87 local mycmakeargs=(
88 $(cmake-utils_use examples INSTALL_EXAMPLES)
89 )
90
91 kde4-base_src_configure
92 }