blob: 034dd655e3b4fbcf9bbed226397c4b78055f6ea8 (
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
34
35
36
37
|
# New ports collection makefile for: pefs-kmod
# Date created: 26 January 2011
# Whom: Gleb Kurtsou <gleb@freebsd.org>
#
# $FreeBSD$
#
PORTNAME= pefs
DISTVERSION= 2011-10-18
CATEGORIES= sysutils kld
MASTER_SITES= http://cloud.github.com/downloads/glk/${PORTNAME}/
PKGNAMESUFFIX= -kmod
MAINTAINER= gleb@freebsd.org
COMMENT= PEFS kernel level stacked cryptographic filesystem
LICENSE= BSD
FETCH_ARGS= -Fpr # work around 302 redirect at guthub
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= 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>
|