blob: 795cf58152c121c818ec4ddee766b79a7031fc22 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-process/schedutils/schedutils-1.4.0.ebuild,v 1.1 2005/06/10 01:13:57 vapier Exp $
DESCRIPTION="Utilities for manipulating kernel schedular parameters"
HOMEPAGE="http://tech9.net/rml/schedutils"
SRC_URI="http://tech9.net/rml/${PN}/packages/${PV}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
src_compile() {
emake \
CFLAGS="${CFLAGS}" \
PREFIX=/usr \
|| die "Make failed"
}
src_install() {
dodir /usr/bin /usr/share/man/man1 /usr/share/doc
make install PREFIX="${D}"/usr || die "Install failed"
}
|