mirror of
https://github.com/thead-yocto-mirror/meta-openembedded
synced 2026-09-17 12:41:58 +02:00
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>
56 lines
1.8 KiB
BlitzBasic
56 lines
1.8 KiB
BlitzBasic
SUMMARY = "PC/SC Lite smart card framework and applications"
|
|
HOMEPAGE = "http://pcsclite.alioth.debian.org/"
|
|
LICENSE = "BSD & GPLv3+"
|
|
LICENSE_${PN} = "BSD"
|
|
LICENSE_${PN}-lib = "BSD"
|
|
LICENSE_${PN}-doc = "BSD"
|
|
LICENSE_${PN}-dev = "BSD"
|
|
LICENSE_${PN}-dbg = "BSD & GPLv3+"
|
|
LICENSE_${PN}-spy = "GPLv3+"
|
|
LICENSE_${PN}-spy-dev = "GPLv3+"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=628c01ba985ecfa21677f5ee2d5202f6"
|
|
|
|
SRC_URI = "https://pcsclite.apdu.fr/files/${BP}.tar.bz2"
|
|
SRC_URI[md5sum] = "c20650a36062ab1689f37f3302c988f2"
|
|
SRC_URI[sha256sum] = "d76d79edc31cf76e782b9f697420d3defbcc91778c3c650658086a1b748e8792"
|
|
|
|
inherit autotools systemd pkgconfig
|
|
|
|
EXTRA_OECONF = " \
|
|
--disable-libusb \
|
|
--enable-usbdropdir=${libdir}/pcsc/drivers \
|
|
"
|
|
|
|
S = "${WORKDIR}/pcsc-lite-${PV}"
|
|
|
|
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}"
|
|
FILES_${PN}-dev = "${includedir} \
|
|
${libdir}/pkgconfig \
|
|
${libdir}/libpcsclite.la \
|
|
${libdir}/libpcsclite.so"
|
|
|
|
FILES_${PN}-spy = "${bindir}/pcsc-spy \
|
|
${libdir}/libpcscspy*${SOLIBS}"
|
|
FILES_${PN}-spy-dev = "${libdir}/libpcscspy.la \
|
|
${libdir}/libpcscspy.so "
|
|
|
|
RPROVIDES_${PN} += "${PN}-systemd"
|
|
RREPLACES_${PN} += "${PN}-systemd"
|
|
RCONFLICTS_${PN} += "${PN}-systemd"
|
|
SYSTEMD_SERVICE_${PN} = "pcscd.socket"
|
|
RDEPENDS_${PN}-spy +="python"
|
|
|
|
BBCLASSEXTEND = "native"
|