4e64aba61a
- fixed installation location of openssl engine - avoid regenerating autoconf bits New in 0.4.11; 2020-10-11; Michał Trojnara * Fixed "EVP_PKEY_derive:buffer too small" EC errors (Luka Logar) * Fixed various memory leaks (Mateusz Kwiatkowski) * Fixed Windows VERSIONINFO (Pavol Misik) * Fixed builds with OpenSSL older than 1.0.2 (Michał Trojnara) * Fixed a double free in EVP_PKEY_meth_free() (Mikhail Durnev) * Added CKA_VALUE_LEN to EC key derivation template (Michał Trojnara) * Fixed handling keys without label attribute (efternavn) * Updated the tests (Anderson Toshiyuki Sasaki) * Made ECDH-derived keys extractable (Bent Bisballe Nyeng) * Added support for pin-source within PKCS#11 URI (Stanislav Levin) * Improved LibreSSL compatibility (patchMonkey156) * Fixed handling RSA private keys in BIND (Stanislav Levin) * Added macOS testing support (Stanislav Levin) * Fixed engine object search algorithm (Anderson Toshiyuki Sasaki)
27 lines
803 B
Makefile
27 lines
803 B
Makefile
# $NetBSD: Makefile,v 1.16 2021/04/10 08:25:08 nia Exp $
|
|
#
|
|
|
|
DISTNAME= libp11-0.4.11
|
|
CATEGORIES= security
|
|
MASTER_SITES= ${MASTER_SITE_GITHUB:=OpenSC/}
|
|
GITHUB_RELEASE= ${DISTNAME}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://github.com/OpenSC/libp11/wiki
|
|
COMMENT= Convenience library for easy PKCS\#11 implementation
|
|
LICENSE= gnu-lgpl-v2.1
|
|
|
|
USE_TOOLS+= gmake pkg-config
|
|
GNU_CONFIGURE= yes
|
|
USE_LIBTOOL= yes
|
|
USE_PKGLOCALEDIR= yes
|
|
PKGCONFIG_OVERRIDE+= src/libp11.pc.in
|
|
|
|
CONFIGURE_ARGS+= --with-enginesdir=${PREFIX}/lib/engines-1.1
|
|
|
|
CHECK_PORTABILITY_SKIP+= tests/search-all-matching-tokens.softhsm
|
|
CHECK_PORTABILITY_SKIP+= tests/pkcs11-uri-without-token.softhsm
|
|
|
|
.include "../../devel/libltdl/buildlink3.mk"
|
|
.include "../../security/openssl/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|