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-power/cpupower/cpupower-4.7.0-r1.ebuild

62 lines
1.4 KiB

# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
# eutils: strip-linguas
inherit eutils systemd toolchain-funcs
DESCRIPTION="Shows and sets processor power related values"
HOMEPAGE="https://www.kernel.org/"
SRC_URI="https://dev.gentoo.org/~floppym/dist/${P}.tar.xz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"
IUSE="cpufreq_bench debug nls"
# File collision w/ headers of the deprecated cpufrequtils
RDEPEND="sys-apps/pciutils
!<sys-apps/linux-misc-apps-3.6-r2
!sys-power/cpufrequtils"
DEPEND="${RDEPEND}
virtual/os-headers
nls? ( sys-devel/gettext )"
src_compile() {
myemakeargs=(
DEBUG=$(usex debug true false)
V=1
CPUFREQ_BENCH=$(usex cpufreq_bench true false)
NLS=$(usex nls true false)
docdir=/usr/share/doc/${PF}/${PN}
mandir=/usr/share/man
libdir=/usr/$(get_libdir)
AR="$(tc-getAR)"
CC="$(tc-getCC)"
LD="$(tc-getCC)"
STRIP=true
OPTIMIZATION=
VERSION=${PV}
)
if [[ -n ${LINGUAS+set} ]]; then
strip-linguas -i po
myemakeargs+=( LANGUAGES="${LINGUAS}" )
fi
emake "${myemakeargs[@]}"
}
src_install() {
emake DESTDIR="${D}" "${myemakeargs[@]}" install
dodoc README ToDo
newconfd "${FILESDIR}"/conf.d-r2 cpupower
newinitd "${FILESDIR}"/init.d-r4 cpupower
systemd_dounit "${FILESDIR}"/cpupower-frequency-set.service
systemd_install_serviced "${FILESDIR}"/cpupower-frequency-set.service.conf
}