summaryrefslogtreecommitdiffstats
path: root/kcachegrind/kcachegrind.spec.in
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2012-01-30 20:20:24 -0600
committerTimothy Pearson <[email protected]>2012-01-30 20:20:24 -0600
commitcfccedd9c8db3af36d7c5635ca212fa170bb6ff5 (patch)
treec80df038c9b6e40b4e28c26203de0dd9b1cd1593 /kcachegrind/kcachegrind.spec.in
parent2020f146a7175288d0aaf15cd91b95e545bbb915 (diff)
downloadtdesdk-cfccedd9c8db3af36d7c5635ca212fa170bb6ff5.tar.gz
tdesdk-cfccedd9c8db3af36d7c5635ca212fa170bb6ff5.zip
Part 2 of prior commit
Diffstat (limited to 'kcachegrind/kcachegrind.spec.in')
-rw-r--r--kcachegrind/kcachegrind.spec.in55
1 files changed, 0 insertions, 55 deletions
diff --git a/kcachegrind/kcachegrind.spec.in b/kcachegrind/kcachegrind.spec.in
deleted file mode 100644
index 42b3e24e..00000000
--- a/kcachegrind/kcachegrind.spec.in
+++ /dev/null
@@ -1,55 +0,0 @@
-Summary: KDE Profiling Visualisation Tool
-Name: tdecachegrind
-Version: @TDECACHEGRIND_VERSION@
-Release: 1
-Copyright: GPL
-Group: Development/Tools
-Vendor: (none)
-URL: http://tdecachegrind.sourceforge.net
-Packager: Josef Weidendorfer <[email protected]>
-Source: tdecachegrind-@[email protected]
-BuildRoot: /var/tmp/build
-
-%description
-KCachegrind is a GPL'd tool for quick browsing in and visualisation
-of performance data of an application run. This data is produced by
-profiling tools and typically includes distribution of cost events
-to source code ranges (instructions, source lines, functions, C++ classes)
-and call relationship of functions.
-KCachegrind has a list of functions sorted according to different cost
-types, and can provide various performance views for a function like
-direct/indirect callers/callees, TreeMap visualisation of cost distribution
-among callees, call graph sectors centered around the function and
-annotated source/assembler.
-Currently, KCachegrind depends on data delivered by the profiling tool
-calltree, powered by the Valgrind runtime instrumentation framework.
-
-%prep
-%setup
-CFLAGS="$RPM_OPT_FLAGS" CXXFLAGS="$RPM_OPT_FLAGS" ./configure \
- \
- $LOCALFLAGS
-%build
-# Setup for parallel builds
-numprocs=`egrep -c ^cpu[0-9]+ /proc/stat || :`
-if [ "$numprocs" = "0" ]; then
- numprocs=1
-fi
-
-make -j$numprocs
-
-%install
-make install-strip DESTDIR=$RPM_BUILD_ROOT
-
-cd $RPM_BUILD_ROOT
-find . -type d | sed '1,2d;s,^\.,\%attr(-\,root\,root) \%dir ,' > $RPM_BUILD_DIR/file.list.tdecachegrind
-find . -type f | sed 's,^\.,\%attr(-\,root\,root) ,' >> $RPM_BUILD_DIR/file.list.tdecachegrind
-find . -type l | sed 's,^\.,\%attr(-\,root\,root) ,' >> $RPM_BUILD_DIR/file.list.tdecachegrind
-
-%clean
-rm -rf $RPM_BUILD_ROOT/*
-rm -rf $RPM_BUILD_DIR/tdecachegrind
-rm -rf ../file.list.tdecachegrind
-
-
-%files -f ../file.list.tdecachegrind