2012-01-13 09:19:30 +00:00
|
|
|
# Template file for 'kmod'
|
|
|
|
pkgname=kmod
|
2013-04-17 11:09:55 +00:00
|
|
|
version=13
|
2013-05-27 12:10:57 +00:00
|
|
|
revision=3
|
2012-01-13 09:19:30 +00:00
|
|
|
build_style=gnu-configure
|
2012-11-08 15:25:02 +00:00
|
|
|
configure_args="--with-zlib --with-xz"
|
2013-03-24 09:21:58 +00:00
|
|
|
hostmakedepends="pkg-config libxslt"
|
|
|
|
makedepends="zlib-devel liblzma-devel"
|
2012-01-13 09:19:30 +00:00
|
|
|
short_desc="Linux kernel module handling"
|
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
|
|
license="GPL-2"
|
2012-09-07 14:02:47 +00:00
|
|
|
homepage="http://git.profusion.mobi/cgit.cgi/kmod.git"
|
|
|
|
distfiles="${KERNEL_SITE}/utils/kernel/kmod/kmod-${version}.tar.xz"
|
2013-04-17 11:09:55 +00:00
|
|
|
checksum=6c36d3abba2f98c84973ae275951c866f8bf304e7356c2fe60633800239d7956
|
2013-05-27 12:10:57 +00:00
|
|
|
long_desc="
|
|
|
|
kmod is a set of tools to handle common tasks with Linux kernel modules like
|
|
|
|
insert, remove, list, check properties, resolve dependencies and aliases."
|
2012-01-13 09:19:30 +00:00
|
|
|
|
2013-04-08 23:49:27 +00:00
|
|
|
if [ "$CROSS_BUILD" ]; then
|
2013-04-17 11:09:55 +00:00
|
|
|
hostmakedepends+=" libtool automake"
|
2013-02-12 16:14:20 +00:00
|
|
|
pre_configure() {
|
|
|
|
autoreconf -fi
|
|
|
|
}
|
|
|
|
fi
|
|
|
|
|
2012-01-13 09:19:30 +00:00
|
|
|
post_install() {
|
2012-07-09 12:48:58 +00:00
|
|
|
vinstall ${FILESDIR}/depmod-search.conf 644 usr/lib/depmod.d search.conf
|
|
|
|
# Add compatibility symlinks.
|
|
|
|
vmkdir usr/sbin
|
2012-04-20 07:02:10 +00:00
|
|
|
for tool in {ls,ins,rm,dep}mod mod{info,probe}; do
|
2013-04-17 11:09:55 +00:00
|
|
|
cd ${DESTDIR}/usr/sbin
|
|
|
|
ln -sf ../bin/kmod $tool
|
2012-01-13 09:19:30 +00:00
|
|
|
done
|
|
|
|
}
|
2013-04-12 15:12:12 +00:00
|
|
|
|
|
|
|
libkmod_package() {
|
2013-05-27 09:50:12 +00:00
|
|
|
short_desc+=" - runtime shared library"
|
2013-04-12 15:12:12 +00:00
|
|
|
pkg_install() {
|
|
|
|
vmove "usr/lib/*.so*"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
libkmod-devel_package() {
|
2013-05-27 09:50:12 +00:00
|
|
|
depends="zlib-devel liblzma-devel libkmod>=${version}"
|
|
|
|
short_desc+=" - development files"
|
2013-04-12 15:12:12 +00:00
|
|
|
pkg_install() {
|
|
|
|
vmove usr/include
|
|
|
|
vmove usr/lib/pkgconfig
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
kmod_package() {
|
|
|
|
make_dirs="
|
|
|
|
/etc/depmod.d 0755 root root
|
|
|
|
/etc/modprobe.d 0755 root root
|
|
|
|
/usr/lib/depmod.d 0755 root root
|
|
|
|
/usr/lib/modprobe.d 0755 root root"
|
|
|
|
provides="module-init-tools-3.17"
|
|
|
|
replaces="module-init-tools>=0"
|
|
|
|
pkg_install() {
|
2013-05-27 09:50:12 +00:00
|
|
|
vmove all
|
2013-04-12 15:12:12 +00:00
|
|
|
}
|
|
|
|
}
|