diff options
author | Alexey Shvetsov <alexxy@gentoo.org> | 2012-12-05 16:58:30 +0000 |
---|---|---|
committer | Alexey Shvetsov <alexxy@gentoo.org> | 2012-12-05 16:58:30 +0000 |
commit | b9d227823671a4217d7d0f9e194c5108eacc548e (patch) | |
tree | 8d57d37d8c5552901a88ade2d47df6941892d5aa /kde-base/kwin | |
parent | Stable for HPPA (bug #444546). (diff) | |
download | gentoo-2-b9d227823671a4217d7d0f9e194c5108eacc548e.tar.gz gentoo-2-b9d227823671a4217d7d0f9e194c5108eacc548e.tar.bz2 gentoo-2-b9d227823671a4217d7d0f9e194c5108eacc548e.zip |
[kde-base] Add KDE SC 4.9.4
(Portage version: 2.2.0_alpha144/cvs/Linux x86_64, signed Manifest commit with key F82F92E6)
Diffstat (limited to 'kde-base/kwin')
-rw-r--r-- | kde-base/kwin/ChangeLog | 7 | ||||
-rw-r--r-- | kde-base/kwin/kwin-4.9.4.ebuild | 64 |
2 files changed, 70 insertions, 1 deletions
diff --git a/kde-base/kwin/ChangeLog b/kde-base/kwin/ChangeLog index fae9d19261d0..5846b86c0d2a 100644 --- a/kde-base/kwin/ChangeLog +++ b/kde-base/kwin/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for kde-base/kwin # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/kde-base/kwin/ChangeLog,v 1.301 2012/11/30 16:31:12 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-base/kwin/ChangeLog,v 1.302 2012/12/05 16:58:07 alexxy Exp $ + +*kwin-4.9.4 (05 Dec 2012) + + 05 Dec 2012; Alexey Shvetsov <alexxy@gentoo.org> +kwin-4.9.4.ebuild: + Version bump KDE SC 4.9.4 30 Nov 2012; <ago@gentoo.org> kwin-4.9.3.ebuild: Stable for ppc, wrt bug #442394 diff --git a/kde-base/kwin/kwin-4.9.4.ebuild b/kde-base/kwin/kwin-4.9.4.ebuild new file mode 100644 index 000000000000..a02a131fd173 --- /dev/null +++ b/kde-base/kwin/kwin-4.9.4.ebuild @@ -0,0 +1,64 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/kde-base/kwin/kwin-4.9.4.ebuild,v 1.1 2012/12/05 16:58:07 alexxy Exp $ + +EAPI=4 + +KMNAME="kde-workspace" +OPENGL_REQUIRED="always" +inherit flag-o-matic kde4-meta + +DESCRIPTION="KDE window manager" +KEYWORDS="~amd64 ~arm ~ppc ~x86 ~amd64-linux ~x86-linux" +IUSE="debug gles opengl" + +COMMONDEPEND=" + $(add_kdebase_dep kactivities) + $(add_kdebase_dep kdelibs opengl) + $(add_kdebase_dep kephal) + $(add_kdebase_dep libkworkspace) + $(add_kdebase_dep liboxygenstyle) + x11-libs/libXcomposite + x11-libs/libXdamage + x11-libs/libXfixes + >=x11-libs/libXrandr-1.2.1 + x11-libs/libXrender + opengl? ( >=media-libs/mesa-7.10 ) + gles? ( + || ( ( >=media-libs/mesa-7.10[egl(+),gles] <media-libs/mesa-7.12[egl(+),gles] ) + >=media-libs/mesa-7.12[egl(+),gles2] ) + ) +" +DEPEND="${COMMONDEPEND} + x11-proto/compositeproto + x11-proto/damageproto + x11-proto/fixesproto + x11-proto/randrproto + x11-proto/renderproto +" +RDEPEND="${COMMONDEPEND} + x11-apps/scripts +" + +KMEXTRACTONLY=" + ksmserver/ + libs/kephal/ + libs/oxygen/ +" + +# you need one of these +REQUIRED_USE="!opengl? ( gles ) !gles? ( opengl )" + +src_configure() { + # FIXME Remove when activity API moved away from libkworkspace + append-cppflags "-I${EPREFIX}/usr/include/kworkspace" + + mycmakeargs=( + $(cmake-utils_use_with gles OpenGLES) + $(cmake-utils_use gles KWIN_BUILD_WITH_OPENGLES) + $(cmake-utils_use_with opengl OpenGL) + -DWITH_X11_Xcomposite=ON + ) + + kde4-meta_src_configure +} |