From owner-svn-doc-all@FreeBSD.ORG Tue Mar 18 15:31:36 2014 Return-Path: Delivered-To: svn-doc-all@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 AE85B2D7; Tue, 18 Mar 2014 15:31:36 +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 9B334122; Tue, 18 Mar 2014 15:31:36 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s2IFVaPl011157; Tue, 18 Mar 2014 15:31:36 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s2IFVaPO011156; Tue, 18 Mar 2014 15:31:36 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201403181531.s2IFVaPO011156@svn.freebsd.org> From: Mathieu Arnold Date: Tue, 18 Mar 2014 15:31:36 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r44278 - head/en_US.ISO8859-1/books/porters-handbook/makefiles X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Mar 2014 15:31:36 -0000 Author: mat (ports committer) Date: Tue Mar 18 15:31:36 2014 New Revision: 44278 URL: http://svnweb.freebsd.org/changeset/doc/44278 Log: Add a note about knobs and options being in all uppercase. Remove an obsolete paragraph. Sponsored by: Absolight Modified: head/en_US.ISO8859-1/books/porters-handbook/makefiles/chapter.xml Modified: head/en_US.ISO8859-1/books/porters-handbook/makefiles/chapter.xml ============================================================================== --- head/en_US.ISO8859-1/books/porters-handbook/makefiles/chapter.xml Tue Mar 18 10:02:13 2014 (r44277) +++ head/en_US.ISO8859-1/books/porters-handbook/makefiles/chapter.xml Tue Mar 18 15:31:36 2014 (r44278) @@ -3374,6 +3374,11 @@ MASTERDIR= ${.CURDIR}/../xdvi300 When a port has a lib-prefix in the PORTNAME the lib-prefix should be dropped in knob naming. + + + Knob names should be always be in all + uppercase. + @@ -3449,6 +3454,11 @@ OPT6_DESC= Describe OPT6 + + Option names should always be in all uppercase. They + should not use mixed case or lowercase. + + OPTIONS can be grouped as radio choices, where only one choice from each group is allowed: @@ -3637,11 +3647,6 @@ CONFIGURE_ARGS+= --enable-foo FOO_CONFIGURE_ENABLE= foo - In the second example, the library libfoo is explicitly - disabled. The configure script does not enable related - features in the application, despite library's presence in the - system. - Under some circumstances, the shorthand conditional syntax can cause problems with complex constructs. If you