blob: fa190d4f18bf34033c69aade914b987f94a1e062 (
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
|
# Created by: Denis Barov <dindin@dindin.ru>
# $FreeBSD$
PORTNAME= scprotect
PORTVERSION= 20091116
CATEGORIES= sysutils kld
MASTER_SITES= http://dindin.ru/download/
MAINTAINER= ports@FreeBSD.org
COMMENT= Protect process from killing when the swap space is exhausted
NO_PACKAGE= Needs to be compiled for specific kernel
SSP_UNSAFE= kernel module does not support ssp
KMODDIR?= /boot/modules
PLIST_SUB= KMODDIR=${KMODDIR}
WRKSRC= ${WRKDIR}/${PORTNAME}
MAKE_ENV+= KMODDIR=${KMODDIR}
CFLAGS+=-DWITH_SCPROTECT_LIST
#MAN4= scprotect.4
#MANCOMPRESSED= yes
.include <bsd.port.pre.mk>
.if !exists(${SRC_BASE}/sys/Makefile)
IGNORE= requires kernel sources
.endif
post-install:
@${CAT} ${PKGMESSAGE}
.include <bsd.port.post.mk>
|