This package contains tools used to test a PC/SC driver, card or reader. - pcsc_scan regularly scans PC/SC readers connected to the host, and displays information about any cards which are inserted. - ATR_analysis is a Perl script used to parse the smart card ATR, and can be called by pcsc_scan. - scriptor is a Perl script to send commands to a smart card. - gscriptor is a Perl script with a Gtk-based graphical interface. (Install the p5-Gtk2 package to use this).
34 lines
708 B
Makefile
34 lines
708 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2015/01/08 15:08:53 sthen Exp $
|
|
|
|
COMMENT= tools for use with PC/SC drivers, cards, readers
|
|
|
|
DISTNAME= pcsc-tools-1.4.23
|
|
|
|
CATEGORIES= security sysutils
|
|
|
|
HOMEPAGE= http://ludovic.rousseau.free.fr/softwares/pcsc-tools/
|
|
|
|
MAINTAINER= Stuart Henderson <sthen@openbsd.org>
|
|
|
|
# GPLv2+
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
|
|
WANTLIB += c pcsclite pthread
|
|
|
|
MASTER_SITES= http://ludovic.rousseau.free.fr/softwares/pcsc-tools/
|
|
|
|
# gscriptor requires p5-Gtk2, intentionally not listed as a hard dep
|
|
RUN_DEPENDS= security/p5-Chipcard-PCSC
|
|
|
|
LIB_DEPENDS= security/pcsc-lite
|
|
|
|
FAKE_FLAGS= DESTDIR=${WRKINST}${PREFIX}
|
|
|
|
USE_GMAKE= Yes
|
|
|
|
NO_TEST= Yes
|
|
|
|
CFLAGS+= -I${LOCALBASE}/include/PCSC
|
|
|
|
.include <bsd.port.mk>
|