Files
ports/security/opensc/Makefile
T
kn 5ace36c6ef update to opensc 0.26.1; take maintainer; OK sthen
loads of updates, CVE fixes and support removal for old cards:
https://github.com/OpenSC/OpenSC/releases
2025-03-24 18:55:13 +00:00

72 lines
1.9 KiB
Makefile

COMMENT= set of libraries and utilities to access smart cards
V= 0.26.1
DISTNAME= opensc-${V}
SHARED_LIBS += opensc 9.0
SHARED_LIBS += smm-local 3.1
CATEGORIES= security
HOMEPAGE= https://github.com/OpenSC/OpenSC/wiki
MAINTAINER= Klemens Nanni <kn@openbsd.org>
# LGPLv2.1+
PERMIT_PACKAGE= Yes
WANTLIB += c crypto curses gio-2.0 gobject-2.0 iconv intl pthread
WANTLIB += readline z
SITES= https://github.com/OpenSC/OpenSC/releases/download/${V}/
BUILD_DEPENDS= security/pcsc-lite \
shells/bash-completion \
textproc/docbook-xsl
RUN_DEPENDS= devel/desktop-file-utils \
security/ccid
TEST_DEPENDS= security/softhsm2 \
shells/bash
LIB_DEPENDS= devel/glib2
# --disable-static does not work
LIBTOOL_FLAGS= --tag=disable-static
USE_GMAKE= Yes
CONFIGURE_STYLE=autoreconf
CONFIGURE_ARGS= --disable-static \
--sysconfdir=${SYSCONFDIR} \
--enable-sm \
--disable-cryptotokenkit \
--with-pkcs11-provider=${LOCALBASE}/lib/pkcs11/opensc-pkcs11.so \
--with-xsl-stylesheetsdir=${LOCALBASE}/share/xsl/docbook
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include/PCSC"
# upstream tries to find a library for dlopen(3) unless LDL_LIBS is set;
# the empty string acts as NOOP preventing configure failure to find -ldl
CONFIGURE_ENV+= LDL_LIBS=' '
FAKE_FLAGS= mandir="${PREFIX}/man/" \
sysconfdir="${PREFIX}/share/examples/opensc/"
AUTOCONF_VERSION = 2.71
AUTOMAKE_VERSION = 1.16
# Allow building with base-gcc
CFLAGS += -Wno-error
post-install:
${INSTALL_DATA_DIR} ${PREFIX}/lib/pkgconfig
${SUBST_CMD} -c -m ${NONBINMODE} -o ${BINOWN} -g ${BINGRP} \
${FILESDIR}/libopensc.pc ${PREFIX}/lib/pkgconfig/libopensc.pc
@find ${PREFIX}/lib/pkcs11/ -name '*.la' -delete
rm ${PREFIX}/share/doc/opensc/{NEWS,opensc.conf}
rmdir ${PREFIX}/share/doc/opensc
# only a few tests are normally run. src/tests/regression has a number
# of other tests that require a card.
pre-test:
sed -i 's,^#!/bin/bash,#!${LOCALBASE}/bin/bash,' ${WRKSRC}/tests/*
.include <bsd.port.mk>