blob: d9f46c855d1aee1c8469ba3cc0c56eb54d801557 (
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
33
34
35
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/irqbalance/irqbalance-1.0.2-r1.ebuild,v 1.3 2012/05/04 09:17:28 jdhore Exp $
EAPI=4
inherit systemd
DESCRIPTION="Distribute hardware interrupts across processors on a multiprocessor system"
HOMEPAGE="http://www.irqbalance.org/"
SRC_URI="http://irqbalance.googlecode.com/files/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="caps numa"
RDEPEND="dev-libs/glib:2
caps? ( sys-libs/libcap-ng )
numa? ( sys-process/numactl )"
DEPEND="${RDEPEND}
virtual/pkgconfig"
src_configure() {
econf \
$(use_with caps libcap-ng) \
$(use_enable numa)
}
src_install() {
default
newinitd "${FILESDIR}"/irqbalance.init irqbalance
newconfd "${FILESDIR}"/irqbalance.confd-1 irqbalance
systemd_dounit "${FILESDIR}"/irqbalance.service
}
|