Gentoo Archives: gentoo-commits

From: "Alexey Shvetsov (alexxy)" <alexxy@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in kde-base/kwin: ChangeLog kwin-4.7.1.ebuild
Date: Wed, 07 Sep 2011 20:30:00
Message-Id: 20110907201356.2E1F02006A@flycatcher.gentoo.org
1 alexxy 11/09/07 20:13:56
2
3 Modified: ChangeLog
4 Added: kwin-4.7.1.ebuild
5 Log:
6 [kde-base] Add KDE SC 4.7.1
7
8 (Portage version: 2.2.0_alpha54/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.241 kde-base/kwin/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kwin/ChangeLog?rev=1.241&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kwin/ChangeLog?rev=1.241&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kwin/ChangeLog?r1=1.240&r2=1.241
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/kde-base/kwin/ChangeLog,v
20 retrieving revision 1.240
21 retrieving revision 1.241
22 diff -u -r1.240 -r1.241
23 --- ChangeLog 5 Sep 2011 22:18:32 -0000 1.240
24 +++ ChangeLog 7 Sep 2011 20:13:56 -0000 1.241
25 @@ -1,6 +1,11 @@
26 # ChangeLog for kde-base/kwin
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/kde-base/kwin/ChangeLog,v 1.240 2011/09/05 22:18:32 dilfridge Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/kde-base/kwin/ChangeLog,v 1.241 2011/09/07 20:13:56 alexxy Exp $
30 +
31 +*kwin-4.7.1 (07 Sep 2011)
32 +
33 + 07 Sep 2011; Alexey Shvetsov <alexxy@g.o> +kwin-4.7.1.ebuild:
34 + Version bump KDE SC 4.7.1
35
36 *kwin-4.6.5-r1 (05 Sep 2011)
37
38
39
40
41 1.1 kde-base/kwin/kwin-4.7.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kwin/kwin-4.7.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kwin/kwin-4.7.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: kwin-4.7.1.ebuild
47 ===================================================================
48 # Copyright 1999-2011 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/kde-base/kwin/kwin-4.7.1.ebuild,v 1.1 2011/09/07 20:13:56 alexxy Exp $
51
52 EAPI=4
53
54 KMNAME="kde-workspace"
55 OPENGL_REQUIRED="optional"
56 inherit kde4-meta
57
58 DESCRIPTION="KDE window manager"
59 KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
60 IUSE="debug gles xinerama"
61
62 COMMONDEPEND="
63 $(add_kdebase_dep kephal)
64 $(add_kdebase_dep libkworkspace)
65 $(add_kdebase_dep liboxygenstyle)
66 x11-libs/libXcomposite
67 x11-libs/libXdamage
68 x11-libs/libXfixes
69 >=x11-libs/libXrandr-1.2.1
70 x11-libs/libXrender
71 opengl? ( >=media-libs/mesa-7.10 )
72 gles? ( >=media-libs/mesa-7.10[egl(+),gles] )
73 xinerama? ( x11-libs/libXinerama )
74 "
75 DEPEND="${COMMONDEPEND}
76 x11-proto/compositeproto
77 x11-proto/damageproto
78 x11-proto/fixesproto
79 x11-proto/randrproto
80 x11-proto/renderproto
81 xinerama? ( x11-proto/xineramaproto )
82 "
83 RDEPEND="${COMMONDEPEND}
84 x11-apps/scripts
85 "
86
87 KMEXTRACTONLY="
88 ksmserver/
89 libs/kephal/
90 libs/oxygen/
91 "
92
93 PATCHES=(
94 "${FILESDIR}/${PN}-4.4.2-xinerama_cmake_automagic.patch"
95 )
96
97 # you can use just gles or opengl or none
98 REQUIRED_USE="opengl? ( !gles ) gles? ( !opengl )"
99
100 src_configure() {
101 # FIXME Remove when activity API moved away from libkworkspace
102 append-cppflags "-I${EPREFIX}/usr/include/kworkspace"
103
104 mycmakeargs=(
105 $(cmake-utils_use_with gles OpenGLES)
106 $(cmake-utils_use gles KWIN_BUILD_WITH_OPENGLES)
107 $(cmake-utils_use_with opengl OpenGL)
108 $(cmake-utils_use_with xinerama X11_Xinerama)
109 -DWITH_X11_Xcomposite=ON
110 )
111
112 kde4-meta_src_configure
113 }