blob: 096c844a1c3d1bc8f8b6bf4f33458a8779e73458 (
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{9..10} )
inherit optfeature python-single-r1 tmpfiles xdg-utils
DESCRIPTION="Daemon for monitoring and adaptive tuning of system devices"
HOMEPAGE="https://github.com/redhat-performance/tuned"
SRC_URI="https://github.com/redhat-performance/tuned/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
DEPEND="
${PYTHON_DEPS}
$(python_gen_cond_dep '
dev-python/configobj[${PYTHON_USEDEP}]
dev-python/dbus-python[${PYTHON_USEDEP}]
dev-python/decorator[${PYTHON_USEDEP}]
dev-python/pygobject:3[${PYTHON_USEDEP}]
dev-python/python-linux-procfs[${PYTHON_USEDEP}]
dev-python/pyudev[${PYTHON_USEDEP}]
')"
RDEPEND="
${DEPEND}
app-emulation/virt-what
dev-util/systemtap
sys-apps/dbus
sys-apps/ethtool
sys-power/powertop
"
RESTRICT="test"
src_prepare() {
default
sed -i \
-e "/^PYTHON/s:/usr/bin/python3:${EPREFIX}/usr/bin/${EPYTHON}:" \
-e "/^export DOCDIR/s/$/&\-\$(VERSION)/g" \
-e "/\$(DESTDIR)\/run\/tuned/d" \
-e "/\$(DESTDIR)\/var\/lib\/tuned/d" \
-e "/\$(DESTDIR)\/var\/log\/tuned/d" \
Makefile || die
}
src_install() {
default
newinitd "${FILESDIR}/${PN}.initd" "${PN}"
python_fix_shebang "${D}"
python_optimize
}
pkg_postinst() {
tmpfiles_process ${PN}.conf
xdg_icon_cache_update
optfeature_header
optfeature "Optimize for power saving by spinning-down rotational disks" sys-apps/hdparm
optfeature "Get hardware info" sys-apps/dmidecode
optfeature "Optimize network txqueuelen" sys-apps/iproute2
}
|