+++ /dev/null
-MD5 da39e9ff770b01329796ad8258e972d6 irqbalance-0.08.tar.gz 11007
-RMD160 e3281a757412955bd3de560c0a960a8a2ae1c36c irqbalance-0.08.tar.gz 11007
-SHA256 f1fdfff2281d4a28a147c2015ca1ba009024508c26bed8a66da0bac1447bf067 irqbalance-0.08.tar.gz 11007
+++ /dev/null
-#!/sbin/runscript
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License, v2 or later
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/irqbalance/files/irqbalance-nopid.init,v 1.1 2006/08/22 15:03:47 uberlord Exp $
-
-depend() {
- need localmount
- after bootmisc
-}
-
-start() {
- ebegin "Starting irqbalance"
- start-stop-daemon --start --exec /sbin/irqbalance
- eend $?
-}
-
-stop() {
- ebegin "Stopping irqbalance"
- start-stop-daemon --stop --exec /sbin/irqbalance
- eend $?
-}
+++ /dev/null
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/irqbalance/irqbalance-0.08-r1.ebuild,v 1.3 2006/10/04 15:24:52 blubb Exp $
-
-DESCRIPTION="Distribute hardware interrupts across processors on a multiprocessor system"
-HOMEPAGE="http://people.redhat.com/arjanv/irqbalance/"
-SRC_URI="http://people.redhat.com/arjanv/irqbalance/${P}.tar.gz"
-
-LICENSE="OSL-1.1"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-DEPEND="virtual/libc"
-
-S="${WORKDIR}/irqbalance"
-
-src_compile() {
- emake || die "emake failed"
-}
-
-src_install() {
- into /
- dosbin irqbalance || die "dosbin failed"
- doman irqbalance.1
- dodoc Changelog TODO
-
- # Give irqbalance an init script
- newinitd "${FILESDIR}/irqbalance-nopid.init" irqbalance
-}
-
-pkg_postinst() {
- einfo "irqbalance now has an init script"
- einfo " rc-update add irqbalance default"
-}