You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sys-apps/irqbalance/irqbalance-1.0.4.ebuild

36 lines
915 B

# 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.4.ebuild,v 1.1 2012/09/05 05:15:32 radhermit Exp $
EAPI=4
inherit systemd
DESCRIPTION="Distribute hardware interrupts across processors on a multiprocessor system"
HOMEPAGE="http://irqbalance.googlecode.com/"
SRC_URI="http://irqbalance.googlecode.com/files/${P}.tar.bz2"
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.2 irqbalance
newconfd "${FILESDIR}"/irqbalance.confd-1 irqbalance
systemd_dounit "${FILESDIR}"/irqbalance.service
}