blob: df0b9f9f511a557af89eefa33a386ee4f01263d3 (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
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
}
|