1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-24 00:45:52 +00:00

- Use CONFLICTS_INSTALL instead of CONFLICTS

- Reformat pkg-descr
- Remove Author line
- Take maintainership
This commit is contained in:
Sunpoet Po-Chuan Hsieh 2014-09-30 18:32:21 +00:00
parent 4780a91c72
commit a26180ae4b
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=369653
2 changed files with 9 additions and 10 deletions

View File

@ -7,18 +7,19 @@ PORTREVISION= 1
CATEGORIES= sysutils
MASTER_SITES= http://devel.ringlet.net/sysutils/timelimit/
MAINTAINER= ports@FreeBSD.org
MAINTAINER= sunpoet@FreeBSD.org
COMMENT= Limit the absolute execution time of a process
LICENSE= BSD2CLAUSE
CONFLICTS= netpipes-[0-9]*
CONFLICTS_INSTALL= netpipes-[0-9]*
PLIST_FILES= bin/timelimit man/man1/timelimit.1.gz
NO_ARCH= yes
PLIST_FILES= bin/timelimit man/man1/timelimit.1.gz
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/timelimit ${STAGEDIR}${PREFIX}/bin
${INSTALL_DATA} ${WRKSRC}/timelimit.1 ${STAGEDIR}${MAN1PREFIX}/man/man1/
${INSTALL_PROGRAM} ${WRKSRC}/timelimit ${STAGEDIR}${PREFIX}/bin/
${INSTALL_DATA} ${WRKSRC}/timelimit.1 ${STAGEDIR}${MAN1PREFIX}/man/man1/
.include <bsd.port.mk>

View File

@ -1,7 +1,5 @@
timelimit executes a command and terminates the spawned process
after a given time with a given signal. A 'warning' signal
is sent first, then, after a timeout, a 'kill' signal, similar
to the way init(8) operates on shutdown.
timelimit executes a command and terminates the spawned process after a given
time with a given signal. A 'warning' signal is sent first, then, after a
timeout, a 'kill' signal, similar to the way init(8) operates on shutdown.
Author: Peter Pentchev <roam@ringlet.net>
WWW: http://devel.ringlet.net/sysutils/timelimit/