44 lines
1015 B
Makefile
Executable File
44 lines
1015 B
Makefile
Executable File
# $OpenBSD: Makefile,v 1.14 2012/09/27 09:30:06 ajacoutot Exp $
|
|
|
|
COMMENT= library for loading and enumurating of PKCS\#11 modules
|
|
|
|
DISTNAME= p11-kit-0.14
|
|
|
|
CATEGORIES= security
|
|
|
|
SHARED_LIBS += p11-kit 0.0 # 0.0
|
|
|
|
HOMEPAGE= http://p11-glue.freedesktop.org/
|
|
|
|
MAINTAINER= Antoine Jacoutot <ajacoutot@openbsd.org>
|
|
|
|
# BSD-like
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
WANTLIB += c pthread
|
|
|
|
MASTER_SITES= ${HOMEPAGE}releases/
|
|
|
|
USE_LIBTOOL= Yes
|
|
|
|
CONFIGURE_STYLE=gnu
|
|
CONFIGURE_ARGS= ${CONFIGURE_SHARED} \
|
|
--disable-gtk-doc \
|
|
--with-module-path=${PREFIX}/lib/pkcs11
|
|
|
|
# no translation yet
|
|
CONFIGURE_ARGS += --disable-nls
|
|
|
|
# If one of these tools is found at configure stage, it might be used,
|
|
# no matter whether we use --disable-gtk-doc or not.
|
|
CONFIGURE_ENV +=ac_cv_path_GTKDOC_CHECK="" \
|
|
ac_cv_path_GTKDOC_REBASE="" \
|
|
ac_cv_path_GTKDOC_MKPDF=""
|
|
|
|
FAKE_FLAGS= exampledir=${PREFIX}/share/examples/p11-kit/pkcs11
|
|
|
|
.include <bsd.port.mk>
|