Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 301199 | Differences between
and this patch

Collapse All | Expand All

(-)schedtool-1.3.0.ebuild.orig (-11 / +8 lines)
Lines 1-26 Link Here
1
# Copyright 1999-2008 Gentoo Foundation
1
# Copyright 1999-2010 Gentoo Foundation
2
# Distributed under the terms of the GNU General Public License v2
2
# Distributed under the terms of the GNU General Public License v2
3
# $Header: /var/cvsroot/gentoo-x86/sys-process/schedtool/schedtool-1.3.0.ebuild,v 1.1 2008/10/31 21:11:04 dsd Exp $
3
# $Header: /var/cvsroot/gentoo-x86/sys-process/schedtool/schedtool-1.3.0.ebuild,v 1.1 2008/10/31 21:11:04 dsd Exp $
4
4
5
EAPI="2"
6
5
DESCRIPTION="A tool to query or alter a process' scheduling policy."
7
DESCRIPTION="A tool to query or alter a process' scheduling policy."
6
HOMEPAGE="http://freequaos.host.sk/schedtool"
8
HOMEPAGE="http://freequaos.host.sk/schedtool"
7
SRC_URI="http://freequaos.host.sk/${PN}/${P}.tar.bz2"
9
SRC_URI="http://freequaos.host.sk/${PN}/${P}.tar.bz2"
10
8
LICENSE="GPL-2"
11
LICENSE="GPL-2"
9
SLOT=0
12
SLOT=0
10
KEYWORDS="~amd64 ~mips ~ppc ~x86"
13
KEYWORDS="~amd64 ~mips ~ppc ~x86"
11
IUSE=""
14
IUSE=""
12
15
13
src_unpack() {
16
src_prepare() {
14
	unpack ${A}
17
	sed -i '/^CFLAGS=/d' Makefile || die
15
	cd "${S}"
16
	sed -i '/^CFLAGS=/d' Makefile
17
}
18
19
src_compile() {
20
	emake || die "Compilation failed."
21
}
18
}
22
19
23
src_install() {
20
src_install() {
24
	make DESTPREFIX="${D}"/usr install
21
	make DESTPREFIX="${D}"/usr install || die
25
	dodoc BUGS CHANGES INSTALL README THANKS TUNING
22
	dodoc CHANGES INSTALL PACKAGERS README SCHED_DESIGN TODO TUNING || die
26
}
23
}

Return to bug 301199