2024-09-09 08:57:42 +00:00
|
|
|
SUMMARY = "PCI utilities"
|
2024-09-09 08:52:07 +00:00
|
|
|
DESCRIPTION = 'The PCI Utilities package contains a library for portable access \
|
|
|
|
to PCI bus configuration space and several utilities based on this library.'
|
|
|
|
HOMEPAGE = "http://atrey.karlin.mff.cuni.cz/~mj/pciutils.shtml"
|
|
|
|
SECTION = "console/utils"
|
|
|
|
|
|
|
|
LICENSE = "GPLv2+"
|
|
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe"
|
2024-09-09 08:57:42 +00:00
|
|
|
DEPENDS = "zlib kmod"
|
2024-09-09 08:52:07 +00:00
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
SRC_URI = "${KERNELORG_MIRROR}/software/utils/pciutils/pciutils-${PV}.tar.xz \
|
2024-09-09 08:52:07 +00:00
|
|
|
file://configure.patch \
|
|
|
|
file://guess-fix.patch \
|
|
|
|
file://makefile.patch"
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
SRC_URI[md5sum] = "3c19adf32a8457983b71ff376ef7dafe"
|
|
|
|
SRC_URI[sha256sum] = "413395d4bdc66fdedd6c993ed9083d1dd73812bf2a679d320f73de35c7801301"
|
2024-09-09 08:52:07 +00:00
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
inherit multilib_header
|
|
|
|
|
|
|
|
PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'hwdb', '', d)}"
|
|
|
|
PACKAGECONFIG[hwdb] = "HWDB=yes,HWDB=no,udev"
|
2024-09-09 08:52:07 +00:00
|
|
|
|
|
|
|
PCI_CONF_FLAG = "ZLIB=yes DNS=yes SHARED=yes"
|
|
|
|
|
|
|
|
# see configure.patch
|
|
|
|
do_configure () {
|
|
|
|
(
|
|
|
|
cd lib && \
|
2024-09-09 08:57:42 +00:00
|
|
|
# EXTRA_OECONF for this recipe could only possibly contain 'HWDB=yes/no', so we put it
|
|
|
|
# before ./configure
|
|
|
|
${PCI_CONF_FLAG} ${EXTRA_OECONF} ./configure ${PV} ${datadir} ${TARGET_OS} ${TARGET_ARCH}
|
2024-09-09 08:52:07 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
export PREFIX = "${prefix}"
|
|
|
|
export SBINDIR = "${sbindir}"
|
|
|
|
export SHAREDIR = "${datadir}"
|
|
|
|
export MANDIR = "${mandir}"
|
|
|
|
|
|
|
|
EXTRA_OEMAKE += "${PCI_CONF_FLAG}"
|
|
|
|
|
|
|
|
# The configure script breaks if the HOST variable is set
|
|
|
|
HOST[unexport] = "1"
|
|
|
|
|
|
|
|
do_install () {
|
|
|
|
oe_runmake DESTDIR=${D} install install-lib
|
|
|
|
|
|
|
|
install -d ${D}${bindir}
|
|
|
|
ln -s ../sbin/lspci ${D}${bindir}/lspci
|
2024-09-09 08:57:42 +00:00
|
|
|
|
|
|
|
oe_multilib_header pci/config.h
|
2024-09-09 08:52:07 +00:00
|
|
|
}
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
PACKAGES =+ "${PN}-ids libpci libpci-dev libpci-dbg"
|
|
|
|
FILES_${PN}-ids = "${datadir}/pci.ids*"
|
2024-09-09 08:52:07 +00:00
|
|
|
FILES_libpci = "${libdir}/libpci.so.*"
|
|
|
|
FILES_libpci-dbg = "${libdir}/.debug"
|
|
|
|
FILES_libpci-dev = "${libdir}/libpci.a ${libdir}/libpci.la ${libdir}/libpci.so \
|
|
|
|
${includedir}/pci ${libdir}/pkgconfig"
|
2024-09-09 08:57:42 +00:00
|
|
|
SUMMARY_${PN}-ids = "PCI utilities - device ID database"
|
|
|
|
DESCRIPTION_${PN}-ids = "Package providing the PCI device ID database for pciutils."
|
|
|
|
RDEPENDS_${PN} += "${PN}-ids"
|