pkgsrc/security/pcsc-tools/patches/patch-aa
pettai 23c16fac6b 1.4.21
- Do not log the time every second on "old" PC/SC without support of
      \\?PnP?\Notification like on Mac OS X.
    - 79 new ATRS
    - minor fixes

1.4.20 - 16 June 2012, Ludovic ROUSSEAU
    - Makefile: Add arguments to CFLAGS instead of overwritting them
    - 3 new ATRs

1.4.19
    - ATR_analysis: use XDG_CACHE_HOME env variable
      The smartcard_list.txt file is now searched in ~/.cache/ by default
    - 115 new ATRs

1.4.18
    - gscriptor: Display hex dumps in lines of 16 bytes instead of 17
    - gscriptor: Display bytes of value 0x20 as ' ' instead of '.'
    - scriptor: Display lines of 16 bytes instead of 24
    - 223 new ATRs
    - pcsc_scan: Correctly detect reader Plug and Play support

1.4.17
    - 153 new ATRs
    - Allow to build with pcsc-lite >= 1.6.2

1.4.16
    - 153 new ATR
    - pcsc_scan.c: check for PnP support at run time instead of using a
      #define
    - ATR_analysis: use curl instead of wget on Darwin
    - gscriptor: ReaderConfig(): escape metacharacters []() in
      the reader name when using reader name as a pattern matching
2012-12-15 00:53:26 +00:00

40 lines
1,000 B
Text

$NetBSD: patch-aa,v 1.5 2012/12/15 00:53:26 pettai Exp $
honor PKGMANDIR
--- Makefile.orig 2012-06-16 10:33:32.000000000 +0000
+++ Makefile
@@ -18,7 +18,7 @@ LDLIBS := $(PCSC_LDLIBS)
BIN = pcsc_scan
BIN_SCRIPT = ATR_analysis gscriptor scriptor
-MAN = pcsc_scan.1.gz gscriptor.1p.gz scriptor.1p.gz ATR_analysis.1p.gz
+MAN = pcsc_scan.1 gscriptor.1p scriptor.1p ATR_analysis.1p
all: $(BIN) $(MAN)
@@ -33,17 +33,17 @@ install: all
install -d $(DESTDIR)/share/pcsc
install -m 644 smartcard_list.txt $(DESTDIR)/share/pcsc
- install -d $(DESTDIR)/share/man/man1/
- install -m 644 $(MAN) $(DESTDIR)/share/man/man1/
+ install -d $(DESTDIR)/$(PKGMANDIR)/man1/
+ install -m 644 $(MAN) $(DESTDIR)/$(PKGMANDIR)/man1/
clean:
rm -f pcsc_scan.o $(BIN) $(MAN)
-%.1.gz: %.1
- gzip --best $^ --to-stdout > $@
-
-%.1p.gz: %.1p
- gzip --best $^ --to-stdout > $@
+#%.1.gz: %.1
+# gzip --best $^ --to-stdout > $@
+#
+#%.1p.gz: %.1p
+# gzip --best $^ --to-stdout > $@
.PHONY: clean all install