blob: f13896701c7f2d8993128272c492a60a3fa76650 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/irqbalance/irqbalance-0.55-r2.ebuild,v 1.3 2008/09/20 13:08:38 maekke Exp $
inherit eutils
DESCRIPTION="Distribute hardware interrupts across processors on a multiprocessor system"
HOMEPAGE="http://www.irqbalance.org/"
SRC_URI="http://www.irqbalance.org/releases/${P}.tar.gz"
LICENSE="OSL-1.1"
SLOT="0"
KEYWORDS="amd64 ~ppc x86"
IUSE=""
RDEPEND="=dev-libs/glib-2*"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
src_unpack() {
unpack ${P}.tar.gz
cd "${S}"
epatch "${FILESDIR}"/${P}-build.patch
}
src_install() {
into /
dosbin irqbalance || die "dosbin failed"
doman "${FILESDIR}"/irqbalance.1
newinitd "${FILESDIR}"/irqbalance.init-0.55-r2 irqbalance
newconfd "${FILESDIR}"/irqbalance.confd irqbalance
}
|