22 lines
517 B
Makefile
22 lines
517 B
Makefile
# Created by: 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
|
|
|
|
NO_STAGE= yes
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/sbin
|
|
${INSTALL_MAN} ${WRKSRC}/${MAN8} ${MANPREFIX}/man/man8
|
|
|
|
.include <bsd.port.mk>
|