Files
ports/security/isal-kmod/Makefile
T
John Baldwin 5dc90766cf Add a new security/isal-kmod port.
This port builds a kernel crypto device driver which uses routines
from Intel's ISA-L crypto library to perform AES-GCM encryption and
decryption.

Reviewed by:	mat
Sponsored by:	Netflix
Differential Revision:	https://reviews.freebsd.org/D25514
2020-08-05 23:52:56 +00:00

34 lines
723 B
Makefile

# $FreeBSD$
PORTNAME= isal
DISTVERSION= g20200702
CATEGORIES= security
PKGNAMESUFFIX= -kmod
MAINTAINER= jhb@FreeBSD.org
COMMENT= Kernel crypto driver using Intel(R) ISA-L crypto
LICENSE= BSD3CLAUSE
LICENSE_FILE= ${WRKSRC}/isa-l_crypto/LICENSE
ONLY_FOR_ARCHS= amd64
IGNORE_FreeBSD_11=requires FreeBSD 13.0 or later
IGNORE_FreeBSD_12=requires FreeBSD 13.0 or later
BUILD_DEPENDS= yasm:devel/yasm
USES= kmod uidfix
USE_GITHUB= yes
GH_ACCOUNT= bsdjhb
GH_PROJECT= ocf_isa_l
GH_TAGNAME= ccf6408
GH_TUPLE= intel:isa-l_crypto:v2.22.0:isal_crypto/isa-l_crypto
PLIST_FILES= ${KMODDIR}/isal.ko man/man4/isal.4.gz
post-install:
${INSTALL_MAN} ${WRKSRC}/isal.4 ${STAGEDIR}${MANPREFIX}/man/man4/isal.4
.include <bsd.port.mk>