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 media-libs/glfw: glfw-3.0.4.ebuild ChangeLog
Date: Fri, 29 Aug 2014 19:52:29
Message-Id: 20140829195226.90FAA4317@oystercatcher.gentoo.org
1 mr_bones_ 14/08/29 19:52:26
2
3 Modified: ChangeLog
4 Added: glfw-3.0.4.ebuild
5 Log:
6 version bump
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.20 media-libs/glfw/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/glfw/ChangeLog?rev=1.20&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/glfw/ChangeLog?rev=1.20&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/glfw/ChangeLog?r1=1.19&r2=1.20
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-libs/glfw/ChangeLog,v
20 retrieving revision 1.19
21 retrieving revision 1.20
22 diff -u -r1.19 -r1.20
23 --- ChangeLog 29 Aug 2014 19:17:03 -0000 1.19
24 +++ ChangeLog 29 Aug 2014 19:52:26 -0000 1.20
25 @@ -1,6 +1,11 @@
26 # ChangeLog for media-libs/glfw
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-libs/glfw/ChangeLog,v 1.19 2014/08/29 19:17:03 mr_bones_ Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-libs/glfw/ChangeLog,v 1.20 2014/08/29 19:52:26 mr_bones_ Exp $
30 +
31 +*glfw-3.0.4 (29 Aug 2014)
32 +
33 + 29 Aug 2014; Michael Sterrett <mr_bones_@g.o> +glfw-3.0.4.ebuild:
34 + version bump
35
36 29 Aug 2014; Michael Sterrett <mr_bones_@g.o> glfw-2.6.ebuild,
37 glfw-2.7.7.ebuild, glfw-3.0.3.ebuild:
38
39
40
41 1.1 media-libs/glfw/glfw-3.0.4.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/glfw/glfw-3.0.4.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/glfw/glfw-3.0.4.ebuild?rev=1.1&content-type=text/plain
45
46 Index: glfw-3.0.4.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/media-libs/glfw/glfw-3.0.4.ebuild,v 1.1 2014/08/29 19:52:26 mr_bones_ Exp $
51
52 EAPI=5
53 inherit cmake-utils
54
55 DESCRIPTION="The Portable OpenGL FrameWork"
56 HOMEPAGE="http://www.glfw.org/"
57 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
58
59 LICENSE="ZLIB"
60 SLOT="0"
61 KEYWORDS="~amd64 ~x86"
62 IUSE="egl examples"
63
64 RDEPEND="x11-libs/libXrandr
65 x11-libs/libX11
66 x11-libs/libXi
67 x11-libs/libXxf86vm
68 virtual/opengl"
69 DEPEND="${RDEPEND}
70 virtual/glu"
71
72 src_configure() {
73 local mycmakeargs="
74 $(cmake-utils_use egl GLFW_USE_EGL)
75 $(cmake-utils_use examples GLFW_BUILD_EXAMPLES)
76 -DBUILD_SHARED_LIBS=1
77 "
78 cmake-utils_src_configure
79 }