0.23.21 (stable) * proxy: Do not assign duplicate slot IDs [PR#282] * common: Get program name based on executable path if possible [PR#307] * anchor: Exit with non-zero code, if any error occurs [PR#304] * Build and test fixes [PR#283, PR#290, PR#291, PR#292, PR#296, PR#299, PR#305, PR#306, PR#309, PR#311] 0.23.20 (stable) * Revert "Fix RPC when length-s are 0" changes [PR#276] 0.23.19 (stable) * common: add Russian PKCS#11 extensions to pkcs11x.h header [PR#255] * Add simple bash completion for provided commands [PR#258] * Unbreak list matching in enable-in and disable-in [PR#262] * Fix RPC when length-s are 0 [PR#259] * rpc: Add vsock transport support [PR#270] * trust: Support CKA_NSS_{SERVER,EMAIL}_DISTRUST_AFTER [PR#265] * Build fixes [PR#271, PR#272, PR#273, ...] 0.23.18 (stable) * rpc: Allow empty CK_DATE value [PR#253] * build: Meson fixes [PR#245] * build: Adjust feature parity between meson and autotools [PR#247] 0.23.17 (stable) * common: Fix uClibc-ng compilation [PR#237] * trust: do not allow daylight to invalidate date validation [PR#236] * build: Port to meson build system [PR#231, PR#234] * rpc: On UNIX wait on condition variable instead of FD if header is for a different thread [PR#232] * doc: Add 'server' command in help [PR#229] * Build and test fixes [PR#230] 0.23.16 (stable) * proxy: Support C_WaitForSlotEvent() if CKF_DONT_BLOCK is specified [PR#225] * conf: Ignore user configuration if the program is running as root [PR#226] * proxy: Refresh slot list on every C_GetSlotList call [PR#224] * modules: Fix index used in call to p11_dict_remove() [PR#219] * Fix Win32 p11_dl_error crash [PR#218] * modules: check gl.modules before iterates on it when freeing [PR#217] * trust: Ignore unreadable content in anchors [PR#215] * extract-jks: Prefer _p11_extract_jks_timestamp to SOURCE_DATE_EPOCH [PR#213]
47 lines
1.2 KiB
Makefile
47 lines
1.2 KiB
Makefile
# $NetBSD: Makefile,v 1.17 2020/09/09 07:29:29 wiz Exp $
|
|
|
|
DISTNAME= p11-kit-0.23.21
|
|
CATEGORIES= security
|
|
#MASTER_SITES= http://p11-glue.freedesktop.org/releases/
|
|
MASTER_SITES+= ${MASTER_SITE_GITHUB:=p11-glue/}
|
|
GITHUB_RELEASE= ${PKGVERSION_NOREV}
|
|
EXTRACT_SUFX= .tar.xz
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://p11-glue.freedesktop.org/p11-kit.html
|
|
COMMENT= PKCS\#11 module manager
|
|
LICENSE= modified-bsd
|
|
|
|
DEPENDS+= mozilla-rootcerts>=1.0.20150804nb1:../../security/mozilla-rootcerts
|
|
|
|
CONFIGURE_ARGS+= --with-trust-paths=${PREFIX}/share/mozilla-rootcerts/cacert.pem
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_LANGUAGES= c99
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= pkg-config
|
|
|
|
TEST_TARGET= check
|
|
|
|
# dirfd(3)
|
|
CFLAGS.NetBSD+= -D_NETBSD_SOURCE
|
|
|
|
# reallocarray(3)
|
|
CFLAGS.NetBSD+= -D_OPENBSD_SOURCE
|
|
|
|
CFLAGS.SunOS+= -D_POSIX_PTHREAD_SEMANTICS
|
|
LDFLAGS.SunOS+= -lsocket -lnsl
|
|
|
|
DLEXT.dylib= dylib
|
|
DLEXT= ${DLEXT.${SHLIB_TYPE}:Uso}
|
|
PLIST_SUBST+= DLEXT=${DLEXT:Q}
|
|
|
|
PKGCONFIG_OVERRIDE+= p11-kit/p11-kit-1.pc.in
|
|
|
|
PKG_SYSCONFSUBDIR= pkcs11
|
|
CONF_FILES+= share/examples/p11-kit/pkcs11.conf.example \
|
|
${PKG_SYSCONFDIR}/pkcs11.conf
|
|
|
|
.include "../../devel/libffi/buildlink3.mk"
|
|
.include "../../security/libtasn1/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|