dev-util/sysprof: remove old
authorMart Raudsepp <leio@gentoo.org>
Sun, 2 Apr 2017 12:16:18 +0000 (15:16 +0300)
committerMart Raudsepp <leio@gentoo.org>
Sun, 2 Apr 2017 13:00:48 +0000 (16:00 +0300)
Package-Manager: Portage-2.3.5, Repoman-2.3.1

dev-util/sysprof/Manifest
dev-util/sysprof/sysprof-1.2.0.ebuild [deleted file]

index afbb790202c954f5b702a764a4ef4aa2d4c4f015..6a174eda44f34fa5caf33d200b7b8f0cac54be56 100644 (file)
@@ -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 (file)
index 3e63134..0000000
+++ /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
-}