diff options
author | edwin <edwin@FreeBSD.org> | 2004-07-19 06:04:16 +0000 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2004-07-19 06:04:16 +0000 |
commit | bb900f8ce57b2df1671b39999652934e5b2764d4 (patch) | |
tree | 7e7e333cff08cf90883567c363a6c7bfe40c056f /security/ifd-slb_rf60/Makefile | |
parent | b65b38f355b47b4c5d11a9844ef06db6a615ebe2 (diff) | |
download | FreeBSD-ports-bb900f8ce57b2df1671b39999652934e5b2764d4.zip FreeBSD-ports-bb900f8ce57b2df1671b39999652934e5b2764d4.tar.gz |
New port: devel/slb_rf60
This is a pcsc-lite driver for the Schlumberger Reflex 62/64
serial smartcard reader
This port should be filed under "security/ifd-slb_rf60"
because there are already some other pcsc-lite drivers
follow this convention.
I also made a few minor changes because of portlint warnings,
so please apply this patch and rename the directory to
"ifd-slb_rf60" before committing.
PR: ports/63120
Submitted by: Toni Andjelkovic <toni@soth.at>
Diffstat (limited to 'security/ifd-slb_rf60/Makefile')
-rw-r--r-- | security/ifd-slb_rf60/Makefile | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/security/ifd-slb_rf60/Makefile b/security/ifd-slb_rf60/Makefile new file mode 100644 index 0000000..7ff82dd --- /dev/null +++ b/security/ifd-slb_rf60/Makefile @@ -0,0 +1,40 @@ +# New ports collection makefile for: slb_rf60 +# Date created: 20 Feb 2003 +# Whom: Toni Andjelkovic <toni@soth.at> +# +# $FreeBSD$ +# + +PORTNAME= ifd-slb_rf60 +PORTVERSION= 2.2.0 +CATEGORIES= security devel +MASTER_SITES= http://www.linuxnet.com/drivers/readers/files/ +DISTNAME= ${PORTNAME:S/^ifd-//}-drv-${PORTVERSION} + +MAINTAINER= toni@soth.at +COMMENT= PC/SC Lite driver for the Reflex 62 serial smart card reader + +LIB_DEPENDS= pcsclite.0:${PORTSDIR}/devel/pcsc-lite + +USE_GMAKE= yes + +PKGMESSAGE= ${WRKDIR}/pkg-message +WRKSRC= ${WRKDIR}/${PORTNAME:S/^ifd-//} + +PORTDOCS= README +PLIST_FILES= pcsc/drivers/libslb_rf60.so + +do-install: + ${INSTALL_DATA} ${WRKSRC}/libslb_rf60.so \ + ${PREFIX}/pcsc/drivers/libslb_rf60.so + +post-install: +.if !defined(NOPORTDOCS) + @${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} +.endif + @${SED} 's,%%PREFIX%%,${PREFIX},g' < ${FILESDIR}/pkg-message.in > \ + ${WRKDIR}/pkg-message + @${CAT} ${PKGMESSAGE} + +.include <bsd.port.mk> |