mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-04 14:39:54 +00:00
pcsc-lite: add support for native builds
This is needed as a dependency when using SoftHSM from the PKCS#11 OpenSSL engine for code singing. Add a udev PACKAGECONFIG, as this is only useful on the target. Also don't RRECOMMEND ccid for the native variant. Signed-off-by: Jan Luebbe <jlu@pengutronix.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
@@ -9,7 +9,6 @@ LICENSE_${PN}-dbg = "BSD & GPLv3+"
|
||||
LICENSE_${PN}-spy = "GPLv3+"
|
||||
LICENSE_${PN}-spy-dev = "GPLv3+"
|
||||
LIC_FILES_CHKSUM = "file://COPYING;md5=628c01ba985ecfa21677f5ee2d5202f6"
|
||||
DEPENDS = "udev"
|
||||
|
||||
SRC_URI = "https://pcsclite.apdu.fr/files/${BP}.tar.bz2"
|
||||
SRC_URI[md5sum] = "c20650a36062ab1689f37f3302c988f2"
|
||||
@@ -19,19 +18,21 @@ inherit autotools systemd pkgconfig
|
||||
|
||||
EXTRA_OECONF = " \
|
||||
--disable-libusb \
|
||||
--enable-libudev \
|
||||
--enable-usbdropdir=${libdir}/pcsc/drivers \
|
||||
"
|
||||
|
||||
S = "${WORKDIR}/pcsc-lite-${PV}"
|
||||
|
||||
PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'systemd', d)}"
|
||||
PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'systemd', d)} udev"
|
||||
PACKAGECONFIG_class-native ??= ""
|
||||
|
||||
PACKAGECONFIG[systemd] = ",--disable-libsystemd,systemd,"
|
||||
PACKAGECONFIG[udev] = "--enable-libudev,--disable-libudev,udev"
|
||||
|
||||
PACKAGES = "${PN} ${PN}-dbg ${PN}-dev ${PN}-lib ${PN}-doc ${PN}-spy ${PN}-spy-dev"
|
||||
|
||||
RRECOMMENDS_${PN} = "ccid"
|
||||
RRECOMMENDS_${PN}_class-native = ""
|
||||
|
||||
FILES_${PN} = "${sbindir}/pcscd"
|
||||
FILES_${PN}-lib = "${libdir}/libpcsclite*${SOLIBS}"
|
||||
@@ -50,3 +51,5 @@ RREPLACES_${PN} += "${PN}-systemd"
|
||||
RCONFLICTS_${PN} += "${PN}-systemd"
|
||||
SYSTEMD_SERVICE_${PN} = "pcscd.socket"
|
||||
RDEPENDS_${PN}-spy +="python"
|
||||
|
||||
BBCLASSEXTEND = "native"
|
||||
|
||||
Reference in New Issue
Block a user