diff options
author | Alex Alexander <wired@gentoo.org> | 2009-12-01 11:36:37 +0000 |
---|---|---|
committer | Alex Alexander <wired@gentoo.org> | 2009-12-01 11:36:37 +0000 |
commit | e8f7743cd87a04b2c8e2d338f60b317b4d872b85 (patch) | |
tree | 2604dccb1524e9817015e7953d113765901e603e /kde-base/kdeplasma-addons | |
parent | Fix dependencies over cups to avoid downgrades to 1.3 for users with zeroconf... (diff) | |
download | historical-e8f7743cd87a04b2c8e2d338f60b317b4d872b85.tar.gz historical-e8f7743cd87a04b2c8e2d338f60b317b4d872b85.tar.bz2 historical-e8f7743cd87a04b2c8e2d338f60b317b4d872b85.zip |
Version bump KDE 4.3.4
Package-Manager: portage-2.2_rc54/cvs/Linux x86_64
RepoMan-Options: --force
Diffstat (limited to 'kde-base/kdeplasma-addons')
-rw-r--r-- | kde-base/kdeplasma-addons/ChangeLog | 8 | ||||
-rw-r--r-- | kde-base/kdeplasma-addons/kdeplasma-addons-4.3.4.ebuild | 60 |
2 files changed, 67 insertions, 1 deletions
diff --git a/kde-base/kdeplasma-addons/ChangeLog b/kde-base/kdeplasma-addons/ChangeLog index 77c1340360c1..5b7ff918f143 100644 --- a/kde-base/kdeplasma-addons/ChangeLog +++ b/kde-base/kdeplasma-addons/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for kde-base/kdeplasma-addons # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/kde-base/kdeplasma-addons/ChangeLog,v 1.41 2009/11/30 06:53:46 josejx Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-base/kdeplasma-addons/ChangeLog,v 1.42 2009/12/01 10:27:58 wired Exp $ + +*kdeplasma-addons-4.3.4 (01 Dec 2009) + + 01 Dec 2009; Alex Alexander <wired@gentoo.org> + +kdeplasma-addons-4.3.4.ebuild: + Version bump 30 Nov 2009; Joseph Jezak <josejx@gentoo.org> kdeplasma-addons-4.3.3.ebuild: diff --git a/kde-base/kdeplasma-addons/kdeplasma-addons-4.3.4.ebuild b/kde-base/kdeplasma-addons/kdeplasma-addons-4.3.4.ebuild new file mode 100644 index 000000000000..197727788923 --- /dev/null +++ b/kde-base/kdeplasma-addons/kdeplasma-addons-4.3.4.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/kde-base/kdeplasma-addons/kdeplasma-addons-4.3.4.ebuild,v 1.1 2009/12/01 10:27:58 wired Exp $ + +EAPI="2" + +KMNAME="kdeplasma-addons" +OPENGL_REQUIRED="optional" +WEBKIT_REQUIRED="always" +inherit kde4-base + +DESCRIPTION="Extra Plasma applets and engines." +HOMEPAGE="http://www.kde.org/" +LICENSE="GPL-2 LGPL-2" + +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="debug desktopglobe exif semantic-desktop" + +# krunner is only needed to generate dbus interface for lancelot +COMMON_DEPEND=" + $(add_kdebase_dep kdelibs 'opengl?,semantic-desktop?') + $(add_kdebase_dep kdepimlibs) + $(add_kdebase_dep krunner) + $(add_kdebase_dep plasma-workspace) + x11-misc/shared-mime-info + desktopglobe? ( $(add_kdebase_dep marble) ) + exif? ( $(add_kdebase_dep libkexiv2) ) +" +DEPEND="${COMMON_DEPEND} + dev-cpp/eigen:2 +" +RDEPEND="${COMMON_DEPEND}" + +# kdebase-data: some svg icons moved from data directly here. +add_blocker kdebase-data '<4.2.88' + +src_prepare() { + sed -i -e 's/${KDE4WORKSPACE_PLASMACLOCK_LIBRARY}/plasmaclock/g' \ + -e 's/${KDE4WORKSPACE_WEATHERION_LIBRARY}/weather_ion/g' \ + -e 's/${KDE4WORKSPACE_TASKMANAGER_LIBRARY}/taskmanager/g' \ + {libs/plasmaweather,applets/{binary-clock,fuzzy-clock,weather,weatherstation,lancelot/app/src}}/CMakeLists.txt \ + || die "Failed to patch CMake files" + + sed -i -e 's/(KDE4_PLASMA_OPENGL_FOUND)/(KDE4_PLASMA_OPENGL_FOUND AND OPENGL_FOUND)/g' \ + applets/CMakeLists.txt \ + || die "Failed to make OpenGL applets optional" + + kde4-base_src_prepare +} + +src_configure() { + mycmakeargs="${mycmakeargs} + -DDBUS_INTERFACES_INSTALL_DIR=${KDEDIR}/share/dbus-1/interfaces/ + $(cmake-utils_use_with exif Kexiv2) + $(cmake-utils_use_with desktopglobe Marble) + $(cmake-utils_use_with opengl OpenGL) + $(cmake-utils_use_with semantic-desktop Nepomuk)" + + kde4-base_src_configure +} |