diff options
author | danfe <danfe@FreeBSD.org> | 2014-01-28 22:10:31 +0800 |
---|---|---|
committer | danfe <danfe@FreeBSD.org> | 2014-01-28 22:10:31 +0800 |
commit | 4d94efb08369b10ded4738227d4bff4c9b62899f (patch) | |
tree | 30347551c4c99d155f9cc880538b83c59f50180e /sysutils | |
parent | 3ebb6ec464b24d39571541f2417d684c19381283 (diff) | |
download | freebsd-ports-gnome-4d94efb08369b10ded4738227d4bff4c9b62899f.tar.gz freebsd-ports-gnome-4d94efb08369b10ded4738227d4bff4c9b62899f.tar.zst freebsd-ports-gnome-4d94efb08369b10ded4738227d4bff4c9b62899f.zip |
Stagify, fix a typo in Makefile header, contract MASTER_SITES, drop article
from COMMENT.
NB: maybe we should deprecate it: pgrep(1) is in the base since FreeBSD 5.3.
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/pidof/Makefile | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/sysutils/pidof/Makefile b/sysutils/pidof/Makefile index d7c4fbfff37a..97622aed8331 100644 --- a/sysutils/pidof/Makefile +++ b/sysutils/pidof/Makefile @@ -1,25 +1,23 @@ -# Created by: oman Bogorodskiy <novel@FreeBSD.org> +# Created by: Roman Bogorodskiy <novel@FreeBSD.org> # $FreeBSD$ PORTNAME= pidof PORTVERSION= 20050501 CATEGORIES= sysutils -MASTER_SITES= ${MASTER_SITE_LOCAL} -MASTER_SITE_SUBDIR= novel +MASTER_SITES= LOCAL/novel DISTNAME= ${PORTNAME} MAINTAINER= novel@FreeBSD.org -COMMENT= A tool which prints PID of given process name +COMMENT= Tool which prints PID of given process name CONFLICTS= psmisc-1* PLIST_FILES= bin/pidof -NO_STAGE= yes post-patch: - @${REINPLACE_CMD} 's/NOMAN/NO_MAN/g' ${WRKSRC}/Makefile + @${REINPLACE_CMD} 's/NOMAN/NO_MAN/' ${WRKSRC}/Makefile do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/pidof ${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/pidof ${STAGEDIR}${PREFIX}/bin .include <bsd.port.mk> |