Gentoo Archives: gentoo-commits

From: "Johannes Huber (johu)" <johu@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in kde-base/kwin: ChangeLog kwin-4.11.9.ebuild
Date: Tue, 29 Apr 2014 18:53:25
Message-Id: 20140429185308.7C8392004C@flycatcher.gentoo.org
1 johu 14/04/29 18:53:08
2
3 Modified: ChangeLog
4 Added: kwin-4.11.9.ebuild
5 Log:
6 Version bump KDE Workspace 4.11.9
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key F3CFD2BD)
9
10 Revision Changes Path
11 1.379 kde-base/kwin/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kwin/ChangeLog?rev=1.379&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kwin/ChangeLog?rev=1.379&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kwin/ChangeLog?r1=1.378&r2=1.379
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/kde-base/kwin/ChangeLog,v
20 retrieving revision 1.378
21 retrieving revision 1.379
22 diff -u -r1.378 -r1.379
23 --- ChangeLog 1 Apr 2014 18:24:13 -0000 1.378
24 +++ ChangeLog 29 Apr 2014 18:53:08 -0000 1.379
25 @@ -1,6 +1,11 @@
26 # ChangeLog for kde-base/kwin
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/kde-base/kwin/ChangeLog,v 1.378 2014/04/01 18:24:13 johu Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/kde-base/kwin/ChangeLog,v 1.379 2014/04/29 18:53:08 johu Exp $
30 +
31 +*kwin-4.11.9 (29 Apr 2014)
32 +
33 + 29 Apr 2014; Johannes Huber <johu@g.o> +kwin-4.11.9.ebuild:
34 + Version bump KDE Workspace 4.11.9
35
36 *kwin-4.11.8 (01 Apr 2014)
37
38
39
40
41 1.1 kde-base/kwin/kwin-4.11.9.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kwin/kwin-4.11.9.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kwin/kwin-4.11.9.ebuild?rev=1.1&content-type=text/plain
45
46 Index: kwin-4.11.9.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/kde-base/kwin/kwin-4.11.9.ebuild,v 1.1 2014/04/29 18:53:08 johu Exp $
51
52 EAPI=5
53
54 KMNAME="kde-workspace"
55 DECLARATIVE_REQUIRED="always"
56 OPENGL_REQUIRED="always"
57
58 #VIRTUALX_REQUIRED=test
59 RESTRICT=test
60 # test 8: kwin-TestVirtualDesktops hangs even with virtualx
61
62 inherit flag-o-matic kde4-meta
63
64 DESCRIPTION="KDE window manager"
65 HOMEPAGE+=" http://userbase.kde.org/KWin"
66 KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
67 IUSE="debug gles opengl wayland"
68
69 COMMONDEPEND="
70 $(add_kdebase_dep kactivities)
71 $(add_kdebase_dep kdelibs opengl)
72 $(add_kdebase_dep kephal)
73 $(add_kdebase_dep libkworkspace)
74 $(add_kdebase_dep liboxygenstyle)
75 x11-libs/libICE
76 x11-libs/libSM
77 x11-libs/libX11
78 x11-libs/libxcb
79 x11-libs/xcb-util-image
80 x11-libs/xcb-util-keysyms
81 x11-libs/libXcomposite
82 x11-libs/libXcursor
83 x11-libs/libXdamage
84 x11-libs/libXext
85 x11-libs/libXfixes
86 >=x11-libs/libXrandr-1.2.1
87 x11-libs/libXrender
88 x11-libs/libXxf86vm
89 opengl? ( >=media-libs/mesa-7.10 )
90 gles? ( >=media-libs/mesa-7.12[egl(+),gles2] )
91 wayland? ( >=media-libs/mesa-9.0[egl(+),wayland] )
92 "
93 DEPEND="${COMMONDEPEND}
94 x11-libs/xcb-util-renderutil
95 x11-proto/compositeproto
96 x11-proto/damageproto
97 x11-proto/fixesproto
98 x11-proto/randrproto
99 x11-proto/renderproto
100 "
101 RDEPEND="${COMMONDEPEND}
102 x11-apps/scripts
103 "
104
105 KMEXTRACTONLY="
106 ksmserver/
107 libs/kephal/
108 libs/oxygen/
109 "
110
111 # you need one of these
112 REQUIRED_USE="!opengl? ( gles ) !gles? ( opengl ) wayland? ( gles )"
113
114 src_configure() {
115 # FIXME Remove when activity API moved away from libkworkspace
116 append-cppflags "-I${EPREFIX}/usr/include/kworkspace"
117
118 mycmakeargs=(
119 $(cmake-utils_use_with gles OpenGLES)
120 $(cmake-utils_use gles KWIN_BUILD_WITH_OPENGLES)
121 $(cmake-utils_use_with opengl OpenGL)
122 $(cmake-utils_use_with wayland Wayland)
123 -DWITH_X11_Xcomposite=ON
124 )
125
126 kde4-meta_src_configure
127 }