Gentoo Archives: gentoo-commits

From: "Tomas Chvatal (scarabeus)" <scarabeus@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in kde-base/kwin: ChangeLog kwin-4.3.5-r1.ebuild kwin-4.3.5.ebuild
Date: Wed, 03 Feb 2010 20:32:54
Message-Id: E1Nclu7-0000ft-Lm@stork.gentoo.org
1 scarabeus 10/02/03 20:32:51
2
3 Modified: ChangeLog
4 Added: kwin-4.3.5-r1.ebuild
5 Removed: kwin-4.3.5.ebuild
6 Log:
7 Fix bug #295511. This time proper package.
8 (Portage version: 2.2_rc62/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.187 kde-base/kwin/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/kwin/ChangeLog?rev=1.187&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/kwin/ChangeLog?rev=1.187&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/kwin/ChangeLog?r1=1.186&r2=1.187
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/kde-base/kwin/ChangeLog,v
20 retrieving revision 1.186
21 retrieving revision 1.187
22 diff -u -r1.186 -r1.187
23 --- ChangeLog 28 Jan 2010 11:28:27 -0000 1.186
24 +++ ChangeLog 3 Feb 2010 20:32:51 -0000 1.187
25 @@ -1,6 +1,13 @@
26 # ChangeLog for kde-base/kwin
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/kde-base/kwin/ChangeLog,v 1.186 2010/01/28 11:28:27 scarabeus Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/kde-base/kwin/ChangeLog,v 1.187 2010/02/03 20:32:51 scarabeus Exp $
30 +
31 +*kwin-4.3.5-r1 (03 Feb 2010)
32 +
33 + 03 Feb 2010; Tomáš Chvátal <scarabeus@g.o>
34 + +files/4.3.5-magiclamp-minimize.patch, -kwin-4.3.5.ebuild,
35 + +kwin-4.3.5-r1.ebuild:
36 + Fix bug #295511. This time proper package.
37
38 28 Jan 2010; Tomáš Chvátal <scarabeus@g.o> kwin-4.3.5.ebuild:
39 Kwin needs opengl patch even for 4.3.5. Per bug #302548
40
41
42
43 1.1 kde-base/kwin/kwin-4.3.5-r1.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/kwin/kwin-4.3.5-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/kwin/kwin-4.3.5-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: kwin-4.3.5-r1.ebuild
49 ===================================================================
50 # Copyright 1999-2010 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/kde-base/kwin/kwin-4.3.5-r1.ebuild,v 1.1 2010/02/03 20:32:51 scarabeus Exp $
53
54 EAPI="2"
55
56 KMNAME="kdebase-workspace"
57 OPENGL_REQUIRED="optional"
58 inherit kde4-meta
59
60 DESCRIPTION="KDE window manager"
61 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
62 IUSE="debug xcomposite xinerama"
63
64 # NOTE disabled for now: captury? ( media-libs/libcaptury )
65 COMMONDEPEND="
66 $(add_kdebase_dep kephal)
67 $(add_kdebase_dep libkworkspace)
68 x11-libs/libXdamage
69 x11-libs/libXfixes
70 >=x11-libs/libXrandr-1.2.1
71 x11-libs/libXrender
72 opengl? ( virtual/opengl )
73 xcomposite? ( x11-libs/libXcomposite )
74 xinerama? ( x11-libs/libXinerama )
75 "
76 DEPEND="${COMMONDEPEND}
77 x11-proto/damageproto
78 x11-proto/fixesproto
79 x11-proto/randrproto
80 x11-proto/renderproto
81 xcomposite? ( x11-proto/compositeproto )
82 xinerama? ( x11-proto/xineramaproto )
83 "
84 RDEPEND="${COMMONDEPEND}"
85
86 PATCHES=(
87 "${FILESDIR}/4.3.3-fix_no_opengl.patch"
88 "${FILESDIR}/${PV}-magiclamp-minimize.patch"
89 )
90
91 src_prepare() {
92 # NOTE uncomment when enabled again by upstream
93 # if ! use captury; then
94 # sed -e 's:^PKGCONFIG..libcaptury:#DONOTFIND &:' \
95 # -i kwin/effects/CMakeLists.txt || \
96 # die "Making captury optional failed."
97 # fi
98
99 kde4-meta_src_prepare
100 }
101
102 src_configure() {
103 mycmakeargs=(
104 $(cmake-utils_use_with opengl OpenGL)
105 )
106
107 kde4-meta_src_configure
108 }