1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-23 09:10:43 +00:00
freebsd-ports/security/p11-kit/Makefile
Jan Beich f39353fc59 security/p11-kit: drop redundant MESON_ARGS after 3507fb3e4e
PR:		270364
Approved by:	novel (maintainer)
2023-04-01 08:51:11 +00:00

57 lines
1.5 KiB
Makefile

PORTNAME= p11-kit
DISTVERSION= 0.24.1
PORTREVISION= 2
CATEGORIES= security devel
MASTER_SITES= https://github.com/p11-glue/p11-kit/releases/download/${DISTVERSION}/
MAINTAINER= novel@FreeBSD.org
COMMENT= Library for loading and enumerating of PKCS\#11 modules
WWW= https://p11-glue.freedesktop.org/p11-kit.html
LICENSE= BSD3CLAUSE
LICENSE_FILE= ${WRKSRC}/COPYING
BUILD_DEPENDS= bash-completion>=0:shells/bash-completion
LIB_DEPENDS= libffi.so:devel/libffi \
libtasn1.so:security/libtasn1
USES= cpe localbase meson pkgconfig tar:xz
USE_LDCONFIG= yes
CPE_VENDOR= p11-kit_project
MESON_ARGS= -Dnls=false \
-Dsystemd=disabled \
-Dtrust_paths=${DATADIR}/certs
OPTIONS_DEFINE= DOCS MANPAGES TEST
OPTIONS_SUB= yes
MANPAGES_IMPLIES= DOCS
OPTIONS_DEFAULT= MANPAGES
DOCS_BUILD_DEPENDS= gtkdoc-scan:textproc/gtk-doc
DOCS_USES= gnome
DOCS_USE= GNOME=glib20
DOCS_MESON_TRUE= gtk_doc
MANPAGES_BUILD_DEPENDS= xsltproc:textproc/libxslt
MANPAGES_MESON_TRUE= man
TEST_MESON_TRUE= test
.include <bsd.port.options.mk>
post-install:
${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
${MV} ${STAGEDIR}${PREFIX}/etc/pkcs11/pkcs11.conf.example ${STAGEDIR}${EXAMPLESDIR}
${RMDIR} ${STAGEDIR}${PREFIX}/etc/pkcs11
${MKDIR} ${STAGEDIR}${DATADIR}/certs
${LN} -s /usr/share/certs/trusted ${STAGEDIR}${DATADIR}/certs/anchors
.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1400024
${LN} -s /usr/share/certs/blacklisted ${STAGEDIR}${DATADIR}/certs/blocklist
.else
${LN} -s /usr/share/certs/untrusted ${STAGEDIR}${DATADIR}/certs/blocklist
.endif
.include <bsd.port.mk>