blob: 5d490e020d7227cc2c49ba61e12d594ccb613ce9 (
plain) (
blame)
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
33
|
# Created by: Gleb Kurtsou <gleb@freebsd.org>
# $FreeBSD$
PORTNAME= pefs
DISTVERSION= 2013-09-14
CATEGORIES= sysutils kld
MASTER_SITES= https://pefs.googlecode.com/files/
PKGNAMESUFFIX= -kmod
MAINTAINER= gleb@FreeBSD.org
COMMENT= PEFS kernel level stacked cryptographic filesystem
LICENSE= BSD
FETCH_ARGS= -Fpr # work around 302 redirect
KMODDIR?= /boot/modules
PLIST_SUB= KMODDIR=${KMODDIR}
MAKE_ENV= BINDIR="${PREFIX}/sbin" MANDIR="${MANPREFIX}/man/man" \
NO_MANCOMPRESS= \
KMODDIR="${KMODDIR}" SYSDIR="${SRC_BASE}/sys"
MAN8= pam_pefs.8 pefs.8
ONLY_FOR_ARCHS= i386 amd64 # not tested on other archs
.include <bsd.port.pre.mk>
.if ${OSVERSION} < 800000
BROKEN= requires fairly recent FreeBSD-STABLE, or FreeBSD-CURRENT
.endif
.include <bsd.port.post.mk>
|