mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-01 01:17:02 +00:00
8989084e3a
from COMMENT. NB: maybe we should deprecate it: pgrep(1) is in the base since FreeBSD 5.3.
24 lines
469 B
Makefile
24 lines
469 B
Makefile
# Created by: Roman Bogorodskiy <novel@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= pidof
|
|
PORTVERSION= 20050501
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= LOCAL/novel
|
|
DISTNAME= ${PORTNAME}
|
|
|
|
MAINTAINER= novel@FreeBSD.org
|
|
COMMENT= Tool which prints PID of given process name
|
|
|
|
CONFLICTS= psmisc-1*
|
|
|
|
PLIST_FILES= bin/pidof
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} 's/NOMAN/NO_MAN/' ${WRKSRC}/Makefile
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/pidof ${STAGEDIR}${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|