diff options
author | 2008-05-01 14:53:40 +0000 | |
---|---|---|
committer | 2008-05-01 14:53:40 +0000 | |
commit | 6ff49f1ab612b810c28f49ee1b37645419f1c0fd (patch) | |
tree | 4e518cd41d542ab841a765c9b093c48572e84143 /dev-util/sysprof | |
parent | amd64/x86 stable, bug #213588 (diff) | |
download | gentoo-2-6ff49f1ab612b810c28f49ee1b37645419f1c0fd.tar.gz gentoo-2-6ff49f1ab612b810c28f49ee1b37645419f1c0fd.tar.bz2 gentoo-2-6ff49f1ab612b810c28f49ee1b37645419f1c0fd.zip |
Version bump. Adds linux-2.6.25 compatibility. Fix for missing pkgconfig dep, bug 206251
(Portage version: 2.1.5_rc6)
Diffstat (limited to 'dev-util/sysprof')
-rw-r--r-- | dev-util/sysprof/ChangeLog | 8 | ||||
-rw-r--r-- | dev-util/sysprof/sysprof-1.0.10.ebuild | 43 |
2 files changed, 50 insertions, 1 deletions
diff --git a/dev-util/sysprof/ChangeLog b/dev-util/sysprof/ChangeLog index 7efc909ac122..c350aca46ca4 100644 --- a/dev-util/sysprof/ChangeLog +++ b/dev-util/sysprof/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-util/sysprof # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/sysprof/ChangeLog,v 1.10 2008/02/29 18:00:10 carlo Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/sysprof/ChangeLog,v 1.11 2008/05/01 14:53:40 leio Exp $ + +*sysprof-1.0.10 (01 May 2008) + + 01 May 2008; Mart Raudsepp <leio@gentoo.org> +sysprof-1.0.10.ebuild: + Version bump. Adds linux-2.6.25 compatibility. Fix for missing pkgconfig + dep, bug 206251 29 Feb 2008; Carsten Lohrke <carlo@gentoo.org> sysprof-1.0.8.ebuild, sysprof-1.0.9.ebuild: diff --git a/dev-util/sysprof/sysprof-1.0.10.ebuild b/dev-util/sysprof/sysprof-1.0.10.ebuild new file mode 100644 index 000000000000..6991af56f032 --- /dev/null +++ b/dev-util/sysprof/sysprof-1.0.10.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/sysprof/sysprof-1.0.10.ebuild,v 1.1 2008/05/01 14:53:40 leio 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="" + +RDEPEND=">=x11-libs/gtk+-2.6 + x11-libs/pango + >=gnome-base/libglade-2" +DEPEND="${RDEPEND} + >=dev-util/pkgconfig-0.9" + +pkg_setup() { + MODULE_NAMES="sysprof-module(misc:${S}/module)" + CONFIG_CHECK="PROFILING" + PROFILING_ERROR="You need to enable Profiling support in your kernel. \ +For this you need to enable 'Profiling support' under 'Instrumentation Support'. \ +It is marked CONFIG_PROFILING in the config file" + 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 +} |