summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2006-11-09 23:51:56 +0000
committerMike Frysinger <vapier@gentoo.org>2006-11-09 23:51:56 +0000
commitcb7c1c8defc7531dcd0b423f95dbd306da699204 (patch)
tree09bbef90d622ec4e6ef99e110fe69483c3cf90cf /dev-util/sysprof
parentVersion bump #154316. (diff)
downloadgentoo-2-cb7c1c8defc7531dcd0b423f95dbd306da699204.tar.gz
gentoo-2-cb7c1c8defc7531dcd0b423f95dbd306da699204.tar.bz2
gentoo-2-cb7c1c8defc7531dcd0b423f95dbd306da699204.zip
old
Diffstat (limited to 'dev-util/sysprof')
-rw-r--r--dev-util/sysprof/files/digest-sysprof-1.0.23
-rw-r--r--dev-util/sysprof/files/digest-sysprof-1.0.33
-rw-r--r--dev-util/sysprof/files/sysprof-1.0.1-INTERVAL_should_not_be_zero.patch17
-rw-r--r--dev-util/sysprof/sysprof-1.0.2.ebuild37
-rw-r--r--dev-util/sysprof/sysprof-1.0.3.ebuild39
5 files changed, 0 insertions, 99 deletions
diff --git a/dev-util/sysprof/files/digest-sysprof-1.0.2 b/dev-util/sysprof/files/digest-sysprof-1.0.2
deleted file mode 100644
index dadf07645b4c..000000000000
--- a/dev-util/sysprof/files/digest-sysprof-1.0.2
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 49e5598f97f30ef3871d1a51426d1695 sysprof-1.0.2.tar.gz 136241
-RMD160 6ebb801a7c398e54ae146ad5bdbc956fb37b1803 sysprof-1.0.2.tar.gz 136241
-SHA256 fbe175069941646b52d9c91636002da2a636e440a2bb6589025f314a4c3e835b sysprof-1.0.2.tar.gz 136241
diff --git a/dev-util/sysprof/files/digest-sysprof-1.0.3 b/dev-util/sysprof/files/digest-sysprof-1.0.3
deleted file mode 100644
index f9a9d35fbdb2..000000000000
--- a/dev-util/sysprof/files/digest-sysprof-1.0.3
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 8949fe32a073b84cb2abb7f9d608f755 sysprof-1.0.3.tar.gz 136915
-RMD160 94d841620ab7fd17aafc57542f5855051bff04a0 sysprof-1.0.3.tar.gz 136915
-SHA256 eb6ffd7b7d3c268eb0f5554ab5964c1b5a6ba6afafc0e849a94c40827320c21e sysprof-1.0.3.tar.gz 136915
diff --git a/dev-util/sysprof/files/sysprof-1.0.1-INTERVAL_should_not_be_zero.patch b/dev-util/sysprof/files/sysprof-1.0.1-INTERVAL_should_not_be_zero.patch
deleted file mode 100644
index 7c4bad8508ae..000000000000
--- a/dev-util/sysprof/files/sysprof-1.0.1-INTERVAL_should_not_be_zero.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-http://bugs.gentoo.org/show_bug.cgi?id=118890#c4
-
---- module/sysprof-module.c
-+++ module/sysprof-module.c
-@@ -50,7 +50,11 @@
- MODULE_AUTHOR("Soeren Sandmann (sandmann@daimi.au.dk)");
-
- #define SAMPLES_PER_SECOND (200)
--#define INTERVAL (HZ / SAMPLES_PER_SECOND)
-+#if (HZ > SAMPLES_PER_SECOND)
-+# define INTERVAL (HZ / SAMPLES_PER_SECOND)
-+#else
-+# define INTERVAL 1
-+#endif
- #define N_TRACES 256
-
- static SysprofStackTrace stack_traces[N_TRACES];
diff --git a/dev-util/sysprof/sysprof-1.0.2.ebuild b/dev-util/sysprof/sysprof-1.0.2.ebuild
deleted file mode 100644
index dd0b067a996c..000000000000
--- a/dev-util/sysprof/sysprof-1.0.2.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/sysprof/sysprof-1.0.2.ebuild,v 1.1 2006/04/08 03:15:15 vapier Exp $
-
-inherit eutils linux-mod
-
-DESCRIPTION="System-wide Linux Profiler"
-HOMEPAGE="http://www.daimi.au.dk/~sandmann/sysprof/"
-SRC_URI="http://www.daimi.au.dk/~sandmann/sysprof/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND=">=x11-libs/gtk+-2.6"
-
-pkg_setup() {
- MODULE_NAMES="sysprof-module(misc:${S}/module)"
- CONFIG_CHECK="PROFILING"
- PROFILING_ERROR="You need to enable Profiling support in your kernel."
- BUILD_TARGETS="all"
- linux-mod_pkg_setup
-}
-
-src_compile() {
- econf --disable-kernel-module || die
- emake || die
- linux-mod_src_compile
-}
-
-src_install() {
- make install DESTDIR="${D}" || die
- linux-mod_src_install
- dodoc AUTHORS ChangeLog NEWS README TODO
- make_desktop_entry sysprof Sysprof sysprof-icon.png
-}
diff --git a/dev-util/sysprof/sysprof-1.0.3.ebuild b/dev-util/sysprof/sysprof-1.0.3.ebuild
deleted file mode 100644
index ec71087f33c8..000000000000
--- a/dev-util/sysprof/sysprof-1.0.3.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/sysprof/sysprof-1.0.3.ebuild,v 1.2 2006/07/02 06:49:32 vapier Exp $
-
-inherit eutils linux-mod
-
-DESCRIPTION="System-wide Linux Profiler"
-HOMEPAGE="http://www.daimi.au.dk/~sandmann/sysprof/"
-SRC_URI="http://www.daimi.au.dk/~sandmann/sysprof/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND=">=x11-libs/gtk+-2.6
- x11-libs/pango
- >=gnome-base/libglade-2"
-
-pkg_setup() {
- MODULE_NAMES="sysprof-module(misc:${S}/module)"
- CONFIG_CHECK="PROFILING"
- PROFILING_ERROR="You need to enable Profiling support in your kernel."
- BUILD_TARGETS="all"
- linux-mod_pkg_setup
-}
-
-src_compile() {
- econf --disable-kernel-module || die
- emake || die
- linux-mod_src_compile
-}
-
-src_install() {
- make install DESTDIR="${D}" || die
- linux-mod_src_install
- dodoc AUTHORS ChangeLog NEWS README TODO
- make_desktop_entry sysprof Sysprof sysprof-icon.png
-}