blob: d0b42d92d6291b2d7566378913db51ac8455af12 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/dev-util/kprof/kprof-1.4.2.ebuild,v 1.1 2003/05/05 15:23:28 pauldv Exp $
inherit kde-base
need-kde 3
IUSE=""
DESCRIPTION="A KDE3 visual tool helping developers to analyze the profiling results generated by code profilers."
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
HOMEPAGE="http://kprof.sourceforge.net"
LICENSE="GPL-2"
KEYWORDS="~x86"
src_unpack() {
base_src_unpack
# Rename the source directory to include the version to make the eclass happy
mv ${WORKDIR}/${PN} ${WORKDIR}/${P}
}
|