forked from Lainports/freebsd-ports
- Change the upstream URL to https://ccid.apdu.fr/ - Update WWW - Clean up: - Remove the "post-patch" target. It is no longer needed. - Remove unused PLIST_SUB - Pet portlint: - Move USE_PERL to the the USE* section - Set USE_LDCONFIG. Upstream changelog: https://salsa.debian.org/rousseau/CCID/blob/master/README Reviewed by: krion, mmokhi Approved by: krion (mentor), mmokhi (maintainer) Differential Revision: https://reviews.freebsd.org/D17479
33 lines
789 B
Makefile
33 lines
789 B
Makefile
# Created by: arved
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= ccid
|
|
PORTVERSION= 1.4.30
|
|
CATEGORIES= devel
|
|
MASTER_SITES= https://ccid.apdu.fr/files/
|
|
|
|
MAINTAINER= mmokhi@FreeBSD.org
|
|
COMMENT= Generic driver for USB CCID and ICCD
|
|
|
|
LICENSE= LGPL21
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
LIB_DEPENDS= libpcsclite.so:devel/pcsc-lite
|
|
|
|
USES= perl5 pkgconfig tar:bzip2
|
|
USE_LDCONFIG= yes
|
|
USE_PERL5= build
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --enable-usbdropdir=${PREFIX}/lib/pcsc/drivers \
|
|
--enable-ccidtwindir=${PREFIX}/lib/pcsc/drivers/serial
|
|
|
|
INSTALL_TARGET= install-strip
|
|
|
|
post-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/contrib/RSA_SecurID/RSA_SecurID_getpasswd \
|
|
${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/contrib/RSA_SecurID/RSA_SecurID_getpasswd.1 \
|
|
${STAGEDIR}${MANPREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|