# $Id: PKGBUILD 276131 2016-09-10 14:51:12Z arojas $ # Maintainer (Arch): Felix Yan # Contributor (Arch): Andrea Scarpino # Maintainer: André Silva pkgname=kdelibs pkgver=4.14.24 _kdeappver=16.08.1 pkgrel=2.parabola1 pkgdesc="KDE Core Libraries, without nonfree plugins recommendation support" arch=('i686' 'x86_64' 'armv7h') url='https://www.kde.org/' license=('GPL' 'LGPL' 'FDL') replaces=('kdelibs-libre') conflicts=('kdelibs-libre') depends=('attica-qt4' 'libxss' 'qca-qt4' 'libdbusmenu-qt4' 'polkit-qt4' 'shared-mime-info' 'enchant' 'giflib' 'jasper' 'openexr' 'docbook-xsl' 'upower' 'udisks2' 'libxcursor' 'phonon-qt4' 'media-player-info' 'libutempter' 'qtwebkit' 'icu') makedepends=('cmake' 'automoc4' 'avahi' 'libgl' 'mesa') source=("http://download.kde.org/stable/applications/${_kdeappver}/src/$pkgname-$pkgver.tar.xz" 'kde-applications-menu.patch' 'khtml-fsdg.diff' 'qt4.patch' 'kdelibs-gcc6.patch' kdelibs-no-strigi.patch::"https://quickgit.kde.org/?p=kdelibs.git&a=commitdiff&h=ba77ceb1&o=plain") sha1sums=('1ce08be17b5c55a1b8427ce859d1b897c6dc4bc3' '86ee8c8660f19de8141ac99cd6943964d97a1ed7' 'a1502a964081ad583a00cf90c56e74bf60121830' 'ed1f57ee661e5c7440efcaba7e51d2554709701c' '575e52f537e37eeaaaeb639268f9bfa394e7c58d' 'a15b222627c253d29ca18a042a0c5ee2c67913f6') prepare() { mkdir -p build cd ${pkgname}-${pkgver} # avoid file conflict with gnome-menus patch -p1 -i ../kde-applications-menu.patch # don't ask the user to download a plugin, it's probably nonfree patch -p1 -i ../khtml-fsdg.diff # qmake refers to Qt5 patch -p1 -i ../qt4.patch # fix build with GCC 6 (Fedora) patch -p1 -i ../kdelibs-gcc6.patch # make strigi optional patch -p1 -i ../kdelibs-no-strigi.patch } build() { cd build cmake ../$pkgname-$pkgver \ -DCMAKE_BUILD_TYPE=Release \ -DKDE4_BUILD_TESTS=OFF \ -DCMAKE_SKIP_RPATH=ON \ -DKDE_DISTRIBUTION_TEXT='Parabola GNU/Linux-libre' \ -DCMAKE_INSTALL_PREFIX=/usr \ -DSYSCONF_INSTALL_DIR=/etc \ -DLOCALE_INSTALL_DIR=/usr/share/locale/kde4 \ -DKDE_DEFAULT_HOME='.kde4' \ -DWITH_FAM=OFF \ -DWITH_SOLID_UDISKS2=ON make } package() { cd build make DESTDIR="$pkgdir" install # cert bundle seems to be hardcoded # link it to the one from ca-certificates rm -f "$pkgdir"/usr/share/apps/kssl/ca-bundle.crt ln -sf /etc/ssl/certs/ca-certificates.crt "$pkgdir"/usr/share/apps/kssl/ca-bundle.crt }