2013-08-08 09:18:10 +02:00
|
|
|
# Template file for 'linux-tools'
|
|
|
|
pkgname=linux-tools
|
2014-09-06 10:56:38 +02:00
|
|
|
version=3.16
|
2014-09-25 10:58:39 +02:00
|
|
|
revision=2
|
2013-08-08 09:18:10 +02:00
|
|
|
wrksrc="linux-${version}"
|
2014-03-18 07:56:06 +01:00
|
|
|
short_desc="Linux kernel tools meta-pkg"
|
2014-09-25 10:58:39 +02:00
|
|
|
hostmakedepends="flex perl>=5.20 asciidoc xmlto python automake libtool"
|
2014-08-19 21:18:57 +02:00
|
|
|
makedepends="pciutils-devel python-devel libglib-devel libsysfs-devel
|
2014-09-06 10:56:38 +02:00
|
|
|
elfutils-devel libunwind-devel binutils-devel zlib-devel slang-devel
|
2014-09-06 12:42:09 +02:00
|
|
|
libudev-devel"
|
2014-08-19 21:18:57 +02:00
|
|
|
depends="cpupower>=${version} perf>=${version} usbip>=${version}"
|
2013-08-08 09:18:10 +02:00
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
|
|
license="GPL-2"
|
|
|
|
homepage="http://www.kernel.org"
|
|
|
|
distfiles="http://ftp.kernel.org/pub/linux/kernel/v3.x/linux-${version}.tar.xz"
|
2014-09-06 10:56:38 +02:00
|
|
|
checksum=4813ad7927a7d92e5339a873ab16201b242b2748934f12cb5df9ba2cfe1d77a0
|
|
|
|
|
|
|
|
subpackages="cpupower libcpupower libcpupower-devel libusbip libusbip-devel usbip perf"
|
2013-08-08 09:18:10 +02:00
|
|
|
|
2014-08-19 21:18:57 +02:00
|
|
|
if [ "$XBPS_TARGET_MACHINE" = "i686" -o "$XBPS_TARGET_MACHINE" = "x86_64" ]; then
|
|
|
|
makedepends+=" libnuma-devel"
|
|
|
|
depends+=" x86_energy_perf_policy>=${version}"
|
2014-09-06 10:56:38 +02:00
|
|
|
subpackages+=" x86_energy_perf_policy"
|
2014-08-19 21:18:57 +02:00
|
|
|
fi
|
|
|
|
|
2014-08-21 12:14:29 +02:00
|
|
|
nocross=yes
|
2013-08-08 09:18:10 +02:00
|
|
|
|
|
|
|
do_build() {
|
|
|
|
cd ${wrksrc}/tools/perf
|
|
|
|
make ${makejobs} CC=$CC \
|
|
|
|
WERROR=0 \
|
|
|
|
DESTDIR=$DESTDIR \
|
|
|
|
perfexecdir='lib/perf' \
|
|
|
|
NO_GTK2=1 \
|
|
|
|
PERF_VERSION=${version}_${revision} \
|
|
|
|
all man
|
|
|
|
|
|
|
|
cd ${wrksrc}/tools/power/cpupower
|
|
|
|
# Disable --as-needed.
|
|
|
|
unset LDFLAGS
|
|
|
|
make CC=$CC VERSION=${version}_${revision}
|
|
|
|
|
2014-08-19 21:18:57 +02:00
|
|
|
if [ "$XBPS_TARGET_MACHINE" = "i686" -o "$XBPS_TARGET_MACHINE" = "x86_64" ]; then
|
|
|
|
cd ${wrksrc}/tools/power/x86/x86_energy_perf_policy
|
|
|
|
make ${makejobs}
|
|
|
|
fi
|
2013-08-08 09:18:10 +02:00
|
|
|
|
|
|
|
cd ${wrksrc}/drivers/staging/usbip/userspace
|
|
|
|
# fix missing man page
|
|
|
|
sed -i 's/usbip_bind_driver.8//' Makefile.am
|
|
|
|
./autogen.sh
|
|
|
|
./configure --prefix=/usr --sbindir=/usr/bin
|
|
|
|
make ${makejobs}
|
|
|
|
}
|
|
|
|
|
|
|
|
do_install() {
|
|
|
|
# cpupower
|
|
|
|
cd ${wrksrc}/tools/power/cpupower
|
|
|
|
make DESTDIR=${DESTDIR} \
|
|
|
|
sbindir='/usr/bin' \
|
|
|
|
mandir='/usr/share/man' \
|
|
|
|
docdir='/usr/share/doc/cpupower' \
|
|
|
|
install install-man
|
|
|
|
|
|
|
|
# perf
|
|
|
|
cd ${wrksrc}/tools/perf
|
|
|
|
make WERROR=0 DESTDIR=${DESTDIR}/usr \
|
|
|
|
perfexecdir='lib/perf' \
|
|
|
|
NO_GTK2=1 \
|
|
|
|
PERF_VERSION=${version}_${revision} \
|
|
|
|
install install-man
|
|
|
|
# move completion in new directory
|
|
|
|
vmkdir usr/share/bash-completion/completions
|
|
|
|
mv ${DESTDIR}/usr/etc/bash_completion.d/perf \
|
|
|
|
${DESTDIR}/usr/share/bash-completion/completions
|
|
|
|
|
|
|
|
# usbip
|
|
|
|
cd ${wrksrc}/drivers/staging/usbip/userspace
|
|
|
|
make install DESTDIR=${DESTDIR}
|
|
|
|
vmkdir usr/lib/modules-load.d
|
|
|
|
printf 'usbip-core\nusbip-host\n' > \
|
|
|
|
${DESTDIR}/usr/lib/modules-load.d/usbip.conf
|
|
|
|
vinstall ${FILESDIR}/usbipd.service 644 usr/lib/systemd/system
|
|
|
|
|
2014-08-19 21:18:57 +02:00
|
|
|
if [ "$XBPS_TARGET_MACHINE" = "i686" -o "$XBPS_TARGET_MACHINE" = "x86_64" ]; then
|
|
|
|
# x86_energy_perf_policy
|
|
|
|
cd ${wrksrc}/tools/power/x86/x86_energy_perf_policy
|
|
|
|
vinstall x86_energy_perf_policy 755 usr/bin
|
|
|
|
vinstall x86_energy_perf_policy.8 644 usr/share/man/man8
|
|
|
|
fi
|
2014-04-01 09:53:33 +02:00
|
|
|
|
|
|
|
if [ -d ${DESTDIR}/usr/lib64 ]; then
|
|
|
|
mv ${DESTDIR}/usr/lib64/* ${DESTDIR}/usr/lib/
|
|
|
|
fi
|
2013-08-08 09:18:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
cpupower_package() {
|
|
|
|
short_desc="Linux kernel tool to set CPU power features"
|
|
|
|
conf_files="/etc/cpufreq-bench.conf"
|
|
|
|
pkg_install() {
|
|
|
|
vmove "usr/bin/cpu*"
|
|
|
|
vmove "usr/share/man/man1/cpu*"
|
|
|
|
vmove usr/share/doc/cpupower
|
|
|
|
vmove usr/share/locale
|
|
|
|
vmove etc/cpufreq-bench.conf
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
libcpupower_package() {
|
|
|
|
short_desc="Linux kernel tool to set CPU power features - runtime library"
|
|
|
|
pkg_install() {
|
|
|
|
vmove "usr/lib/libcpupower.so.*"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
libcpupower-devel_package() {
|
|
|
|
short_desc="Linux kernel tool to set CPU power features - development files"
|
|
|
|
depends="libcpupower-${version}_${revision}"
|
|
|
|
pkg_install() {
|
|
|
|
vmove usr/include/cpufreq.h
|
|
|
|
vmove usr/lib/libcpupower.so
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
libusbip_package() {
|
|
|
|
short_desc="An USB device sharing system over IP network - runtime library"
|
|
|
|
pkg_install() {
|
|
|
|
vmove "usr/lib/libusbip.so.*"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
libusbip-devel_package() {
|
|
|
|
short_desc="An USB device sharing system over IP network - development files"
|
|
|
|
depends="libusbip-${version}_${revision}"
|
|
|
|
pkg_install() {
|
|
|
|
vmove usr/include/usbip
|
|
|
|
vmove usr/lib/libusbip.a
|
|
|
|
vmove usr/lib/libusbip.so
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
perf_package() {
|
|
|
|
short_desc="Linux kernel performance auditing tool"
|
|
|
|
pkg_install() {
|
|
|
|
vmove usr/bin/perf
|
2014-03-18 07:56:06 +01:00
|
|
|
vmove usr/bin/trace
|
2014-04-01 09:53:33 +02:00
|
|
|
vmove usr/lib/traceevent
|
2014-03-18 07:56:06 +01:00
|
|
|
vmove usr/libexec/perf-core
|
2013-08-08 09:18:10 +02:00
|
|
|
vmove usr/share/bash-completion
|
|
|
|
vmove "usr/share/man/man1/perf*"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-06 10:56:38 +02:00
|
|
|
x86_energy_perf_policy_package() {
|
|
|
|
short_desc="Read or write MSR_IA32_ENERGY_PERF_BIAS"
|
|
|
|
pkg_install() {
|
|
|
|
vmove usr/bin/x86_energy_perf_policy
|
|
|
|
vmove usr/share/man/man8/x86_energy_perf_policy.8
|
2013-08-08 09:18:10 +02:00
|
|
|
}
|
2014-09-06 10:56:38 +02:00
|
|
|
}
|
2013-08-08 09:18:10 +02:00
|
|
|
|
|
|
|
usbip_package() {
|
|
|
|
short_desc="An USB device sharing system over IP network"
|
|
|
|
systemd_services="usbipd.service"
|
|
|
|
pkg_install() {
|
|
|
|
vmove "usr/bin/usbip*"
|
|
|
|
vmove "usr/share/man/man8/usbip*"
|
|
|
|
vmove usr/lib/modules-load.d/usbip.conf
|
|
|
|
vmove usr/lib/systemd/system/usbipd.service
|
|
|
|
}
|
|
|
|
}
|