diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-22 13:27:46 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-22 13:41:12 -0700 |
commit | d5da422b82e6f9078d263094d9d40c3e7f630aee (patch) | |
tree | 0d13b069035dec417741d203c6f961cd5488ffc3 /sys-apps | |
parent | Merge profiles: FreeBSD 10.0 or later, python3 force set USE=threads on amd64... (diff) | |
download | gentoo-d5da422b82e6f9078d263094d9d40c3e7f630aee.tar.gz gentoo-d5da422b82e6f9078d263094d9d40c3e7f630aee.tar.bz2 gentoo-d5da422b82e6f9078d263094d9d40c3e7f630aee.zip |
Fix turbostat build & install.
Package-Manager: portage-2.2.18
Diffstat (limited to 'sys-apps')
-rw-r--r-- | sys-apps/linux-misc-apps/linux-misc-apps-3.18.ebuild | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/sys-apps/linux-misc-apps/linux-misc-apps-3.18.ebuild b/sys-apps/linux-misc-apps/linux-misc-apps-3.18.ebuild index be86d16228a7..43f20ad32a27 100644 --- a/sys-apps/linux-misc-apps/linux-misc-apps-3.18.ebuild +++ b/sys-apps/linux-misc-apps/linux-misc-apps-3.18.ebuild @@ -4,7 +4,7 @@ EAPI=5 -inherit versionator eutils toolchain-funcs linux-info autotools flag-o-matic +inherit versionator eutils toolchain-funcs linux-info flag-o-matic DESCRIPTION="Misc tools bundled with kernel sources" HOMEPAGE="http://kernel.org/" @@ -69,7 +69,7 @@ TARGETS_SIMPLE=( # These have a broken make install, no DESTDIR TARGET_MAKE_SIMPLE=( tools/firewire:nosy-dump - tools/power/x86/turbostat:../../../../turbostat + tools/power/x86/turbostat:turbostat:../../../../turbostat tools/power/x86/x86_energy_perf_policy:x86_energy_perf_policy Documentation/misc-devices/mei:mei-amt-version ) @@ -133,8 +133,10 @@ src_compile() { done for t in ${TARGET_MAKE_SIMPLE[@]} ; do - dir=${t/:*} target=${t/*:} - einfo "Building $dir => $target" + dir=${t/:*} target_binfile=${t#*:} + target=${target_binfile/:*} binfile=${target_binfile/*:} + [ -z "${binfile}" ] && binfile=$target + einfo "Building $dir => $binfile (via emake $target)" emake -C $dir ARCH=${karch} $target done } @@ -148,9 +150,11 @@ src_install() { done for t in ${TARGET_MAKE_SIMPLE[@]} ; do - dir=${t/:*} target=${t/*:} - einfo "Installing $dir => $target" - dosbin ${dir}/${target} + dir=${t/:*} target_binfile=${t#*:} + target=${target_binfile/:*} binfile=${target_binfile/*:} + [ -z "${binfile}" ] && binfile=$target + einfo "Installing $dir => $binfile" + dosbin ${dir}/${binfile} done newconfd "${FILESDIR}"/freefall.confd freefall |