blob: 2ce167262a173078dde433879776a7b6955de38a (
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
|
# New ports collection makefile for: pprotectd
# Date created: 15 July 2010
# Whom: Andrey Zonov <andrey@zonov.org>
#
# $FreeBSD$
#
PORTNAME= pprotectd
PORTVERSION= 0.1
CATEGORIES= sysutils
MASTER_SITES= http://www.zonov.org/${PORTNAME}/
MAINTAINER= zont@FreeBSD.org
COMMENT= A daemon that protects processes from killing when memory is exhausted
USE_RC_SUBR= ${PORTNAME}
PLIST_FILES= sbin/${PORTNAME}
MAN8= ${PORTNAME}.8
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/sbin
${INSTALL_MAN} ${WRKSRC}/${MAN8} ${MANPREFIX}/man/man8
.include <bsd.port.mk>
|