diff options
author | Jeremy Huddleston <eradicator@gentoo.org> | 2005-10-05 08:06:09 +0000 |
---|---|---|
committer | Jeremy Huddleston <eradicator@gentoo.org> | 2005-10-05 08:06:09 +0000 |
commit | 41807c75381f261d141cf65a226b2c19153c67dc (patch) | |
tree | 3ece1c30cda6edc204e6e41a1c9d9bdc58c37083 /dev-util/sysprof | |
parent | make it adhere multilib-strict; bug 107805 (diff) | |
download | gentoo-2-41807c75381f261d141cf65a226b2c19153c67dc.tar.gz gentoo-2-41807c75381f261d141cf65a226b2c19153c67dc.tar.bz2 gentoo-2-41807c75381f261d141cf65a226b2c19153c67dc.zip |
Version bump and ~amd64.
(Portage version: 2.0.53_rc3)
Diffstat (limited to 'dev-util/sysprof')
-rw-r--r-- | dev-util/sysprof/ChangeLog | 8 | ||||
-rw-r--r-- | dev-util/sysprof/Manifest | 15 | ||||
-rw-r--r-- | dev-util/sysprof/files/digest-sysprof-1.0 | 1 | ||||
-rw-r--r-- | dev-util/sysprof/sysprof-1.0.ebuild | 44 |
4 files changed, 56 insertions, 12 deletions
diff --git a/dev-util/sysprof/ChangeLog b/dev-util/sysprof/ChangeLog index 2a1da37c8f7c..6f6f6187080f 100644 --- a/dev-util/sysprof/ChangeLog +++ b/dev-util/sysprof/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-util/sysprof # Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/sysprof/ChangeLog,v 1.1 2005/07/30 04:15:40 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/sysprof/ChangeLog,v 1.2 2005/10/05 08:06:09 eradicator Exp $ + +*sysprof-1.0 (05 Oct 2005) + + 05 Oct 2005; Jeremy Huddleston <eradicator@gentoo.org> + +sysprof-1.0.ebuild: + Version bump and ~amd64. *sysprof-0.91 (30 Jul 2005) diff --git a/dev-util/sysprof/Manifest b/dev-util/sysprof/Manifest index df6408797573..ac5c296a7a9d 100644 --- a/dev-util/sysprof/Manifest +++ b/dev-util/sysprof/Manifest @@ -1,13 +1,6 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA1 - -MD5 daf49bff783b56d005079fd65a2bf10d sysprof-0.91.ebuild 974 MD5 fb6802cb35b394b554244f937cede153 ChangeLog 329 +MD5 daf49bff783b56d005079fd65a2bf10d sysprof-0.91.ebuild 974 +MD5 daf49bff783b56d005079fd65a2bf10d sysprof-1.0.0.ebuild 974 +MD5 2ae3a0d3f2b4fcac85d536e4f06536b5 sysprof-1.0.ebuild 981 MD5 adee278e0e445f2badb640ef691c2caf files/digest-sysprof-0.91 64 ------BEGIN PGP SIGNATURE----- -Version: GnuPG v1.4.1 (GNU/Linux) - -iD8DBQFC6v77gIKl8Uu19MoRAk7IAJ9uG1crePnOxg6Cn2C91shhJi09+ACdH8iM -SJcfddDFF+joSfsbCrbVt7g= -=8p9Y ------END PGP SIGNATURE----- +MD5 5fec4f12ce04d543378e727bb656b667 files/digest-sysprof-1.0 63 diff --git a/dev-util/sysprof/files/digest-sysprof-1.0 b/dev-util/sysprof/files/digest-sysprof-1.0 new file mode 100644 index 000000000000..8c8e4775a32f --- /dev/null +++ b/dev-util/sysprof/files/digest-sysprof-1.0 @@ -0,0 +1 @@ +MD5 ce48eeeaa3a863767b71ecfb20392d57 sysprof-1.0.tar.gz 138464 diff --git a/dev-util/sysprof/sysprof-1.0.ebuild b/dev-util/sysprof/sysprof-1.0.ebuild new file mode 100644 index 000000000000..df0b9f9f511a --- /dev/null +++ b/dev-util/sysprof/sysprof-1.0.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/sysprof/sysprof-1.0.ebuild,v 1.1 2005/10/05 08:06:09 eradicator Exp $ + +inherit 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.0" + +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_unpack() { + unpack ${A} + cd "${S}" + sed -i \ + -e '/^SUBDIRS/s:module::' \ + Makefile.in || die +} + +src_compile() { + econf || die + emake || die + linux-mod_src_compile +} + +src_install() { + make install DESTDIR="${D}" || die + linux-mod_src_install + dodoc AUTHORS ChangeLog NEWS README TODO +} |