pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/security/ccid



Module Name:    pkgsrc
Committed By:   adam
Date:           Thu May 28 06:43:46 UTC 2026

Modified Files:
        pkgsrc/security/ccid: Makefile distinfo

Log Message:
ccid: updated to 1.8.0

1.8.0

Add support of
- GLSolutions NM61 PC/SC
- Identiv uTrust FIDO2 Security Key
- Kensington VeriMark NFC+ USB-C Security Key
- MARX CryptoTech LP Tokey 3 FIDO
- mCore Contact-Reader
- mCore Contactless-Reader
- mCore DualSlot-Reader
- Pol Henarejos Pico Fido
- Pol Henarejos Pico HSM
- Pol Henarejos Pico OpenPGP
- Richmond Technologies CO. LLC AEGIS PRO4 Smart Card Reader
- SCR Prime
Remove the limitation to 16 readers
udev: Update rules file to comply with systemd documentation
(and fix permissions issue)
meson: install serial config file in correct dir
Remove support of autotools
Fix crash in multi slots readers code
Fix some race conditions
Some other minor improvements


To generate a diff of this commit:
cvs rdiff -u -r1.52 -r1.53 pkgsrc/security/ccid/Makefile
cvs rdiff -u -r1.31 -r1.32 pkgsrc/security/ccid/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/security/ccid/Makefile
diff -u pkgsrc/security/ccid/Makefile:1.52 pkgsrc/security/ccid/Makefile:1.53
--- pkgsrc/security/ccid/Makefile:1.52  Fri Feb  6 11:16:59 2026
+++ pkgsrc/security/ccid/Makefile       Thu May 28 06:43:45 2026
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.52 2026/02/06 11:16:59 adam Exp $
+# $NetBSD: Makefile,v 1.53 2026/05/28 06:43:45 adam Exp $
 
-DISTNAME=      ccid-1.7.1
+DISTNAME=      ccid-1.8.0
 CATEGORIES=    security
 MASTER_SITES=  https://ccid.apdu.fr/files/
 EXTRACT_SUFX=  .tar.xz
@@ -15,13 +15,9 @@ LICENSE=     gnu-lgpl-v2.1
 BUILD_DEFS+=   VARBASE
 
 USE_LANGUAGES=         c c++
-USE_LIBTOOL=           yes
-USE_TOOLS+=            autoconf automake autoreconf flex perl pkg-config
-GNU_CONFIGURE=         yes
-CONFIGURE_ARGS+=       --sharedstatedir=${VARBASE}
-CONFIGURE_ARGS+=       --sysconfdir=${PKG_SYSCONFDIR}
-
-TOOL_DEPENDS+=         autoconf-archive-[0-9]*:../../devel/autoconf-archive
+USE_TOOLS+=            flex perl pkg-config
+MESON_ARGS+=           -Denable-extras=true
+MESON_ARGS+=           -Dudev-rules=false
 
 .if ${OPSYS} == "Darwin"
 PLIST_SUBST+=          OSNAME=MacOS
@@ -40,37 +36,26 @@ REPLACE_PERL=               src/convert_version.pl sr
 INSTALLATION_DIRS=     bin ${PKGMANDIR}/man1 ${PKGMANDIR}/man8
 INSTALLATION_DIRS+=    sbin share/doc/ccid
 
-pre-configure:
-       cd ${WRKSRC} && autoreconf -fi
-
-.if ${OPSYS} == "Darwin"
-.PHONY: fix-darwin-install-name
-post-install: fix-darwin-install-name
-fix-darwin-install-name:
-       install_name_tool -id \
-               ${PREFIX}/lib/pcsc-lite/drivers/ifd-ccid.bundle/Contents/MacOS/libccid.dylib \
-               ${DESTDIR}${PREFIX}/lib/pcsc-lite/drivers/ifd-ccid.bundle/Contents/MacOS/libccid.dylib
-.endif
-
 post-install:
        ${INSTALL_DATA} ${WRKSRC}/README.md ${DESTDIR}${PREFIX}/share/doc/ccid/README.md
