384c2bae3b
- Upgrade to 1.2.9.b.7 - Use libtool15 - make hier(7)-compliant by moving the pcsc/drivers to lib/pcsc/drivers - Compile with USB support per default. Use WITHOUT_USB to disable usb support - Chase libusb shared library version (Forgotten by leeym) Based on: PR 76068 Reviewed by: maintainer, sem (earlier patch) ifd-devkit: - Chase pcsclite sharedlibrary version ifd-gempc410: - Unbreak by updating to 0.9.3 - Move library to lib/pcsc/drivers - Chase pcsclite sharedlibrary version NOTE: This was not tested, I don't own the specific hardware ifd-gpr400: - Chase pcsclite sharedlibrary version - Fix build with new pcsc-lite - Chase new pcsclite drivers location ifd-slb_rf60: - Chase pcsclite sharedlibrary version ifd-test: - Chase pcsclite sharedlibrary version - Fix build with new pcsclite libchipcard: - Update to 0.9.1[1] - Chase pcsclite shared library version - Fix build with new pcsclite [1]PR: 78815 [1]Submitted by: lofi opensc: - Chase pcsclite shared library version - Fix build on CURRENT opensc-esteid - Chase pcsclite shared library version - Fix build with new pcsclite p5-PCSC-Card: - Update to 1.4.2 - Chase pcsclite shared library version - Fix build with new pcsclite ruby-pcsc-lite - Mark broken, does not compile with new pcsc-lite Maintainer will work on new version Submitted by: maintainer
46 lines
1.1 KiB
Makefile
46 lines
1.1 KiB
Makefile
# New ports collection makefile for: ifd-gempc410
|
|
# Date created: 2003-05-09
|
|
# Whom: des
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= ifd-gempc410
|
|
PORTVERSION= 0.9.3
|
|
CATEGORIES= security
|
|
MASTER_SITES= http://ludovic.rousseau.free.fr/softwares/ifd-GemPC/
|
|
DISTNAME= ifd-gempc-${PORTVERSION}
|
|
|
|
MAINTAINER= des@freebsd.org
|
|
COMMENT= PC/SC Lite driver for the GemPC 410 serial smart card reader
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/include/ifdhandler.h:${PORTSDIR}/security/ifd-devkit
|
|
LIB_DEPENDS= pcsclite.1:${PORTSDIR}/devel/pcsc-lite
|
|
|
|
USE_GMAKE= yes
|
|
USE_REINPLACE= yes
|
|
|
|
MAKE_ARGS+= -CGemPC410
|
|
|
|
INSTALLS_SHLIB= yes
|
|
|
|
NOMAN=
|
|
|
|
PKGMESSAGE= ${WRKDIR}/message
|
|
|
|
post-configure:
|
|
${FIND} ${WRKSRC} -type f -print0 | ${XARGS} -0 ${REINPLACE_CMD} \
|
|
-e '/INCS/ s,/usr/local,${LOCALBASE},g' \
|
|
-e '/DESTDIR/ s,/usr/local,${PREFIX},g'
|
|
${SED} -e 's|%%PREFIX%%|${PREFIX}|g' <${FILESDIR}/message >${PKGMESSAGE}
|
|
${TOUCH} ${WRKSRC}/GemPC410/dep_stamp ${WRKSRC}/common/dep_stamp
|
|
|
|
do-install:
|
|
${MKDIR} ${PREFIX}/lib/pcsc/drivers/serial
|
|
${INSTALL_DATA} ${WRKSRC}/GemPC410/libGemPC410.so* \
|
|
${PREFIX}/lib/pcsc/drivers/serial
|
|
|
|
post-install:
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|