pkgsrc-wip/pcsc-lite/options.mk
Sergey Svishchev 7b4709677e Delint:
- convert spaces to tabs (pkglint --autofix)
- set, not append to USE_LANGUAGES
2006-10-29 08:32:37 +00:00

19 lines
473 B
Makefile

# $NetBSD: options.mk,v 1.3 2006/10/29 08:32:53 shattered Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.pcsc-lite
PKG_SUPPORTED_OPTIONS= extendedapdu usb
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mextendedapdu)
CONFIGURE_ARGS+= --enable-extendedapdu
.else
CONFIGURE_ARGS+= --enable-extendedapdu=no
.endif
.if !empty(PKG_OPTIONS:Musb)
CONFIGURE_ARGS+= --enable-libusb
.include "../../devel/libusb/buildlink3.mk"
.else
CONFIGURE_ARGS+= --disable-libusb
.endif