blob: 97a4ce6057d558776528d0f8ef195b9afa273211 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# Created by: Gleb Kurtsou <gleb@FreeBSD.org>
# $FreeBSD$
PORTNAME= pefs
DISTVERSION= 2014-03-31
CATEGORIES= sysutils
MASTER_SITES= LOCAL/gleb
PKGNAMESUFFIX= -kmod
MAINTAINER= gleb@FreeBSD.org
COMMENT= PEFS kernel level stacked cryptographic filesystem
LICENSE= BSD2CLAUSE
MAKE_ENV= BINDIR="${PREFIX}/sbin" MANDIR="${MANPREFIX}/man/man" \
NO_MANCOMPRESS=
ONLY_FOR_ARCHS= i386 amd64 # not tested on other archs
USES= kmod uidfix
OPTIONS_DEFINE= AESNI
OPTIONS_DEFAULT=
AESNI_DESC= Enable AES-NI hardware acceleration
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MAESNI}
MAKE_ENV+= PEFS_AESNI=yes
.endif
.include <bsd.port.mk>
|