blob: 29885fbe77d2ed9fd6239927f1c63e3ca7999dc1 [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001# Copyright (C) 2012 Khem Raj <raj.khem@gmail.com>
2# Released under the MIT license (see COPYING.MIT for the terms)
3
4SUMMARY = "Tools for managing Linux kernel modules"
5DESCRIPTION = "kmod is a set of tools to handle common tasks with Linux kernel modules like \
6 insert, remove, list, check properties, resolve dependencies and aliases."
7HOMEPAGE = "http://packages.profusion.mobi/kmod/"
8LICENSE = "GPL-2.0+ & LGPL-2.1+"
9LICENSE_libkmod = "LGPL-2.1+"
10SECTION = "base"
11
Patrick Williamsc124f4f2015-09-15 14:41:29 -050012LIC_FILES_CHKSUM = "file://COPYING;md5=a6f89e2100d9b6cdffcea4f398e37343 \
13 file://libkmod/COPYING;md5=a6f89e2100d9b6cdffcea4f398e37343 \
14 "
Brad Bishop6e60e8b2018-02-01 10:27:11 -050015inherit autotools gtk-doc pkgconfig manpages
Patrick Williamsc124f4f2015-09-15 14:41:29 -050016
Brad Bishop316dfdd2018-06-25 12:45:53 -040017SRCREV = "aca4eca103d6699543f7ed663335c28c2e9908bb"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050018# Lookout for PV bump too when SRCREV is changed
Brad Bishop316dfdd2018-06-25 12:45:53 -040019PV = "25+git${SRCPV}"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050020
21SRC_URI = "git://git.kernel.org/pub/scm/utils/kernel/kmod/kmod.git \
22 file://depmod-search.conf \
23 file://avoid_parallel_tests.patch \
24 file://fix-O_CLOEXEC.patch \
25 "
26
27S = "${WORKDIR}/git"
28
29EXTRA_AUTORECONF += "--install --symlink"
Brad Bishop6e60e8b2018-02-01 10:27:11 -050030EXTRA_OECONF +=" --enable-tools --with-zlib"
31
32CACHED_CONFIGUREVARS += "ac_cv_path_DOLT_BASH='/usr/bin/env bash'"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050033
34PACKAGECONFIG[debug] = "--enable-debug,--disable-debug"
35PACKAGECONFIG[logging] = " --enable-logging,--disable-logging"
Brad Bishop6e60e8b2018-02-01 10:27:11 -050036PACKAGECONFIG[manpages] = "--enable-manpages, --disable-manpages, libxslt-native xmlto-native"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050037
Brad Bishop316dfdd2018-06-25 12:45:53 -040038GTKDOC_DOCDIR = "${S}/libkmod/docs"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050039
40do_configure_append () {
41 sed -i 's#}libtool#}${TARGET_SYS}-libtool#' ${B}/doltlibtool
42}