ports/sysutils/nfs-over-tls/Makefile
Rick Macklem 0de291a6f5 nfs-over-tls: Update to version 1.2
The nfs-over-tls utilities have been patched to work
with newer versions of OpenSSL, which requires that
the KTLS be enabled via a library call.

This patch updates the port to version 1.2, which
has the patched utilities.  It also adds an IGNORE
check for the case where the system already has the
daemons and fixes a typo in an IGNORE message.

Reviewed by:	yasu
Approved by:	yasu (ports)
2022-03-06 07:01:28 -08:00

26 lines
554 B
Makefile

PORTNAME= nfs-over-tls
DISTVERSION= 1.2
CATEGORIES= sysutils
MASTER_SITES= https://people.freebsd.org/~rmacklem/nfs-over-tls/
MAINTAINER= rmacklem@freebsd.org
COMMENT= Utilities for NFS over TLS
LICENSE= BSD2CLAUSE
LIB_DEPENDS= libssl.so:security/openssl
USES= kmod ssl
.include <bsd.port.pre.mk>
.if ${OSVERSION} < 1300133
IGNORE= requires FreeBSD 13 or later with in-kernel TLS support \
and OpenSSL with KTLS enabled
.endif
.if exists(/usr/sbin/rpc.tlsclntd)
IGNORE= already included in the base system
.endif
.include <bsd.port.post.mk>