diff options
author | Alexey Shvetsov <alexxy@gentoo.org> | 2010-06-30 15:37:09 +0000 |
---|---|---|
committer | Alexey Shvetsov <alexxy@gentoo.org> | 2010-06-30 15:37:09 +0000 |
commit | 588eb8e56926b65029e4de63aa398e51ed8cc9b8 (patch) | |
tree | 356a5e95843b62ad54fc9c77facba6ff67c4db94 /kde-base/kwin | |
parent | x86 stable, bug 323729 (diff) | |
download | gentoo-2-588eb8e56926b65029e4de63aa398e51ed8cc9b8.tar.gz gentoo-2-588eb8e56926b65029e4de63aa398e51ed8cc9b8.tar.bz2 gentoo-2-588eb8e56926b65029e4de63aa398e51ed8cc9b8.zip |
[kde-base] Bump KDE SC 4.4.5 =)
(Portage version: 2.2_rc67_p182/cvs/Linux x86_64)
Diffstat (limited to 'kde-base/kwin')
-rw-r--r-- | kde-base/kwin/ChangeLog | 7 | ||||
-rw-r--r-- | kde-base/kwin/kwin-4.4.5.ebuild | 59 |
2 files changed, 65 insertions, 1 deletions
diff --git a/kde-base/kwin/ChangeLog b/kde-base/kwin/ChangeLog index 9db2c3bcbaae..232d18100eae 100644 --- a/kde-base/kwin/ChangeLog +++ b/kde-base/kwin/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for kde-base/kwin # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/kde-base/kwin/ChangeLog,v 1.200 2010/06/28 00:21:25 fauli Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-base/kwin/ChangeLog,v 1.201 2010/06/30 15:36:29 alexxy Exp $ + +*kwin-4.4.5 (30 Jun 2010) + + 30 Jun 2010; Alexey Shvetsov <alexxy@gentoo.org> +kwin-4.4.5.ebuild: + Version bump 28 Jun 2010; Christian Faulhammer <fauli@gentoo.org> kwin-4.4.4.ebuild: x86 stable, bug 322791 diff --git a/kde-base/kwin/kwin-4.4.5.ebuild b/kde-base/kwin/kwin-4.4.5.ebuild new file mode 100644 index 000000000000..53f85a858ed8 --- /dev/null +++ b/kde-base/kwin/kwin-4.4.5.ebuild @@ -0,0 +1,59 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/kde-base/kwin/kwin-4.4.5.ebuild,v 1.1 2010/06/30 15:36:29 alexxy Exp $ + +EAPI="3" + +KMNAME="kdebase-workspace" +OPENGL_REQUIRED="optional" +inherit kde4-meta + +DESCRIPTION="KDE window manager" +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux" +IUSE="debug xcomposite xinerama" + +# NOTE disabled for now: captury? ( media-libs/libcaptury ) +COMMONDEPEND=" + $(add_kdebase_dep kephal) + $(add_kdebase_dep libkworkspace) + x11-libs/libXdamage + x11-libs/libXfixes + >=x11-libs/libXrandr-1.2.1 + x11-libs/libXrender + opengl? ( virtual/opengl ) + xcomposite? ( x11-libs/libXcomposite ) + xinerama? ( x11-libs/libXinerama ) +" +DEPEND="${COMMONDEPEND} + x11-proto/damageproto + x11-proto/fixesproto + x11-proto/randrproto + x11-proto/renderproto + xcomposite? ( x11-proto/compositeproto ) + xinerama? ( x11-proto/xineramaproto ) +" +RDEPEND="${COMMONDEPEND}" + +PATCHES=( + "${FILESDIR}/${PN}-4.4.2-xinerama_cmake_automagic.patch" +) + +src_prepare() { +# NOTE uncomment when enabled again by upstream +# if ! use captury; then +# sed -e 's:^PKGCONFIG..libcaptury:#DONOTFIND &:' \ +# -i kwin/effects/CMakeLists.txt || \ +# die "Making captury optional failed." +# fi + + kde4-meta_src_prepare +} + +src_configure() { + mycmakeargs=( + $(cmake-utils_use_with opengl OpenGL) + $(cmake-utils_use_with xinerama X11_Xinerama) + ) + + kde4-meta_src_configure +} |