pcsc-lite: add version 1.7.2
authorOtavio Salvador <otavio@ossystems.com.br>
Mon, 16 May 2011 22:15:26 +0000 (22:15 +0000)
committerPatrick Ohly <patrick.ohly@intel.com>
Fri, 9 Jan 2015 16:12:10 +0000 (08:12 -0800)
(From meta-openembedded rev: 01e28b89e6c082653c0d7efa8dc19cd104fd42c8)

Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
meta-openembedded/meta-oe/recipes-support/pcsc-lite/files/pcscd.init [new file with mode: 0644]
meta-openembedded/meta-oe/recipes-support/pcsc-lite/pcsc-lite_1.7.2.bb [new file with mode: 0644]

diff --git a/meta-openembedded/meta-oe/recipes-support/pcsc-lite/files/pcscd.init b/meta-openembedded/meta-oe/recipes-support/pcsc-lite/files/pcscd.init
new file mode 100644 (file)
index 0000000..92385ab
--- /dev/null
@@ -0,0 +1,32 @@
+#!/bin/sh
+DAEMON=/usr/sbin/pcscd
+NAME=pcscd
+DESC="PCSC Daemon"
+PIDFILE=/var/run/pcscd/pcscd.pid
+ARGS=""
+
+test -f $DAEMON || exit 0
+
+case "$1" in
+    start)
+        echo -n "Starting $DESC: $NAME"
+        start-stop-daemon --start --quiet --pidfile $PIDFILE --exec $DAEMON -- $ARGS
+        echo "."
+        ;;
+    stop)
+        echo -n "Stopping $DESC: $NAME"
+        start-stop-daemon --stop --quiet --pidfile $PIDFILE --exec $DAEMON
+        echo "."
+        ;;
+    restart)
+        $0 stop
+        sleep 1
+        $0 start
+        ;;
+    *)
+        echo "Usage: $0 {start|stop|restart}"
+        exit 1
+        ;;
+esac
+
+exit 0
diff --git a/meta-openembedded/meta-oe/recipes-support/pcsc-lite/pcsc-lite_1.7.2.bb b/meta-openembedded/meta-oe/recipes-support/pcsc-lite/pcsc-lite_1.7.2.bb
new file mode 100644 (file)
index 0000000..7d235d6
--- /dev/null
@@ -0,0 +1,38 @@
+DESCRIPTION = "PC/SC Lite smart card framework and applications"
+HOMEPAGE = "http://pcsclite.alioth.debian.org/"
+LICENSE = "BSD"
+LIC_FILES_CHKSUM = "file://COPYING;md5=c8e551349dc346258274f0007679e149"
+DEPENDS = "udev"
+PR = "r0"
+
+SRC_URI = "https://alioth.debian.org/frs/download.php/3533/pcsc-lite-${PV}.tar.bz2 \
+           file://pcscd.init "
+
+SRC_URI[md5sum] = "47e7055cfc14399fdaa1b7a4aa06e5aa"
+SRC_URI[sha256sum] = "41f13d552eaa2c3978fbb6f2125e81903a0767011d999052fd1a6ee03880b398"
+
+inherit autotools update-rc.d
+
+EXTRA_OECONF = " \
+       --disable-libusb \
+       --enable-libudev \
+       --enable-usbdropdir=${libdir}/pcsc/drivers \
+       "
+
+S = "${WORKDIR}/pcsc-lite-${PV}"
+
+do_install() {
+       oe_runmake DESTDIR="${D}" install
+       install -d "${D}/${sysconfdir}/init.d"
+       install -m 755 "${WORKDIR}/pcscd.init" "${D}/${sysconfdir}/init.d/pcscd"
+
+       # handle vars values
+       sed -i 's,/usr/sbin,${sbindir},g;s,/var,${localstatedir},g' "${D}/${sysconfdir}/init.d/pcscd"
+}
+
+PACKAGES =+ "${PN}-lib"
+
+INITSCRIPT_NAME = "pcscd"
+INITSCRIPT_PARAMS = "defaults"
+
+FILES_${PN}-lib = "${libdir}/lib*${SOLIBS}"