mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-01-04 16:10:10 +00:00
To fix error as following:
file /var/run from install of openct-0.6.20-r0
conflicts with file from package base-files-3.0.14
Signed-off-by: Dai Caiyun <daicy.fnst@cn.fujitsu.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
(cherry picked from commit 387824f176)
Signed-off-by: Armin Kuster <akuster808@gmail.com>
96 lines
2.9 KiB
BlitzBasic
96 lines
2.9 KiB
BlitzBasic
Summanry = "Middleware framework for smart card terminals"
|
|
DESCRIPTION = " \
|
|
OpenCT implements drivers for several smart card readers. \
|
|
It comes as driver in ifdhandler format for PC/SC-Lite, \
|
|
as CT-API driver, or as a small and lean middleware, \
|
|
so applications can use it with minimal overhead. \
|
|
OpenCT also has a primitive mechanism to export smart card \
|
|
readers to remote machines via TCP/IP."
|
|
|
|
DEPENDS += "libtool pcsc-lite libusb-compat"
|
|
|
|
SRC_URI = " \
|
|
${DEBIAN_MIRROR}/main/o/${BPN}/${BPN}_${PV}.orig.tar.gz \
|
|
file://etc-openct.udev.in-disablePROGRAM.patch \
|
|
file://etc-openct_usb.in-modify-UDEVINFO.patch \
|
|
file://openct.init \
|
|
file://openct.sysconfig \
|
|
file://openct.service \
|
|
"
|
|
|
|
SRC_URI[md5sum] = "a1da3358ab798f1cb9232f1dbababc21"
|
|
SRC_URI[sha256sum] = "6cd3e2933d29eb1f875c838ee58b8071fd61f0ec8ed5922a86c01c805d181a68"
|
|
|
|
LICENSE = "LGPLv2+"
|
|
LIC_FILES_CHKSUM = "file://LGPL-2.1;md5=2d5025d4aa3495befef8f17206a5b0a1"
|
|
|
|
inherit ${@bb.utils.contains('VIRTUAL-RUNTIME_init_manager','systemd','systemd','', d)}
|
|
SYSTEMD_SERVICE_${PN} += "openct.service "
|
|
SYSTEMD_AUTO_ENABLE = "enable"
|
|
|
|
EXTRA_OECONF=" \
|
|
--disable-static \
|
|
--enable-usb \
|
|
--enable-pcsc \
|
|
--enable-doc \
|
|
--enable-api-doc \
|
|
--with-udev=/lib/udev \
|
|
--with-bundle=${libdir}/pcsc/drivers \
|
|
"
|
|
|
|
inherit autotools pkgconfig
|
|
|
|
FILES_${PN} += " \
|
|
${libdir}/ctapi \
|
|
/lib/udev \
|
|
${libdir}/openct-ifd.so \
|
|
${libdir}/pcsc \
|
|
/run/openct/status \
|
|
"
|
|
|
|
FILES_${PN}-dbg += " \
|
|
${libdir}/ctapi/.debug \
|
|
${libdir}/pcsc/drivers/openct-ifd.bundle/Contents/Linux/.debug \
|
|
"
|
|
|
|
INSANE_SKIP_${PN} += "dev-deps"
|
|
|
|
do_install_append() {
|
|
rm -r ${D}/${localstatedir}/run
|
|
}
|
|
|
|
do_install () {
|
|
rm -rf ${D}
|
|
install -d ${D}/etc
|
|
install -dm 755 ${D}/lib/udev
|
|
# fix up hardcoded paths
|
|
sed -i -e 's,/etc/,${sysconfdir}/,' -e 's,/usr/sbin/,${sbindir}/,' \
|
|
${WORKDIR}/openct.service ${WORKDIR}/openct.init
|
|
|
|
oe_runmake install DESTDIR=${D}
|
|
install -dm 755 ${D}${libdir}/ctapi/
|
|
mv ${D}${libdir}/libopenctapi.so ${D}${libdir}/ctapi/
|
|
install -Dpm 644 etc/openct.udev ${D}/etc/udev/rules.d/60-openct.rules
|
|
install -pm 644 etc/openct.conf ${D}/etc/openct.conf
|
|
|
|
install -Dpm 755 ${WORKDIR}/openct.init ${D}/etc/init.d/openct
|
|
install -Dpm 644 ${WORKDIR}/openct.sysconfig ${D}/etc/sysconfig/openct
|
|
|
|
if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then
|
|
install -d ${D}/${systemd_unitdir}/system
|
|
install -m 644 ${WORKDIR}/openct.service ${D}/${systemd_unitdir}/system
|
|
fi
|
|
|
|
so=$(find ${D} -name \*.so | sed "s|^${D}||")
|
|
sed -i -e 's|\\(LIBPATH\\s*\\).*|\\1$so|' etc/reader.conf
|
|
install -Dpm 644 etc/reader.conf ${D}/etc/reader.conf.d/openct.conf
|
|
|
|
install -dm 755 ${D}${localstatedir}/run/openct
|
|
touch ${D}${localstatedir}/run/openct/status
|
|
chmod 644 ${D}${localstatedir}/run/openct/status
|
|
}
|
|
|
|
pkg_postinst_${PN} () {
|
|
ln -sf ctapi/libopenctapi.so ${libdir}/libopenctapi.so
|
|
}
|