summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexandre Rostovtsev <tetromino@gentoo.org>2011-10-31 21:59:09 -0400
committerAlexandre Rostovtsev <tetromino@gentoo.org>2011-10-31 21:59:09 -0400
commit95c04efc291bf045cd51dc6560fb179509d68c0a (patch)
treedc7eb26e2ea0e14898fe5a6998855800e7315d17 /dev-util
parentgnome-extra/evolution-exchange: qa, update for gx86 changes (diff)
downloadgnome-95c04efc291bf045cd51dc6560fb179509d68c0a.tar.gz
gnome-95c04efc291bf045cd51dc6560fb179509d68c0a.tar.bz2
gnome-95c04efc291bf045cd51dc6560fb179509d68c0a.zip
sysprof, gtkhml, evolution* : moved to gx86
Diffstat (limited to 'dev-util')
-rw-r--r--dev-util/sysprof/Manifest2
-rw-r--r--dev-util/sysprof/sysprof-1.1.8.ebuild60
2 files changed, 0 insertions, 62 deletions
diff --git a/dev-util/sysprof/Manifest b/dev-util/sysprof/Manifest
deleted file mode 100644
index 9bb4c703..00000000
--- a/dev-util/sysprof/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST sysprof-1.1.8.tar.gz 286422 RMD160 a8fbe6cb73c31cedfda7714016f90733360ecc37 SHA1 e9bce2c3536fb1a5d574dd02a59c7cc6a5d41e70 SHA256 4d89b63f80b7483fe391c3c5b8ef0da484e15035797c8e4fe3aee4b486ff5158
-EBUILD sysprof-1.1.8.ebuild 1849 RMD160 3fb16dd92085f26a01ecd7135cf4e71cb0c5fc56 SHA1 5a000f5fb3866ec28c01645523d4abb24df3dca8 SHA256 5b6c305277fdf087754ed57c7bb3ff2410df8e22b798d1ddf04ba25d89fa3a19
diff --git a/dev-util/sysprof/sysprof-1.1.8.ebuild b/dev-util/sysprof/sysprof-1.1.8.ebuild
deleted file mode 100644
index bae3828d..00000000
--- a/dev-util/sysprof/sysprof-1.1.8.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI="4"
-
-inherit eutils linux-info
-
-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/glib-2.6:2
- >=x11-libs/gtk+-2.6:2
- x11-libs/pango
- >=gnome-base/libglade-2:2.0"
-DEPEND="${RDEPEND}
- >=dev-util/pkgconfig-0.9"
-
-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() {
- default
-
- # Install udev rules in the proper place
- mkdir -p "${D}/lib/udev/rules.d" || die
- mv "${D}/etc/udev/rules.d/"* "${D}/lib/udev/rules.d/" || die
- rm -rf "${D}/etc/udev/rules.d/"
-
- # Insert icons in the proper place
- for i in 16 24 32 48; do
- insinto "/usr/share/icons/hicolor/${i}x${i}/apps"
- newins "${S}/sysprof-icon-${i}.png" sysprof.png
- rm "${D}/usr/share/pixmaps/sysprof-icon-${i}.png" || die "rm $i failed!"
- done
- newicon "${S}/sysprof-icon-48.png" sysprof.png
- make_desktop_entry sysprof Sysprof sysprof
-}
-
-pkg_postinst() {
- 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."
-}