From owner-svn-ports-head@FreeBSD.ORG Fri May 24 03:35:38 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 1033) id B3249CE1; Fri, 24 May 2013 03:35:38 +0000 (UTC) Date: Fri, 24 May 2013 03:35:38 +0000 From: Alexey Dokuchaev To: Niclas Zeising Subject: Re: svn commit: r318897 - head/sysutils/automounter Message-ID: <20130524033538.GD48975@FreeBSD.org> References: <201305231900.r4NJ0LRt034029@svn.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201305231900.r4NJ0LRt034029@svn.freebsd.org> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 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: Fri, 24 May 2013 03:35:38 -0000 On Thu, May 23, 2013 at 07:00:21PM +0000, Niclas Zeising wrote: > New Revision: 318897 > URL: http://svnweb.freebsd.org/changeset/ports/318897 > > @@ -28,6 +26,8 @@ do-install: > @cd ${WRKSRC}; ./install.sh -prefix=${PREFIX} > > post-install: > + @${JOT} -s- -b- 39 > @${CAT} ${PKGMESSAGE} > + @${JOT} -s- -b- 39 Please don't do this. If you want to use decorations, include them directly inside PKGMESSAGE file, and do not pad with empty lines at the top/bottom: such padding is done by package manager when installing package. In order to make installation consistent between port vs. package, we usually write: post-install: @${ECHO_MSG} @${CAT} ${PKGMESSAGE} @${ECHO_MSG} Some of us prefer shorter form: post-install: @${ECHO_MSG} ; ${CAT} ${PKGMESSAGE} ; ${ECHO_MSG} ./danfe