diff options
-rw-r--r-- | kde-base/kdelibs/ChangeLog | 9 | ||||
-rw-r--r-- | kde-base/kdelibs/files/kdelibs-4.6.5-cardinality.patch | 323 | ||||
-rw-r--r-- | kde-base/kdelibs/kdelibs-4.6.5-r1.ebuild | 333 |
3 files changed, 664 insertions, 1 deletions
diff --git a/kde-base/kdelibs/ChangeLog b/kde-base/kdelibs/ChangeLog index 70ef22078597..f4f8a2dc6ea7 100644 --- a/kde-base/kdelibs/ChangeLog +++ b/kde-base/kdelibs/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for kde-base/kdelibs # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/kde-base/kdelibs/ChangeLog,v 1.776 2011/07/27 14:04:40 alexxy Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-base/kdelibs/ChangeLog,v 1.777 2011/08/02 19:43:22 dilfridge Exp $ + +*kdelibs-4.6.5-r1 (02 Aug 2011) + + 02 Aug 2011; Andreas K. Huettel <dilfridge@gentoo.org> + +kdelibs-4.6.5-r1.ebuild, +files/kdelibs-4.6.5-cardinality.patch: + Backport patch so kdepim-4.4 and kdepim-4.6 builds with + shared-desktop-ontologies-0.7 *kdelibs-4.7.0 (27 Jul 2011) diff --git a/kde-base/kdelibs/files/kdelibs-4.6.5-cardinality.patch b/kde-base/kdelibs/files/kdelibs-4.6.5-cardinality.patch new file mode 100644 index 000000000000..cb892aec6a87 --- /dev/null +++ b/kde-base/kdelibs/files/kdelibs-4.6.5-cardinality.patch @@ -0,0 +1,323 @@ +commit 1f796983aa8385da77f30813041b40e208c17391 +Author: Vishesh Handa <handa.vish@gmail.com> +Date: Thu May 19 20:52:30 2011 +0530 + + Make KDEPIM 4.6 compile with master + + This makes the rcgen produce add/setProperty( QList<T> ) functions for + properties with nrl:maxCardinality and nrl:cardinality = 1. This was + required because with SDO 0.7 the cardinalities of many properties + have been set. + + BUG: 268595 + +diff --git a/nepomuk/rcgen/codegenerator.cpp b/nepomuk/rcgen/codegenerator.cpp +index bc670e6..1bb2736 100644 +--- a/nepomuk/rcgen/codegenerator.cpp ++++ b/nepomuk/rcgen/codegenerator.cpp +@@ -194,33 +194,28 @@ bool CodeGenerator::writeHeader( const ResourceClass *resourceClass, QTextStream + while( it.hasNext() ) { + const Property* p = it.next(); + +- if( p->literalRange().isEmpty() && +- !p->range() ) { +- if ( !quiet ) +- qDebug() << "(CodeGenerator::writeSource) type not defined for property: " << p->name() << endl; +- continue; +- } +- +- if ( m_mode == SafeMode ) { +- ms << writeComment( QString("Get property '%1'. ").arg(p->name()) + p->comment(), 2*4 ) << endl; +- ms << " " << m_code->propertyGetterDeclaration( p, resourceClass ) << ";" << endl; +- ms << endl; ++ if( p->maxCardinality() == 1 || p->cardinality() == 1 ) { ++ Property * prop = const_cast<Property *>(p); ++ bool isList = prop->isList(); ++ ++ prop->setIsList( true ); ++ if( !writePropertyHeader( prop, resourceClass, ms ) ) ++ continue; ++ ++ prop->setIsList( false ); ++ if( !writePropertyHeader( prop, resourceClass, ms ) ) ++ continue; ++ ++ writePropertyUriHeader( prop, ms ); ++ ++ prop->setIsList( isList ); + } +- +- ms << writeComment( QString("Set property '%1'. ").arg(p->name()) + p->comment(), 2*4 ) << endl; +- ms << " " << m_code->propertySetterDeclaration( p, resourceClass ) << ";" << endl; +- ms << endl; +- +- if( p->isList() ) { +- ms << writeComment( QString("Add a value to property '%1'. ").arg(p->name()) + p->comment(), 2*4 ) << endl; +- ms << " " << m_code->propertyAdderDeclaration( p, resourceClass ) << ";" << endl; +- ms << endl; ++ else { ++ if( !writePropertyHeader( p, resourceClass, ms ) ) ++ continue; ++ writePropertyUriHeader( p, ms ); + } +- +- ms << writeComment( QString( "\\return The URI of the property '%1'." ).arg( p->name() ), 2*4 ) << endl; +- ms << " " << "static QUrl " << p->name()[0].toLower() << p->name().mid(1) << "Uri();" << endl; +- ms << endl; +- ++ + if( !p->hasSimpleType() ) + includes.insert( p->typeString( true ) ); + } +@@ -299,6 +294,42 @@ bool CodeGenerator::writeHeader( const ResourceClass *resourceClass, QTextStream + return true; + } + ++bool CodeGenerator::writePropertyHeader(const Property* p, const ResourceClass* resourceClass, QTextStream& ms) const ++{ ++ if( p->literalRange().isEmpty() && ++ !p->range() ) { ++ if ( !quiet ) ++ qDebug() << "(CodeGenerator::writeSource) type not defined for property: " << p->name() << endl; ++ return false; ++ } ++ ++ if ( m_mode == SafeMode ) { ++ ms << writeComment( QString("Get property '%1'. ").arg(p->name()) + p->comment(), 2*4 ) << endl; ++ ms << " " << m_code->propertyGetterDeclaration( p, resourceClass ) << ";" << endl; ++ ms << endl; ++ } ++ ++ ms << writeComment( QString("Set property '%1'. ").arg(p->name()) + p->comment(), 2*4 ) << endl; ++ ms << " " << m_code->propertySetterDeclaration( p, resourceClass ) << ";" << endl; ++ ms << endl; ++ ++ if( p->isList() ) { ++ ms << writeComment( QString("Add a value to property '%1'. ").arg(p->name()) + p->comment(), 2*4 ) << endl; ++ ms << " " << m_code->propertyAdderDeclaration( p, resourceClass ) << ";" << endl; ++ ms << endl; ++ } ++ ++ return true; ++} ++ ++void CodeGenerator::writePropertyUriHeader(const Property* p, QTextStream& ts) const ++{ ++ ts << writeComment( QString( "\\return The URI of the property '%1'." ).arg( p->name() ), 2*4 ) << endl; ++ ts << " " << "static QUrl " << p->name()[0].toLower() << p->name().mid(1) << "Uri();" << endl; ++ ts << endl; ++} ++ ++ + bool CodeGenerator::writeSource( const ResourceClass* resourceClass, QTextStream& stream ) const + { + QString s = sourceTemplate( m_mode ); +@@ -318,29 +349,31 @@ bool CodeGenerator::writeSource( const ResourceClass* resourceClass, QTextStream + while( it.hasNext() ) { + const Property* p = it.next(); + +- if( p->literalRange().isEmpty() && +- !p->range() ) { +- if ( !quiet ) +- qDebug() << "(CodeGenerator::writeSource) type not defined for property: " << p->name() << endl; +- continue; ++ if( p->maxCardinality() == 1 || p->cardinality() == 1 ) { ++ Property * prop = const_cast<Property *>(p); ++ bool isList = prop->isList(); ++ ++ prop->setIsList( true ); ++ if( !writePropertySource( prop, resourceClass, ms ) ) ++ continue; ++ ++ prop->setIsList( false ); ++ if( !writePropertySource( prop, resourceClass, ms ) ) ++ continue; ++ ++ writePropertyUriSource( prop, resourceClass, ms ); ++ ++ prop->setIsList( isList ); + } +- ++ else { ++ if( !writePropertySource( p, resourceClass, ms ) ) ++ continue; ++ writePropertyUriSource( p, resourceClass, ms ); ++ } ++ + if ( !p->hasSimpleType() ) { + includes.append( QString( "#include \"%1.h\"" ).arg( p->typeString( true ).toLower() ) ); + } +- +- if ( m_mode == SafeMode ) +- ms << m_code->propertyGetterDefinition( p, resourceClass ) << endl; +- +- ms << m_code->propertySetterDefinition( p, resourceClass ) << endl; +- if( p->isList() ) +- ms << m_code->propertyAdderDefinition( p, resourceClass ) << endl; +- +- // write the static method that returns the property's Uri +- ms << "QUrl " << resourceClass->name( m_nameSpace ) << "::" << p->name()[0].toLower() << p->name().mid(1) << "Uri()" << endl +- << "{" << endl +- << " return QUrl::fromEncoded(\"" << p->uri().toString() << "\");" << endl +- << "}" << endl << endl; + } + + it = resourceClass->allReverseProperties(); +@@ -395,6 +428,32 @@ bool CodeGenerator::writeSource( const ResourceClass* resourceClass, QTextStream + return true; + } + ++bool CodeGenerator::writePropertySource(const Property* p, const ResourceClass* resourceClass, QTextStream& ms) const ++{ ++ if( p->literalRange().isEmpty() && !p->range() ) { ++ if ( !quiet ) ++ qDebug() << "(CodeGenerator::writeSource) type not defined for property: " << p->name() << endl; ++ return false; ++ } ++ ++ if ( m_mode == SafeMode ) ++ ms << m_code->propertyGetterDefinition( p, resourceClass ) << endl; ++ ++ ms << m_code->propertySetterDefinition( p, resourceClass ) << endl; ++ if( p->isList() ) ++ ms << m_code->propertyAdderDefinition( p, resourceClass ) << endl; ++ ++ return true; ++} ++ ++void CodeGenerator::writePropertyUriSource(const Property* p, const ResourceClass* resourceClass, QTextStream& ts) const ++{ ++ // write the static method that returns the property's Uri ++ ts << "QUrl " << resourceClass->name( m_nameSpace ) << "::" << p->name()[0].toLower() << p->name().mid(1) << "Uri()" << endl ++ << "{" << endl ++ << " return QUrl::fromEncoded(\"" << p->uri().toString() << "\");" << endl ++ << "}" << endl << endl; ++} + + bool CodeGenerator::writeSources( const QString& dir ) + { +diff --git a/nepomuk/rcgen/codegenerator.h b/nepomuk/rcgen/codegenerator.h +index dc786a4..f26a875 100644 +--- a/nepomuk/rcgen/codegenerator.h ++++ b/nepomuk/rcgen/codegenerator.h +@@ -22,6 +22,7 @@ class AbstractCode; + class ResourceClass; + class QString; + class QTextStream; ++class Property; + + class CodeGenerator + { +@@ -47,7 +48,13 @@ private: + bool writeHeader( const ResourceClass* resourceClass, QTextStream& ) const; + bool writeSource( const ResourceClass* resourceClass, QTextStream& ) const; + bool writeDummyClasses( const QString &folder ) const; ++ ++ bool writePropertyHeader( const Property* p, const ResourceClass* resourceClass, QTextStream& ms ) const; ++ bool writePropertySource( const Property* p, const ResourceClass* resourceClass, QTextStream& ms ) const; + ++ void writePropertyUriHeader( const Property* p, QTextStream& ts ) const; ++ void writePropertyUriSource( const Property* p, const ResourceClass* resourceClass, QTextStream& ts ) const; ++ + QString visibilityHeader() const; + QString visibilityExportMacro() const; + +diff --git a/nepomuk/rcgen/ontologyparser.cpp b/nepomuk/rcgen/ontologyparser.cpp +index 50e3397..f9f8673 100644 +--- a/nepomuk/rcgen/ontologyparser.cpp ++++ b/nepomuk/rcgen/ontologyparser.cpp +@@ -164,7 +164,14 @@ bool OntologyParser::parse( const QString& filename, const QString& serializatio + } + else if( s.predicate().uri() == Soprano::Vocabulary::NRL::maxCardinality() || + s.predicate().uri() == Soprano::Vocabulary::NRL::cardinality() ) { +- d->getProperty(s.subject().uri())->setIsList( s.object().literal().toInt() > 1 ); ++ Property * p = d->getProperty(s.subject().uri()); ++ int cValue = s.object().literal().toInt(); ++ ++ p->setIsList( cValue > 1 ); ++ if( s.predicate().uri() == Soprano::Vocabulary::NRL::maxCardinality() ) ++ p->setMaxCardinality( cValue ); ++ else ++ p->setCardinality( cValue ); + } + else if( s.predicate().uri() == Soprano::Vocabulary::RDFS::comment() ) { + d->comments[s.subject().uri()] = s.object().literal().toString(); +diff --git a/nepomuk/rcgen/property.cpp b/nepomuk/rcgen/property.cpp +index 1baa04c..51d9c07 100644 +--- a/nepomuk/rcgen/property.cpp ++++ b/nepomuk/rcgen/property.cpp +@@ -27,7 +27,9 @@ Property::Property() + : m_range( 0 ), + m_isList( true ), + m_domain( 0 ), +- m_inverseProperty( 0 ) ++ m_inverseProperty( 0 ), ++ m_maxCardinality( -1 ), ++ m_cardinality( -1 ) + { + } + +@@ -204,3 +206,24 @@ QString Property::literalTypeConversionMethod() const + + return QString(); + } ++ ++void Property::setMaxCardinality(int value) ++{ ++ m_maxCardinality = value; ++} ++ ++int Property::maxCardinality() const ++{ ++ return m_maxCardinality; ++} ++ ++int Property::cardinality() const ++{ ++ return m_cardinality; ++} ++ ++void Property::setCardinality(int value) ++{ ++ m_cardinality = value; ++} ++ +diff --git a/nepomuk/rcgen/property.h b/nepomuk/rcgen/property.h +index a72ab5d..a09006d 100644 +--- a/nepomuk/rcgen/property.h ++++ b/nepomuk/rcgen/property.h +@@ -139,6 +139,25 @@ public: + */ + bool hasSimpleType() const; + ++ /** ++ * Sets the max cardinality of the property ++ */ ++ void setMaxCardinality( int value ); ++ ++ /** ++ * Returns the max cardinality of the property ++ */ ++ int maxCardinality() const; ++ ++ /** ++ * Sets the cardinality of the property ++ */ ++ void setCardinality( int value ); ++ ++ /** ++ * Returns the cardinality of the property ++ */ ++ int cardinality() const; + private: + QUrl m_uri; + ResourceClass* m_range; +@@ -147,6 +166,8 @@ private: + bool m_isList; + ResourceClass* m_domain; + Property* m_inverseProperty; ++ int m_maxCardinality; ++ int m_cardinality; + }; + + #endif diff --git a/kde-base/kdelibs/kdelibs-4.6.5-r1.ebuild b/kde-base/kdelibs/kdelibs-4.6.5-r1.ebuild new file mode 100644 index 000000000000..ceafeb122633 --- /dev/null +++ b/kde-base/kdelibs/kdelibs-4.6.5-r1.ebuild @@ -0,0 +1,333 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/kde-base/kdelibs/kdelibs-4.6.5-r1.ebuild,v 1.1 2011/08/02 19:43:22 dilfridge Exp $ + +EAPI=4 + +CPPUNIT_REQUIRED="optional" +DECLARATIVE_REQUIRED="always" +OPENGL_REQUIRED="optional" +KDE_SCM="git" +inherit kde4-base fdo-mime toolchain-funcs + +DESCRIPTION="KDE libraries needed by all KDE programs." +HOMEPAGE="http://www.kde.org/" + +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux" +LICENSE="LGPL-2.1" +IUSE="3dnow acl alsa altivec bindist +bzip2 debug doc fam +handbook jpeg2k kerberos +lzma mmx nls openexr +policykit semantic-desktop spell sse sse2 ssl +udev +udisks +upower zeroconf" + +REQUIRED_USE=" + udisks? ( udev ) + upower? ( udev ) +" + +# needs the kate regression testsuite from svn +RESTRICT="test" + +COMMONDEPEND=" + app-crypt/qca:2 + >=app-misc/strigi-0.6.3 + >=dev-libs/libattica-0.1.90 + >=dev-libs/libdbusmenu-qt-0.3.2 + dev-libs/libpcre[unicode] + dev-libs/libxml2 + dev-libs/libxslt + media-libs/fontconfig + media-libs/freetype:2 + media-libs/giflib + >=media-libs/libpng-1.4 + >=media-libs/phonon-4.4.3 + sys-libs/zlib + virtual/jpeg + >=x11-misc/shared-mime-info-0.60 + acl? ( virtual/acl ) + alsa? ( media-libs/alsa-lib ) + !aqua? ( + x11-libs/libICE + x11-libs/libSM + x11-libs/libX11 + x11-libs/libXau + x11-libs/libXcursor + x11-libs/libXdmcp + x11-libs/libXext + x11-libs/libXfixes + x11-libs/libXft + x11-libs/libXpm + x11-libs/libXrender + x11-libs/libXScrnSaver + x11-libs/libXtst + !kernel_SunOS? ( sys-libs/libutempter ) + ) + bzip2? ( app-arch/bzip2 ) + fam? ( virtual/fam ) + jpeg2k? ( media-libs/jasper ) + kerberos? ( virtual/krb5 ) + lzma? ( app-arch/xz-utils ) + openexr? ( + media-libs/openexr + media-libs/ilmbase + ) + policykit? ( >=sys-auth/polkit-qt-0.99 ) + semantic-desktop? ( + >=dev-libs/shared-desktop-ontologies-0.5 + >=dev-libs/soprano-2.5.63_pre[dbus,raptor,redland] + ) + spell? ( app-text/enchant ) + ssl? ( dev-libs/openssl ) + udev? ( sys-fs/udev ) + zeroconf? ( + || ( + net-dns/avahi[mdnsresponder-compat] + !bindist? ( net-misc/mDNSResponder ) + ) + ) +" +DEPEND="${COMMONDEPEND} + app-text/docbook-xml-dtd:4.2 + app-text/docbook-xsl-stylesheets + doc? ( app-doc/doxygen ) + nls? ( virtual/libintl ) +" +RDEPEND="${COMMONDEPEND} + !dev-libs/conversion + !dev-libs/kunitconversion + !x11-libs/qt-phonon + !<=kde-misc/kdnssd-avahi-0.1.2:0 + !<=kde-misc/knetworkmanager-4.4.0_p20100820 + >=app-crypt/gnupg-2.0.11 + app-misc/ca-certificates + $(add_kdebase_dep kde-env) + !aqua? ( + x11-apps/iceauth + x11-apps/rgb + >=x11-misc/xdg-utils-1.0.2-r3 + udisks? ( sys-fs/udisks ) + upower? ( sys-power/upower ) + ) +" +PDEPEND=" + || ( ( $(add_kdebase_dep kfmclient) ) x11-misc/xdg-utils ) + handbook? ( $(add_kdebase_dep khelpcenter) ) + policykit? ( + >=kde-misc/polkit-kde-kcmodules-0.98_pre20101127 + >=sys-auth/polkit-kde-agent-0.99 + ) + semantic-desktop? ( $(add_kdebase_dep nepomuk) ) +" + +# Blockers added due to packages from old versions, removed in the meanwhile +# as well as for file collisions +add_blocker libknotificationitem +add_blocker libkworkspace '<4.3.66' +add_blocker kcontrol '<4.5.80' +# @since 4.4 - kpilot is gone (blocker added to help upgrades) +add_blocker kpilot +# Block some old versions of KDE-3.5 packages that don't work well with KDE-4 +add_blocker kdebase 0 3.5.9-r4:3.5 +add_blocker kdebase-startkde 0 3.5.10:3.5 +add_blocker kdelibs 0 '<3.5.10:3.5' +# libnepomukquery moved to kdelibs from plasma-workspace between 4.3.74 -> 4.3.75 +add_blocker plasma-workspace '<4.3.75' + +PATCHES=( + "${FILESDIR}/dist/01_gentoo_set_xdg_menu_prefix-1.patch" + "${FILESDIR}/dist/02_gentoo_append_xdg_config_dirs-1.patch" + "${FILESDIR}/${PN}-4.5.90-mimetypes.patch" + "${FILESDIR}/${PN}-4.4.90-xslt.patch" + "${FILESDIR}/${PN}-4.6.2-nonepomuk.patch" + "${FILESDIR}/${PN}-4.6.3-no_suid_kdeinit.patch" + "${FILESDIR}/${PN}-4.6.3-bytecode.patch" + "${FILESDIR}/${PN}-4.6.5-cardinality.patch" +) + +pkg_pretend() { + if [[ ${MERGE_TYPE} != binary ]]; then + [[ $(gcc-major-version) -lt 4 ]] || \ + ( [[ $(gcc-major-version) -eq 4 && $(gcc-minor-version) -le 3 ]] ) \ + && die "Sorry, but gcc-4.3 and earlier won't work for KDE SC 4.6 (see bug #354837)." + fi +} + +src_prepare() { + kde4-base_src_prepare + use arm && epatch "${FILESDIR}/${PN}-4.6.2-armlinking.patch" + + # Rename applications.menu (needs 01_gentoo_set_xdg_menu_prefix-1.patch to work) + sed -e 's|FILES[[:space:]]applications.menu|FILES applications.menu RENAME kde-4-applications.menu|g' \ + -i kded/CMakeLists.txt || die "Sed on CMakeLists.txt for applications.menu failed." + + if use aqua; then + sed -i -e \ + "s:BUNDLE_INSTALL_DIR \"/Applications:BUNDLE_INSTALL_DIR \"${EPREFIX}/${APP_BUNDLE_DIR}:g" \ + cmake/modules/FindKDE4Internal.cmake || die "failed to sed FindKDE4Internal.cmake" + + #if [[ ${CHOST} == *-darwin8 ]]; then + sed -i -e \ + "s:set(_add_executable_param MACOSX_BUNDLE):remove(_add_executable_param MACOSX_BUNDLE):g" \ + cmake/modules/KDE4Macros.cmake || die "failed to sed KDE4Macros.cmake" + #fi + + # solid/solid/backends/iokit doesn't properly link, so disable it. + sed -e "s|\(APPLE\)|(FALSE)|g" -i solid/solid/CMakeLists.txt \ + || die "disabling solid/solid/backends/iokit failed" + sed -e "s|m_backend = .*Backends::IOKit.*;|m_backend = 0;|g" -i solid/solid/managerbase.cpp \ + || die "disabling solid/solid/backends/iokit failed" + + # There's no fdatasync on OSX and the check fails to detect that. + sed -e "/HAVE_FDATASYNC/ d" -i config.h.cmake \ + || die "disabling fdatasync failed" + + # Fix nameser include to nameser8_compat + sed -e "s|nameser8_compat.h|nameser_compat.h|g" -i kio/misc/kpac/discovery.cpp \ + || die "fixing nameser include failed" + append-flags -DHAVE_ARPA_NAMESER8_COMPAT_H=1 + + # Try to fix kkeyserver_mac + epatch "${FILESDIR}"/${PN}-4.3.80-kdeui_util_kkeyserver_mac.patch + fi + + if [[ ${CHOST} == *-solaris* ]] ; then + epatch "${FILESDIR}/kdelibs-4.3.2-solaris-ksyscoca.patch" + # getgrouplist not in solaris libc + epatch "${FILESDIR}/kdelibs-4.3.2-solaris-getgrouplist.patch" + # solaris has no d_type element in dir_ent + epatch "${FILESDIR}/kdelibs-4.3.2-solaris-fileunix.patch" + fi +} + +src_configure() { + if use zeroconf; then + if has_version net-dns/avahi; then + mycmakeargs=(-DWITH_Avahi=ON -DWITH_DNSSD=OFF) + elif has_version net-misc/mDNSResponder; then + mycmakeargs=(-DWITH_Avahi=OFF -DWITH_DNSSD=ON) + else + die "USE=\"zeroconf\" enabled but neither net-dns/avahi nor net-misc/mDNSResponder were found." + fi + else + mycmakeargs=(-DWITH_Avahi=OFF -DWITH_DNSSD=OFF) + fi + mycmakeargs+=( + -DWITH_HSPELL=OFF + -DWITH_ASPELL=OFF + -DKDE_DEFAULT_HOME=.kde4 + -DKAUTH_BACKEND=POLKITQT-1 + $(cmake-utils_use_build handbook doc) + $(cmake-utils_use_has 3dnow X86_3DNOW) + $(cmake-utils_use_has altivec PPC_ALTIVEC) + $(cmake-utils_use_has mmx X86_MMX) + $(cmake-utils_use_has sse X86_SSE) + $(cmake-utils_use_has sse2 X86_SSE2) + $(cmake-utils_use_with acl) + $(cmake-utils_use_with alsa) + $(cmake-utils_use_with bzip2 BZip2) + $(cmake-utils_use_with fam) + $(cmake-utils_use_with jpeg2k Jasper) + $(cmake-utils_use_with kerberos GSSAPI) + $(cmake-utils_use_with lzma LibLZMA) + $(cmake-utils_use_with nls Libintl) + $(cmake-utils_use_with openexr OpenEXR) + $(cmake-utils_use_with opengl OpenGL) + $(cmake-utils_use_with policykit PolkitQt-1) + $(cmake-utils_use_with semantic-desktop Soprano) + $(cmake-utils_use_with semantic-desktop SharedDesktopOntologies) + $(cmake-utils_use_with spell ENCHANT) + $(cmake-utils_use_with ssl OpenSSL) + $(cmake-utils_use_with udev UDev) + ) + kde4-base_src_configure +} + +src_compile() { + kde4-base_src_compile + + # The building of apidox is not managed anymore by the build system + if use doc; then + einfo "Building API documentation" + cd "${S}"/doc/api/ + ./doxygen.sh "${S}" || die "APIDOX generation failed" + fi +} + +src_install() { + kde4-base_src_install + + # use system certificates + rm -f "${ED}"/usr/share/apps/kssl/ca-bundle.crt || die + dosym /etc/ssl/certs/ca-certificates.crt /usr/share/apps/kssl/ca-bundle.crt + + if use doc; then + einfo "Installing API documentation. This could take a bit of time." + cd "${S}"/doc/api/ + docinto /HTML/en/kdelibs-apidox + dohtml -r ${P}-apidocs/* + fi + + if use aqua; then + einfo "fixing ${PN} plugins" + + local _PV=${PV:0:3}.0 + local _dir=${EPREFIX}/usr/$(get_libdir)/kde4/plugins/script + + install_name_tool -id \ + "${_dir}/libkrossqtsplugin.${_PV}.dylib" \ + "${D}/${_dir}/libkrossqtsplugin.${_PV}.dylib" \ + || die "failed fixing libkrossqtsplugin.${_PV}.dylib" + + einfo "fixing ${PN} cmake detection files" + #sed -i -e \ + # "s:if (HAVE_XKB):if (HAVE_XKB AND NOT APPLE):g" \ + echo -e "set(XKB_FOUND FALSE)\nset(HAVE_XKB FALSE)" > \ + "${ED}"/usr/share/apps/cmake/modules/FindXKB.cmake \ + || die "failed fixing FindXKB.cmake" + fi + + einfo Installing environment file. + echo "COLON_SEPARATED=QT_PLUGIN_PATH" > "${T}/77kde" + echo "QT_PLUGIN_PATH=${EPREFIX}/usr/$(get_libdir)/kde4/plugins" >> "${T}/77kde" + doenvd "${T}/77kde" +} + +pkg_postinst() { + fdo-mime_mime_database_update + + if use zeroconf; then + echo + elog "To make zeroconf support available in KDE make sure that the 'mdnsd' daemon" + elog "is running." + echo + einfo "If you also want to use zeroconf for hostname resolution, emerge sys-auth/nss-mdns" + einfo "and enable multicast dns lookups by editing the 'hosts:' line in /etc/nsswitch.conf" + einfo "to include 'mdns', e.g.:" + einfo " hosts: files mdns dns" + echo + fi + + if has_version 'net-libs/libproxy'; then + echo + elog "You have net-libs/libproxy installed. This may lead to serious problems, e.g." + elog "not being able to log in. We used to prohibit that combination via a blocker," + elog "however the blocker has been removed because of popular request. Now everyone" + elog "may shoot himself in the foot as much as he wants." + ewarn "If you encounter timeouts and/or hangs, please have a look at bug 365479," + ewarn "https://bugs.gentoo.org/show_bug.cgi?id=365479" + fi + + elog "Your homedir is set to \${HOME}/.kde4" + echo + + kde4-base_pkg_postinst +} + +pkg_prerm() { + # Remove ksycoca4 global database + rm -f "${EROOT}${PREFIX}"/share/kde4/services/ksycoca4 +} + +pkg_postrm() { + fdo-mime_mime_database_update + + kde4-base_pkg_postrm +} |