-       ${INSTALL_PROGRAM} ${WRKSRC}/contrib/RSA_SecurID/RSA_SecurID_getpasswd \
-       ${DESTDIR}${PREFIX}/bin/RSA_SecurID_getpasswd
+       ${INSTALL_PROGRAM} ${WRKSRC}/output/RSA_SecurID_getpasswd \
+               ${DESTDIR}${PREFIX}/bin/RSA_SecurID_getpasswd
        ${INSTALL_DATA} ${WRKSRC}/contrib/RSA_SecurID/RSA_SecurID_getpasswd.1 \
-       ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/RSA_SecurID_getpasswd.1
-       ${INSTALL_PROGRAM} ${WRKSRC}/contrib/Kobil_mIDentity_switch/Kobil_mIDentity_switch \
-       ${DESTDIR}${PREFIX}/sbin/Kobil_mIDentity_switch
+               ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/RSA_SecurID_getpasswd.1
+       ${INSTALL_PROGRAM} ${WRKSRC}/output/Kobil_mIDentity_switch \
+               ${DESTDIR}${PREFIX}/sbin/Kobil_mIDentity_switch
        ${INSTALL_DATA} ${WRKSRC}/contrib/Kobil_mIDentity_switch/Kobil_mIDentity_switch.8 \
-       ${DESTDIR}${PREFIX}/${PKGMANDIR}/man8/Kobil_mIDentity_switch.8
+               ${DESTDIR}${PREFIX}/${PKGMANDIR}/man8/Kobil_mIDentity_switch.8
        ${INSTALL_DATA} ${WRKSRC}/contrib/Kobil_mIDentity_switch/README_Kobil_mIDentity_switch.txt \
-       ${DESTDIR}${PREFIX}/share/doc/ccid/README_Kobil_mIDentity_switch.txt
+               ${DESTDIR}${PREFIX}/share/doc/ccid/README_Kobil_mIDentity_switch.txt
 
-.include "../../security/pcsc-lite/buildlink3.mk"
 .if ${OPSYS} == "Linux"
 BUILDLINK_DEPMETHOD.flex=      full
 .include "../../devel/flex/buildlink3.mk"
 .endif
+.include "../../devel/meson/build.mk"
 .include "../../devel/libusb1/buildlink3.mk"
 .include "../../devel/zlib/buildlink3.mk"
+.include "../../security/pcsc-lite/buildlink3.mk"
 .include "../../mk/pthread.buildlink3.mk"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/security/ccid/distinfo
diff -u pkgsrc/security/ccid/distinfo:1.31 pkgsrc/security/ccid/distinfo:1.32
--- pkgsrc/security/ccid/distinfo:1.31  Fri Feb  6 11:16:59 2026
+++ pkgsrc/security/ccid/distinfo       Thu May 28 06:43:45 2026
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.31 2026/02/06 11:16:59 adam Exp $
+$NetBSD: distinfo,v 1.32 2026/05/28 06:43:45 adam Exp $
 
-BLAKE2s (ccid-1.7.1.tar.xz) = afc3f0b1b263246c8e758646ddeafdd3f116202e0524521a5fdcfa76a5bc1a9f
-SHA512 (ccid-1.7.1.tar.xz) = 4cd287e1ecf0a7f2b24715ff068733987c5ff6d383c36a77c4480aed70d19ce7f185e8f3dcf7773165461f8059d67e2f9d170b7b3a81b9d2713ea47ba61e9aa5
-Size (ccid-1.7.1.tar.xz) = 202928 bytes
+BLAKE2s (ccid-1.8.0.tar.xz) = 76af68f6bbd13b2623e7c152a4ebd0f20beb814cce82a7f43dd078c2224e4d00
+SHA512 (ccid-1.8.0.tar.xz) = bf5c1d52561b35edd65cecc94f413d9bdcd17b154ec0c43e8caf4c65f8d8168a05a632f5469c097501902e6a4740c7839c909d881feb157424c3339fc1e1826b
+Size (ccid-1.8.0.tar.xz) = 196956 bytes



Home | Main Index | Thread Index | Old Index