diff options
author | Carsten Lohrke <carlo@gentoo.org> | 2004-07-25 15:43:57 +0000 |
---|---|---|
committer | Carsten Lohrke <carlo@gentoo.org> | 2004-07-25 15:43:57 +0000 |
commit | fe4ee766aefc81d3cd62b88ba818414bd724e208 (patch) | |
tree | 4b3aff3c5430d7bf795a8d92c1631d016506e1a0 /dev-util/kprof/kprof-1.4.2.ebuild | |
parent | initial ebuild (Manifest recommit) (diff) | |
download | gentoo-2-fe4ee766aefc81d3cd62b88ba818414bd724e208.tar.gz gentoo-2-fe4ee766aefc81d3cd62b88ba818414bd724e208.tar.bz2 gentoo-2-fe4ee766aefc81d3cd62b88ba818414bd724e208.zip |
cassert fix, #41571
Diffstat (limited to 'dev-util/kprof/kprof-1.4.2.ebuild')
-rw-r--r-- | dev-util/kprof/kprof-1.4.2.ebuild | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/dev-util/kprof/kprof-1.4.2.ebuild b/dev-util/kprof/kprof-1.4.2.ebuild index 482b597b44fc..24ae8e9e5112 100644 --- a/dev-util/kprof/kprof-1.4.2.ebuild +++ b/dev-util/kprof/kprof-1.4.2.ebuild @@ -1,21 +1,24 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/kprof/kprof-1.4.2.ebuild,v 1.9 2004/07/14 23:46:46 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/kprof/kprof-1.4.2.ebuild,v 1.10 2004/07/25 15:43:56 carlo Exp $ -inherit kde -need-kde 3 +inherit eutils kde DESCRIPTION="A KDE3 visual tool helping developers to analyze the profiling results generated by code profilers." HOMEPAGE="http://kprof.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" +SRC_URI="mirror://sourceforge/kprof/${P}.tar.gz" -LICENSE="GPL-2" SLOT="0" +LICENSE="GPL-2" KEYWORDS="x86" IUSE="" +need-kde 3 + src_unpack() { base_src_unpack # Rename the source directory to include the version to make the eclass happy mv ${WORKDIR}/${PN} ${WORKDIR}/${P} + cd ${S} + epatch ${FILESDIR}/include_cassert.patch } |