Note: Due to technical difficulties, the Archives are currently not up to date.
GMANE provides an alternative service for most mailing lists. c.f. bug 424647
List Archive: gentoo-commits
kensington 12/06/24 17:13:48
Modified: ChangeLog
Added: gluon-0.71.0.ebuild
Log:
Version bump. Add a patch from upstream to fix build with GCC 4.7, wrt bug #423337.
(Portage version: 2.1.11.1/cvs/Linux x86_64)
Revision Changes Path
1.4 media-libs/gluon/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gluon/ChangeLog?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gluon/ChangeLog?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gluon/ChangeLog?r1=1.3&r2=1.4
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/gluon/ChangeLog,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ChangeLog 28 Oct 2011 23:53:45 -0000 1.3
+++ ChangeLog 24 Jun 2012 17:13:48 -0000 1.4
@@ -1,6 +1,13 @@
# ChangeLog for media-libs/gluon
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/gluon/ChangeLog,v 1.3 2011/10/28 23:53:45 abcd Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-libs/gluon/ChangeLog,v 1.4 2012/06/24 17:13:48 kensington Exp $
+
+*gluon-0.71.0 (24 Jun 2012)
+
+ 24 Jun 2012; Michael Palimaka <kensington@g.o>
+ +files/gluon-0.71.0-gcc-4.7.patch, +gluon-0.71.0.ebuild:
+ Version bump. Add a patch from upstream to fix build with GCC 4.7, wrt bug
+ #423337.
28 Oct 2011; Jonathan Callen <abcd@g.o> gluon-0.70.0.ebuild:
Bump to EAPI=4
@@ -13,4 +20,3 @@
06 Jun 2010; Jorge Manuel B. S. Vicetto <jmbsvicetto@g.o>
+gluon-0.70.0.ebuild, +metadata.xml:
[media-libs/gluon] Initial import to the tree of the first alpha release.
-
1.1 media-libs/gluon/gluon-0.71.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gluon/gluon-0.71.0.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gluon/gluon-0.71.0.ebuild?rev=1.1&content-type=text/plain
Index: gluon-0.71.0.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/gluon/gluon-0.71.0.ebuild,v 1.1 2012/06/24 17:13:48 kensington Exp $
EAPI=4
OPENGL_REQUIRED="always"
inherit kde4-base versionator
DESCRIPTION="Gluon is a Free and Open Source framework for creating and distributing games."
HOMEPAGE="http://gluon.tuxfamily.org/"
SRC_URI="mirror://kde/unstable/${PN}/$(get_version_component_range 1-2)/src/${P}.tar.gz"
LICENSE="LGPL-2.1"
KEYWORDS="~amd64"
SLOT="4"
IUSE="debug examples"
DEPEND="
media-libs/alure
media-libs/libsndfile
media-libs/openal
virtual/glu
virtual/opengl
x11-libs/qt-declarative:4
"
RDEPEND="${DEPEND}"
PATCHES=( "${FILESDIR}/${P}-gcc-4.7.patch" )
src_configure() {
local mycmakeargs=(
$(cmake-utils_use examples INSTALL_EXAMPLES)
)
kde4-base_src_configure
}
|
|