mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-22 08:58:47 +00:00
ed59156ea9
- Fix COMMENT - Add MAKE_JOBS_SAFE where appropriate - Change ordering of LICENSE lines - Fix new header format - Etc. Reviewed by: drogoh (on irc)
27 lines
558 B
Makefile
27 lines
558 B
Makefile
# Created by: roam@FreeBSD.org
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= timelimit
|
|
PORTVERSION= 1.8
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://devel.ringlet.net/sysutils/timelimit/
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION:S/.b/pre/}
|
|
|
|
MAINTAINER= eadler@FreeBSD.org
|
|
COMMENT= Limit the absolute execution time of a process
|
|
|
|
LICENSE= BSD
|
|
|
|
CONFLICTS= netpipes-[0-9]*
|
|
|
|
MAN1= timelimit.1
|
|
PLIST_FILES= bin/timelimit
|
|
|
|
MAKE_JOBS_SAFE= yes
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/timelimit ${PREFIX}/bin
|
|
${INSTALL_DATA} ${WRKSRC}/timelimit.1 ${PREFIX}/man/man1/
|
|
|
|
.include <bsd.port.mk>
|