summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wendler <polynomial-c@gentoo.org>2018-07-09 13:58:34 +0200
committerLars Wendler <polynomial-c@gentoo.org>2018-07-09 14:34:44 +0200
commit3843742efffba73810bc4140604977aa0fdd9824 (patch)
treee7648dbd9ad17db6b6991831e3c6ce9fab3a2840 /sys-apps/irqbalance/irqbalance-1.2.0.ebuild
parentmedia-video/ffmpeg: bump to 3.4.3 (diff)
downloadgentoo-3843742efffba73810bc4140604977aa0fdd9824.tar.gz
gentoo-3843742efffba73810bc4140604977aa0fdd9824.tar.bz2
gentoo-3843742efffba73810bc4140604977aa0fdd9824.zip
sys-apps/irqbalance: Removed old.
Package-Manager: Portage-2.3.41, Repoman-2.3.9
Diffstat (limited to 'sys-apps/irqbalance/irqbalance-1.2.0.ebuild')
-rw-r--r--sys-apps/irqbalance/irqbalance-1.2.0.ebuild63
1 files changed, 0 insertions, 63 deletions
diff --git a/sys-apps/irqbalance/irqbalance-1.2.0.ebuild b/sys-apps/irqbalance/irqbalance-1.2.0.ebuild
deleted file mode 100644
index 5a860709ee8d..000000000000
--- a/sys-apps/irqbalance/irqbalance-1.2.0.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-AUTOTOOLS_AUTORECONF=true
-
-inherit autotools-utils systemd linux-info
-
-DESCRIPTION="Distribute hardware interrupts across processors on a multiprocessor system"
-HOMEPAGE="https://github.com/Irqbalance/irqbalance"
-SRC_URI="https://github.com/Irqbalance/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE="caps +numa selinux"
-
-CDEPEND="
- dev-libs/glib:2
- sys-libs/ncurses:0=[unicode]
- caps? ( sys-libs/libcap-ng )
- numa? ( sys-process/numactl )
-"
-DEPEND="${CDEPEND}
- virtual/pkgconfig
-"
-RDEPEND="${CDEPEND}
- selinux? ( sec-policy/selinux-irqbalance )
-"
-
-PATCHES=(
- "${FILESDIR}/${P}-tinfo.patch"
-)
-
-pkg_setup() {
- CONFIG_CHECK="~PCI_MSI"
- linux-info_pkg_setup
-}
-
-src_prepare() {
- # Follow systemd policies
- # https://wiki.gentoo.org/wiki/Project:Systemd/Ebuild_policy
- sed \
- -e 's/ $IRQBALANCE_ARGS//' \
- -e '/EnvironmentFile/d' \
- -i misc/irqbalance.service || die
- autotools-utils_src_prepare
-}
-
-src_configure() {
- local myeconfargs=(
- $(use_with caps libcap-ng)
- $(use_enable numa)
- )
- autotools-utils_src_configure
-}
-
-src_install() {
- autotools-utils_src_install
- newinitd "${FILESDIR}"/irqbalance.init.4 irqbalance
- newconfd "${FILESDIR}"/irqbalance.confd-1 irqbalance
- systemd_dounit misc/irqbalance.service
-}