Date: Friday, March 9, 2018 @ 09:22:57 Author: arojas Revision: 318300
Move optdepends where they belong Modified: kcachegrind/trunk/PKGBUILD ----------+ PKGBUILD | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2018-03-09 09:05:28 UTC (rev 318299) +++ PKGBUILD 2018-03-09 09:22:57 UTC (rev 318300) @@ -6,7 +6,7 @@ pkgbase=kcachegrind pkgname=(kcachegrind kcachegrind-common qcachegrind) pkgver=17.12.3 -pkgrel=2 +pkgrel=3 pkgdesc='Visualization of Performance Profiling Data' url='https://kde.org/applications/development/kcachegrind/' arch=(x86_64) @@ -36,6 +36,7 @@ depends=(kio kcachegrind-common) conflicts=(kdesdk-kcachegrind) replaces=(kdesdk-kcachegrind) + optdepends=('graphviz: for plotting support') cd build make DESTDIR="$pkgdir" install @@ -45,7 +46,7 @@ package_kcachegrind-common() { pkgdesc+=' (common files)' depends=(hicolor-icon-theme) - optdepends=('php: PHP support' 'graphviz: for plotting support' 'python2: for hotshot2calltree') + optdepends=('php: for pprof2calltree' 'python2: for hotshot2calltree') cd build make DESTDIR="$pkgdir" install @@ -59,6 +60,7 @@ package_qcachegrind() { pkgdesc+=' (pure Qt version)' depends=(qt5-base kcachegrind-common) + optdepends=('graphviz: for plotting support') install -Dm755 build/qcachegrind/qcachegrind -t "$pkgdir"/usr/bin/ install -Dm644 $pkgbase-$pkgver/qcachegrind/qcachegrind.desktop -t "$pkgdir"/usr/share/applications/
