mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-06 01:57:40 +00:00
597afc47ba
With hat: portmgr Sponsored by: Absolight
32 lines
930 B
Makefile
32 lines
930 B
Makefile
# Created by: Roman Bogorodskiy <novel@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= p11-kit
|
|
PORTVERSION= 0.23.2
|
|
CATEGORIES= security devel
|
|
MASTER_SITES= http://p11-glue.freedesktop.org/releases/
|
|
|
|
MAINTAINER= novel@FreeBSD.org
|
|
COMMENT= Library for loading and enumerating of PKCS\#11 modules
|
|
|
|
RUN_DEPENDS= ${LOCALBASE}/share/certs/ca-root-nss.crt:security/ca_root_nss
|
|
BUILD_DEPENDS= ${LOCALBASE}/share/certs/ca-root-nss.crt:security/ca_root_nss
|
|
LIB_DEPENDS= libtasn1.so:security/libtasn1 \
|
|
libffi.so:devel/libffi
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --disable-nls --enable-debug=no \
|
|
--with-trust-paths=${LOCALBASE}/share/certs/ca-root-nss.crt
|
|
MAKE_ENV= exampledir=${STAGEDIR}${EXAMPLESDIR}
|
|
INSTALL_TARGET= install-strip
|
|
|
|
USES= gmake libtool pathfix pkgconfig
|
|
USE_LDCONFIG= yes
|
|
|
|
pre-configure:
|
|
@${REINPLACE_CMD} -e \
|
|
's|exampledir = $$(p11_system_config)|exampledir = ${EXAMPLESDIR}|' \
|
|
${WRKSRC}/Makefile.in
|
|
|
|
.include <bsd.port.mk>
|