From owner-svn-ports-all@freebsd.org Thu Apr 13 20:33:16 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D0661D3C84D for ; Thu, 13 Apr 2017 20:33:16 +0000 (UTC) (envelope-from sobomax@sippysoft.com) Received: from mail-io0-x235.google.com (mail-io0-x235.google.com [IPv6:2607:f8b0:4001:c06::235]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8E680F9A for ; Thu, 13 Apr 2017 20:33:16 +0000 (UTC) (envelope-from sobomax@sippysoft.com) Received: by mail-io0-x235.google.com with SMTP id l7so92593198ioe.3 for ; Thu, 13 Apr 2017 13:33:16 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sippysoft-com.20150623.gappssmtp.com; s=20150623; h=mime-version:sender:in-reply-to:references:from:date:message-id :subject:to:cc; bh=02r5jpDxiY+56sO8pp88a02Nr7cfPlck6xECEEo6u30=; b=n2D3YyX0y4k9ODljrhrQJes9GpjNpFzetsE9sDdVtRmfQIelsK+yYOhhRB6HRd5MEh nkRWiy/8i/TYZLeMz+O1y7VRF8snELu5oxoCAzoE1nbuxEunTvoLUvO+y83VwPdwh4qp UfcKQZJgR15qbmtGq9BTwpYvNskwElIsLD7zZRyWKfcAqcRiF9H4dNY39sSnSRXStqSe cErcGqEa9+cbq/QjkmlAdY+g7ey7APdgDPL4p2v0iA/zkm2YQGKT/mGQCOhfA+b8hPQa 7JXwUUsMwH0sCCH8hE7CIwMk5FaUZO5+tRovMTl1lyE0ZfHImmbDEi0M2YEGoGjdBzGI VDFQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:sender:in-reply-to:references:from :date:message-id:subject:to:cc; bh=02r5jpDxiY+56sO8pp88a02Nr7cfPlck6xECEEo6u30=; b=mACbQ9M5NxfaU0y2GjBwzl1lfr5aOteQiQwiyKoNosbkZupbgRYGDOVwOfjcxrWK1+ sKQUBaNG/ta1LE/XPA0mvMOYhFaRE+zTPl4RtaJvE+09lHuzGBj5K0QNOm+MdOWl6R1s VbLny4WhLUbl4Fspvaaw63MAY3IvtImgMyAC+INqusChHgOUHGHidvBB4mGPs9JbPFmE +Dw4FdQuBEJ3BWgkx1womyjGvRIZS8UDSlhF6FeACpoGlJQ3Zn52/NKGIbtUNaAymbIe n6MBdudOg0fssJPtC+aRqz8w0tT+XgtnbdNhyqjW+4yJwYV0uGFUebAcwTEk6LKGPyU5 axGQ== X-Gm-Message-State: AN3rC/4v4wYZOw7R6C+4PtyqDVP0F6yi5fZfqRvF79cYV6f4HMg6oeJa yVm1RJ1ZnHkTCXwl6aGLBGZxFRCa145B X-Received: by 10.107.128.161 with SMTP id k33mr6327565ioi.115.1492115595858; Thu, 13 Apr 2017 13:33:15 -0700 (PDT) MIME-Version: 1.0 Sender: sobomax@sippysoft.com Received: by 10.36.112.210 with HTTP; Thu, 13 Apr 2017 13:33:15 -0700 (PDT) In-Reply-To: <8tn4-6sgl-wny@FreeBSD.org> References: <201704122049.v3CKnQS9032104@repo.freebsd.org> <20170413150057.GB86375@FreeBSD.org> <8tn4-6sgl-wny@FreeBSD.org> From: Maxim Sobolev Date: Thu, 13 Apr 2017 13:33:15 -0700 X-Google-Sender-Auth: O5VGfVeymbhMm1oyj__F3GDSmPs Message-ID: Subject: Re: svn commit: r438413 - in head/devel: . debugedit debugedit/files To: Jan Beich Cc: Alexey Dokuchaev , svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.23 X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Apr 2017 20:33:16 -0000 Yes, also I think use of this option should be reasonable. If it's just 1.5k file just let it be, don't need to prompt poor user if he wants it or not. Just install the damn thing. -Max On Thu, Apr 13, 2017 at 12:03 PM, Jan Beich wrote: > Alexey Dokuchaev writes: > > >> + ${INSTALL_MAN} ${WRKSRC}/README.txt ${STAGEDIR}${DOCSDIR} > > > > INSTALL_MAN is not for docs, it's for manpages. Also, when installing > docs, > > it's a good idea to OPTIONS_DEFINE+=DOCS and use > {do|post}-install-DOCS-on > > special helper target. > > PHB disagrees with you: > > - INSTALL_MAN is a command to install manpages and other documentation > (it does not compress anything). > > https://www.freebsd.org/doc/en/books/porters-handbook/install.html > >