From owner-svn-ports-head@FreeBSD.ORG Tue Jan 28 14:10:32 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1AADC653; Tue, 28 Jan 2014 14:10:32 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 073A91127; Tue, 28 Jan 2014 14:10:32 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0SEAVrZ003549; Tue, 28 Jan 2014 14:10:31 GMT (envelope-from danfe@svn.freebsd.org) Received: (from danfe@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0SEAVem003548; Tue, 28 Jan 2014 14:10:31 GMT (envelope-from danfe@svn.freebsd.org) Message-Id: <201401281410.s0SEAVem003548@svn.freebsd.org> From: Alexey Dokuchaev Date: Tue, 28 Jan 2014 14:10:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341569 - head/sysutils/pidof X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 28 Jan 2014 14:10:32 -0000 Author: danfe Date: Tue Jan 28 14:10:31 2014 New Revision: 341569 URL: http://svnweb.freebsd.org/changeset/ports/341569 QAT: https://qat.redports.org/buildarchive/r341569/ Log: 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. Modified: head/sysutils/pidof/Makefile Modified: head/sysutils/pidof/Makefile ============================================================================== --- head/sysutils/pidof/Makefile Tue Jan 28 14:08:16 2014 (r341568) +++ head/sysutils/pidof/Makefile Tue Jan 28 14:10:31 2014 (r341569) @@ -1,25 +1,23 @@ -# Created by: oman Bogorodskiy +# Created by: Roman Bogorodskiy # $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