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

inherit eutils

DESCRIPTION="limits the CPU usage of a process"
HOMEPAGE="http://marlon80.interfree.it/cpulimit/"
SRC_URI="http://marlon80.interfree.it/${PN}/${P}.tar.gz"

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

DEPEND="virtual/libc"
RDEPEND="${DEPEND}"

src_unpack() {
	unpack ${A}
	cd "${S}"
	epatch "${FILESDIR}/${P}-makefile.patch"
}

src_install() {
	dosbin cpulimit
	doman "${FILESDIR}/cpulimit.8"
}