diff options
Diffstat (limited to 'kde/kdenetwork/Pkgfile')
-rwxr-xr-x | kde/kdenetwork/Pkgfile | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/kde/kdenetwork/Pkgfile b/kde/kdenetwork/Pkgfile index 7a28e92c5..97a54fd46 100755 --- a/kde/kdenetwork/Pkgfile +++ b/kde/kdenetwork/Pkgfile @@ -2,12 +2,13 @@ # URL: http://www.kde.org # Maintainer: NuTyX packager team # Packager: lesibel at free dot fr -# Depends on: libktorrent, kdebase-runtime, kdepimlibs, qimageblitz, qca, libotr, libmsn, libvncserver, ortp, meanwhile, rdesktop, telepathy-qt, libgadu, libv4l, libktorrent -# Run on: libktorrent, kdebase-runtime,kdepimlibs,qimageblitz,qca,libotr,libmsn,libvncserver,ortp,meanwhile,rdesktop,telepathy-qt,libgadu,libv4l,libktorrent +# Depends on: cmake, automoc4, boost, speex, ortp, libotr, qca, kdebase-workspace, libgadu, libv4l, libvncserver, libmsn, ppp, rdesktop, libidn, qimageblitz, xorg-libxdamage, telepathy-qt, docbook-xsl, samba3, libktorrent + +# Run on: speex,ortp,libotr,qca,kdebase-workspace,kdeblibs,libvncserver,libmsn,ppp,libv4l,libidn,rdesktop,qimageblitz,libgadu,telepathy-qt,libktorrent,samba3 name=kdenetwork version=4.6.0 -release=1 +release=2 source=(ftp://ftp.kde.org/pub/kde/stable/$version/src/$name-$version.tar.bz2 ) build() { @@ -15,8 +16,15 @@ build() { mkdir build cd build cmake ../ -DCMAKE_INSTALL_PREFIX=/usr \ - -DBUILD_doc=OFF + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_SKIP_RPATH=ON \ + -DMOZPLUGIN_INSTALL_DIR=/usr/lib/mozilla/plugins/ \ + -DWITH_Xmms=OFF \ + -DWITH_LibMeanwhile=OFF make make DESTDIR=$PKG install + + find $PKG -name '*.py' | xargs sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' } + |