post-install: .SILENT ${CAT} pkg-message Is incorrect it should be post-install: .SILENT @${CAT} ${PKGMESSAGE} Perhaps even withiut .SILENT post-patch also contains .SILENT I dunno why Fix: post-install: .SILENT @${CAT} ${PKGMESSAGE}
Maintainer of graphics/zathura, Please note that PR ports/168129 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/168129 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org
State Changed From-To: open->feedback Awaiting maintainers feedback (via the GNATS Auto Assign Tool)
Right, I didn't knew about ${PKGMESSAGE}. .SILENT is just there to avoid putting a @ in front of every line, but for a one-line post-install I agree that it is simpler to just put a @. So post-install should be: post-install: @${CAT} ${PKGMESSAGE} 2012/5/19 Edwin Groothuis <edwin@freebsd.org>: > Maintainer of graphics/zathura, > > Please note that PR ports/168129 has just been submitted. > > If it contains a patch for an upgrade, an enhancement or a bug fix > you agree on, reply to this email stating that you approve the patch > and a committer will take care of it. > > The full text of the PR can be found at: > =A0 =A0http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dports/168129 > > -- > Edwin Groothuis via the GNATS Auto Assign Tool > edwin@FreeBSD.org
pawel 2012-05-19 10:16:25 UTC FreeBSD ports repository Modified files: graphics/zathura Makefile Log: Use ${PKGMESSAGE} PR: ports/168129 Submitted by: Aldis Berjoza <graudeejs@gmail.com> approved by: Quentin Stievenart <acieroid@awesom.eu> (maintainer) Revision Changes Path 1.12 +2 -2 ports/graphics/zathura/Makefile _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
State Changed From-To: feedback->closed Committed. Thanks!