Advertisement
Guest User

kdepimlibs-4.11.2.ebuild-changed

a guest
Oct 17th, 2013
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.39 KB | None | 0 0
  1. # Copyright 1999-2013 Gentoo Foundation
  2. # Distributed under the terms of the GNU General Public License v2
  3. # $Header: /var/cvsroot/gentoo-x86/kde-base/kdepimlibs/kdepimlibs-4.11.2-r1.ebuild,v 1.1 2013/10/09 23:04:08 creffett Exp $
  4.  
  5. EAPI=5
  6.  
  7. KDE_HANDBOOK="optional"
  8. CPPUNIT_REQUIRED="optional"
  9. inherit kde4-base
  10.  
  11. DESCRIPTION="Common library for KDE PIM apps."
  12. KEYWORDS=" ~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
  13. LICENSE="LGPL-2.1"
  14. IUSE="debug ldap prison"
  15.  
  16. # some akonadi tests timeout, that probaly needs more work as its ~700 tests
  17. RESTRICT="test"
  18.  
  19. DEPEND="
  20. >=app-crypt/gpgme-1.1.6
  21. >=dev-libs/boost-1.35.0-r5:=
  22. dev-libs/libgpg-error
  23. >=dev-libs/libical-0.43
  24. dev-libs/cyrus-sasl
  25. >=dev-libs/qjson-0.8.1
  26. media-libs/phonon
  27. x11-misc/shared-mime-info
  28. prison? ( media-libs/prison )
  29. ldap? ( net-nds/openldap )
  30. "
  31. # boost is not linked to, but headers which include it are installed
  32. # bug #418071
  33. RDEPEND="${DEPEND}"
  34.  
  35. PATCHES=( "${FILESDIR}/${PN}-4.9.1-boostincludes.patch" )
  36.  
  37. src_configure() {
  38. mycmakeargs=(
  39. $(cmake-utils_use_build handbook doc)
  40. $(cmake-utils_use_find_package ldap)
  41. $(cmake-utils_use_find_package prison)
  42. )
  43.  
  44. kde4-base_src_configure
  45. }
  46.  
  47. src_install() {
  48. kde4-base_src_install
  49. rm "${ED}"/usr/share/apps/cmake/modules/FindQJSON.cmake
  50. rm "${ED}"/usr/share/apps/cmake/modules/FindQtOAuth.cmake #Collides with net-im/choqok
  51. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement