From owner-svn-ports-all@FreeBSD.ORG Wed Mar 5 03:21:24 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0F454CAC; Wed, 5 Mar 2014 03:21:24 +0000 (UTC) Received: from mail-lb0-x22c.google.com (mail-lb0-x22c.google.com [IPv6:2a00:1450:4010:c04::22c]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id CE74D669; Wed, 5 Mar 2014 03:21:22 +0000 (UTC) Received: by mail-lb0-f172.google.com with SMTP id c11so282480lbj.17 for ; Tue, 04 Mar 2014 19:21:20 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=J0hvDFtX6/RMT+b/kB3G+Ku3jaKsx1mUBirqpY33gds=; b=OQKdfE0EUuO4h0gnUHxMEs/+YgPvvZ4OBxCiLBS08fmCy9Nc+nx05YqNpFsljhgSFI kRFB4+olQu8QKC7vOjxnyu9h+/Wt2hNza3GJDdJKrs4o9JdbGmIHBKXJatYZAJ5DpY6a /aMgynJ7wrK12UlrQ12XLBC0lTtWTv7o8mTi68R9KL0UqW0Ri4Zwm1ws1d0U46Tr5K7i y+ardGt1Mr7u3GBxdBjnUTpL5FQ2PHB2CpfnnsRo1IwKrvqCoMGxH1pmOTiZItPtoVPU sHiGD2ZSaTLotT0G8vRgzH4O0h2LoIfaJr39mA1PR0tIuJv5mIbp1Jz0GnsQk+aRU/nQ uVDw== MIME-Version: 1.0 X-Received: by 10.152.43.47 with SMTP id t15mr364632lal.38.1393989680858; Tue, 04 Mar 2014 19:21:20 -0800 (PST) Received: by 10.114.2.81 with HTTP; Tue, 4 Mar 2014 19:21:20 -0800 (PST) In-Reply-To: <20140305025848.GA91204@FreeBSD.org> References: <201402151509.s1FF9VUc063590@svn.freebsd.org> <20140305025848.GA91204@FreeBSD.org> Date: Wed, 5 Mar 2014 11:21:20 +0800 Message-ID: Subject: Re: svn commit: r344402 - head/math/primegen From: Martin Wilke To: Alexey Dokuchaev Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.17 Cc: "svn-ports-head@FreeBSD.org" , Danilo Egea Gondolfo , "svn-ports-all@FreeBSD.org" , ports-committers@freebsd.org X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.17 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: Wed, 05 Mar 2014 03:21:24 -0000 No, there is no such rule to enable/disable it. It is still maintainer/committer choice. On Wed, Mar 5, 2014 at 10:58 AM, Alexey Dokuchaev wrote: > On Sat, Feb 15, 2014 at 03:09:31PM +0000, Danilo Egea Gondolfo wrote: > > New Revision: 344402 > > URL: http://svnweb.freebsd.org/changeset/ports/344402 > > QAT: https://qat.redports.org/buildarchive/r344402/ > > (Picking random one among similar commits...) > > > - @${INSTALL_PROGRAM} ${WRKSRC}/${file} ${PREFIX}/bin > > + @${INSTALL_PROGRAM} ${WRKSRC}/${file} ${STAGEDIR}${PREFIX}/bin > > .endfor > > .for file in ${HEADER_FILES} > > - @${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/include > > + @${INSTALL_DATA} ${WRKSRC}/${file} ${STAGEDIR}${PREFIX}/include > > [...] > > + @${INSTALL_DATA} ${WRKSRC}/${file} ${STAGEDIR}${PREFIX}/lib > > .endfor > > + @${INSTALL_MAN} ${WRKSRC}/primes.1 > ${STAGEDIR}${MAN1PREFIX}/man/man1 > > + @${INSTALL_MAN} ${WRKSRC}/primegaps.1 > ${STAGEDIR}${MAN1PREFIX}/man/man1 > > + @${INSTALL_MAN} ${WRKSRC}/primegen.3 > ${STAGEDIR}${MAN3PREFIX}/man/man3 > > Guys, please do not mute (unmute) installation commands (INSTALL_FOO, CP, > COPYTREE, etc.). Muting them makes build logs less useful for debugging of > possible problems on installation stages, and generally leaves an > impression > that nothing was installed. > > This matter was discussed quite a number of times already; please try to > pay attention to some svn-ports-@ mail traffic. > > ./danfe > >