53 lines
1.1 KiB
Makefile
53 lines
1.1 KiB
Makefile
|
# Created by: Jaap Akkerhuis <jaap@NLnetLabs.nl>
|
||
|
# $FreeBSD$
|
||
|
|
||
|
PORTNAME= softhsm
|
||
|
PORTVERSION= 2.0.0.b1
|
||
|
CATEGORIES= security
|
||
|
MASTER_SITES= http://dist.opendnssec.org/source/ \
|
||
|
http://dist.opendnssec.org/source/testing/
|
||
|
PKGNAMESUFFIX= 2
|
||
|
DISTNAME= softhsm-2.0.0b1
|
||
|
|
||
|
MAINTAINER= jaap@NLnetLabs.nl
|
||
|
COMMENT= Software implementation of a Hardware Security Module (HSM)
|
||
|
|
||
|
LICENSE= BSD2CLAUSE
|
||
|
|
||
|
LIB_DEPENDS+= libsqlite3.so:${PORTSDIR}/databases/sqlite3
|
||
|
|
||
|
GNU_CONFIGURE= yes
|
||
|
|
||
|
CONFIGURE_ARGS+= --with-sqlite3=${LOCALBASE}
|
||
|
INSTALL_TARGET= install-strip
|
||
|
USES= libtool
|
||
|
|
||
|
CONFLICTS= softhsm-1.*
|
||
|
|
||
|
USE_LDCONFIG= yes
|
||
|
USE_SQLITE= yes
|
||
|
|
||
|
OPTIONS_SINGLE= CRYP
|
||
|
OPTIONS_SINGLE_CRYP= CRYP_OPEN CRYP_BOTAN
|
||
|
|
||
|
CRYP_OPEN_DESC= Build with OpenSSL crypto library
|
||
|
CRYP_BOTAN_DESC= Build with Botan crypto library
|
||
|
|
||
|
OPTIONS_DEFAULT= CRYP_OPEN
|
||
|
|
||
|
CRYP_BOTAN_CONFIGURE_WITH= crypto-backend=botan
|
||
|
|
||
|
.include <bsd.port.options.mk>
|
||
|
|
||
|
.if ${PORT_OPTIONS:MCRYP_BOTAN}
|
||
|
LIB_DEPENDS+= libbotan-1.10.so:${PORTSDIR}/security/botan110
|
||
|
.endif
|
||
|
|
||
|
.if ${PORT_OPTIONS:MCRYP_OPEN}
|
||
|
USE_OPENSSL= yes
|
||
|
WITH_OPENSSL_PORT= yes
|
||
|
CONFIGURE_ARGS+= --with-crypto-backend=openssl
|
||
|
.endif
|
||
|
|
||
|
.include <bsd.port.mk>
|