diff options
author | Alexey Shvetsov <alexxy@gentoo.org> | 2009-03-04 22:34:09 +0000 |
---|---|---|
committer | Alexey Shvetsov <alexxy@gentoo.org> | 2009-03-04 22:34:09 +0000 |
commit | 3244d9d697d1b0386c622455b5b069f7105e3662 (patch) | |
tree | 8f1c96bad5182fdbf97b9bdef5b4c1b9674d0af3 /kde-base | |
parent | Bump KDE 4.2.1 (diff) | |
download | gentoo-2-3244d9d697d1b0386c622455b5b069f7105e3662.tar.gz gentoo-2-3244d9d697d1b0386c622455b5b069f7105e3662.tar.bz2 gentoo-2-3244d9d697d1b0386c622455b5b069f7105e3662.zip |
Bump KDE 4.2.1
(Portage version: 2.2_rc23/cvs/Linux x86_64)
Diffstat (limited to 'kde-base')
-rw-r--r-- | kde-base/kwin/ChangeLog | 7 | ||||
-rw-r--r-- | kde-base/kwin/kwin-4.2.1.ebuild | 42 |
2 files changed, 48 insertions, 1 deletions
diff --git a/kde-base/kwin/ChangeLog b/kde-base/kwin/ChangeLog index 3475bb3c9734..68b4bc84b3f1 100644 --- a/kde-base/kwin/ChangeLog +++ b/kde-base/kwin/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for kde-base/kwin # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/kde-base/kwin/ChangeLog,v 1.140 2009/02/17 14:20:02 alexxy Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-base/kwin/ChangeLog,v 1.141 2009/03/04 22:34:09 alexxy Exp $ + +*kwin-4.2.1 (04 Mar 2009) + + 04 Mar 2009; Alexey Shvetsov <alexxy@gentoo.org> +kwin-4.2.1.ebuild: + Bump KDE 4.2.1 17 Feb 2009; Alexey Shvetsov <alexxy@gentoo.org> -kwin-4.1.4.ebuild: Drop KDE 4.1.4 diff --git a/kde-base/kwin/kwin-4.2.1.ebuild b/kde-base/kwin/kwin-4.2.1.ebuild new file mode 100644 index 000000000000..751470283a27 --- /dev/null +++ b/kde-base/kwin/kwin-4.2.1.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/kde-base/kwin/kwin-4.2.1.ebuild,v 1.1 2009/03/04 22:34:09 alexxy Exp $ + +EAPI="2" + +KMNAME="kdebase-workspace" +OPENGL_REQUIRED="optional" +inherit kde4-meta + +DESCRIPTION="KDE window manager" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" +IUSE="debug captury xcomposite xinerama" + +COMMONDEPEND="x11-libs/libXdamage + x11-libs/libXfixes + >=x11-libs/libXrandr-1.2.1 + x11-libs/libXrender + captury? ( media-libs/libcaptury ) + opengl? ( virtual/opengl ) + xcomposite? ( x11-libs/libXcomposite ) + xinerama? ( x11-libs/libXinerama )" +DEPEND="${COMMONDEPEND} + kde-base/kephal:${SLOT} + x11-proto/damageproto + x11-proto/renderproto + xcomposite? ( x11-proto/compositeproto ) + xinerama? ( x11-proto/xineramaproto )" +RDEPEND="${COMMONDEPEND}" + +src_configure() { + if ! use captury; then + sed -e 's:^PKGCONFIG..libcaptury:#DONOTFIND &:' \ + -i "${S}"/kwin/effects/CMakeLists.txt || \ + die "Making captury optional failed." + fi + + mycmakeargs="${mycmakeargs} + $(cmake-utils_use_with opengl OpenGL)" + + kde4-meta_src_configure +} |