summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMart Raudsepp <leio@gentoo.org>2017-04-02 15:16:18 +0300
committerMart Raudsepp <leio@gentoo.org>2017-04-02 16:00:48 +0300
commit23f1caaea28886d52241b34e64c43203eaf6d8e6 (patch)
tree2f883d3db4f4c69da34d84aab64f8ff9ae810d40 /dev-util
parentdev-vcs/gitg: remove old (diff)
downloadgentoo-23f1caaea28886d52241b34e64c43203eaf6d8e6.tar.gz
gentoo-23f1caaea28886d52241b34e64c43203eaf6d8e6.tar.bz2
gentoo-23f1caaea28886d52241b34e64c43203eaf6d8e6.zip
dev-util/sysprof: remove old
Package-Manager: Portage-2.3.5, Repoman-2.3.1
Diffstat (limited to 'dev-util')
-rw-r--r--dev-util/sysprof/Manifest1
-rw-r--r--dev-util/sysprof/sysprof-1.2.0.ebuild66
2 files changed, 0 insertions, 67 deletions
diff --git a/dev-util/sysprof/Manifest b/dev-util/sysprof/Manifest
index afbb790202c9..6a174eda44f3 100644
--- a/dev-util/sysprof/Manifest
+++ b/dev-util/sysprof/Manifest
@@ -1,2 +1 @@
-DIST sysprof-1.2.0.tar.gz 273409 SHA256 baf03c6fc01a845c705873e6fc7927aa89539dcda6963f9ec4c8eb4c086a64f1 SHA512 76a150ceff5fd1c98dd3e062a20d1fbf686734350809712022ef76c4da87ad573e36a86ccca070f2fb8f45efc03f2d720c4b12a1cc2a3bd8a46ab33443196954 WHIRLPOOL 77a37d93c524caaf3eede00587d37472ce5a625c8888b8c6d4035f8697ba7603e3e1d8da35b4e0f4df574569148d4ae69e11bbe368aa369c007ae3bd51885163
DIST sysprof-3.22.2.tar.xz 581864 SHA256 d57fb19a3e5d4ad37d5fb554dc93d9a03f332779c3bffd9c2aa8f176e85269d7 SHA512 601e83f8809bfc970b87a8cbecfc868e957d992aa554316e80b44f21c97a58ef0a236e0b0bda6accc01d5d551f7fca76b4882863a9ea498578731b49dc75322c WHIRLPOOL fdb2bcf0ee191bcecdda93fa3bc9d78aae5301e5fb2f0706021e1b2425d93a2d8ae16472a584ed172b864044b096c66f5c3ef714c848af63937d7dfe40736377
diff --git a/dev-util/sysprof/sysprof-1.2.0.ebuild b/dev-util/sysprof/sysprof-1.2.0.ebuild
deleted file mode 100644
index 3e631342464a..000000000000
--- a/dev-util/sysprof/sysprof-1.2.0.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="4"
-
-inherit gnome2-utils eutils linux-info udev toolchain-funcs
-
-DESCRIPTION="System-wide Linux Profiler"
-HOMEPAGE="http://sysprof.com/"
-SRC_URI="http://sysprof.com/${P}.tar.gz"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-RDEPEND="dev-libs/atk
- >=dev-libs/glib-2.6:2
- >=gnome-base/libglade-2:2.0
- x11-libs/gdk-pixbuf:2
- >=x11-libs/gtk+-2.6:2
- x11-libs/pango"
-DEPEND="${RDEPEND}
- >=sys-kernel/linux-headers-2.6.32
- virtual/pkgconfig"
-
-DOCS="AUTHORS NEWS README TODO" # ChangeLog is empty
-
-pkg_pretend() {
- kernel_is -ge 2 6 31 && return
- die "Sysprof will not work with a kernel version less than 2.6.31"
-}
-
-src_install() {
- # Install udev rules in the proper place
- export MAKEOPTS="${MAKEOPTS} udevdir=$(get_udevdir)"
- default
-
- # Symlink icons for use in application launchers
- for i in 16 24 32 48; do
- dosym "/usr/share/pixmaps/sysprof-icon-${i}.png" \
- "/usr/share/icons/hicolor/${i}x${i}/apps/sysprof.png"
- done
- make_desktop_entry sysprof Sysprof sysprof
-}
-
-pkg_preinst() {
- gnome2_icon_savelist
-}
-
-pkg_postinst() {
- gnome2_icon_cache_update
- elog "On many systems, especially amd64, it is typical that with a modern"
- elog "toolchain -fomit-frame-pointer for gcc is the default, because"
- elog "debugging is still possible thanks to gcc4/gdb location list feature."
- elog "However sysprof is not able to construct call trees if frame pointers"
- elog "are not present. Therefore -fno-omit-frame-pointer CFLAGS is suggested"
- elog "for the libraries and applications involved in the profiling. That"
- elog "means a CPU register is used for the frame pointer instead of other"
- elog "purposes, which means a very minimal performance loss when there is"
- elog "register pressure."
-}
-
-pkg_postrm() {
- gnome2_icon_cache_update
-}