summaryrefslogtreecommitdiff
blob: cf0733027b6301d60e9aed8a6e7b36acc2b63716 (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
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

inherit flag-o-matic

DESCRIPTION="A framework and services to support system-level performance monitoring and performance management"
HOMEPAGE="http://oss.sgi.com/projects/pcp/"
#SRC_URI="ftp://oss.sgi.com/projects/pcp/download/${P}-2.src.tar.gz"
SRC_URI="http://www.sourcefiles.org/Monitoring/Detection/${P}-2.src.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND=""
RDEPEND=""

src_compile() {
	filter-flags -fomit-frame-pointer
	econf || die "econf failed"
	emake -j1 || die "emake failed"
}

src_install() {
	DIST_ROOT="${D}" emake install || die "emake install failed"
	dodoc CHANGELOG README
}