summaryrefslogtreecommitdiff
path: root/kde-base/kdepimlibs
diff options
context:
space:
mode:
authorAndreas K. Huettel (dilfridge) <dilfridge@gentoo.org>2013-12-02 22:41:55 +0100
committerAndreas K. Huettel (dilfridge) <dilfridge@gentoo.org>2013-12-02 22:41:55 +0100
commit8497726acdcbc74ca354c450a8d5908f44b3f8da (patch)
tree8bf46e32c49e072b759b6e58e78924f26de30d21 /kde-base/kdepimlibs
parenteaa6f9664ca0a52d635978b96123f917f18a832c (diff)
downloadkde-8497726acdcbc74ca354c450a8d5908f44b3f8da.tar.gz
kde-8497726acdcbc74ca354c450a8d5908f44b3f8da.tar.bz2
kde-8497726acdcbc74ca354c450a8d5908f44b3f8da.zip
[kde-4.11.4] bump
Diffstat (limited to 'kde-base/kdepimlibs')
-rw-r--r--kde-base/kdepimlibs/Manifest1
-rw-r--r--kde-base/kdepimlibs/kdepimlibs-4.11.4.ebuild55
2 files changed, 56 insertions, 0 deletions
diff --git a/kde-base/kdepimlibs/Manifest b/kde-base/kdepimlibs/Manifest
new file mode 100644
index 00000000000..27d1b0ae3e2
--- /dev/null
+++ b/kde-base/kdepimlibs/Manifest
@@ -0,0 +1 @@
+DIST kdepimlibs-4.11.4.tar.xz 3039420 SHA256 3b6ad270ce235dc49ed0935b13599aff66beec6284d08852504ae78680a785d1 SHA512 7fe8e988b443715c75ea8875cd4e804c3f763d14fd8e74be7db5bd41d3005353171e79003287acedc646833540a3a3678e4b4659a62641ff771fae4626e26393 WHIRLPOOL 3aed50993f2cc1f1b76e075f79ec29b14f4f07e916519c0a32d55c6746990a554306e142f9868e5165194d343bd046147ea8ad261bf0e1086bcd0c03f369d5f3
diff --git a/kde-base/kdepimlibs/kdepimlibs-4.11.4.ebuild b/kde-base/kdepimlibs/kdepimlibs-4.11.4.ebuild
new file mode 100644
index 00000000000..308c461686b
--- /dev/null
+++ b/kde-base/kdepimlibs/kdepimlibs-4.11.4.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2013 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+KDE_HANDBOOK="optional"
+CPPUNIT_REQUIRED="optional"
+inherit kde4-base
+
+DESCRIPTION="Common library for KDE PIM apps."
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
+LICENSE="LGPL-2.1"
+IUSE="debug ldap prison"
+
+# some akonadi tests timeout, that probaly needs more work as its ~700 tests
+RESTRICT="test"
+
+DEPEND="
+ !kde-misc/akonadi-social-utils
+ $(add_kdebase_dep nepomuk-core)
+ $(add_kdebase_dep kdelibs 'semantic-desktop')
+ >=app-crypt/gpgme-1.1.6
+ >=app-office/akonadi-server-1.10.1
+ >=dev-libs/boost-1.35.0-r5:=
+ dev-libs/libgpg-error
+ >=dev-libs/libical-0.43
+ dev-libs/cyrus-sasl
+ >=dev-libs/qjson-0.8.1
+ media-libs/phonon
+ x11-misc/shared-mime-info
+ prison? ( media-libs/prison )
+ ldap? ( net-nds/openldap )
+"
+# boost is not linked to, but headers which include it are installed
+# bug #418071
+RDEPEND="${DEPEND}"
+
+PATCHES=( "${FILESDIR}/${PN}-4.9.1-boostincludes.patch" )
+
+src_configure() {
+ mycmakeargs=(
+ $(cmake-utils_use_build handbook doc)
+ $(cmake-utils_use_find_package ldap)
+ $(cmake-utils_use_find_package prison)
+ )
+
+ kde4-base_src_configure
+}
+
+src_install() {
+ kde4-base_src_install
+ rm "${ED}"/usr/share/apps/cmake/modules/FindQJSON.cmake
+ rm "${ED}"/usr/share/apps/cmake/modules/FindQtOAuth.cmake #Collides with net-im/choqok
+}