blob: bed5bb01019029743f68284eeee271d49c8065f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/callgrind/callgrind-0.10.0.ebuild,v 1.2 2005/10/12 16:57:40 metalgod Exp $
inherit eutils
DESCRIPTION="A plugin for cachegrind that adds call-graph profiling, needed by kcachegrind."
HOMEPAGE="http://kcachegrind.sourceforge.net/"
SRC_URI="http://kcachegrind.sourceforge.net/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND=">=dev-util/valgrind-3
!dev-util/calltree"
src_install() {
make DESTDIR="${D}" install || die
# Installs docs into stray directory
rm -rf ${D}/usr/share/doc/valgrind
dodoc AUTHORS ChangeLog README TODO
dohtml docs/*.html
}
|