From owner-svn-doc-all@freebsd.org Fri Jun 9 15:04:56 2017 Return-Path: Delivered-To: svn-doc-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 9436BBF6D13; Fri, 9 Jun 2017 15:04:56 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6BE006FA58; Fri, 9 Jun 2017 15:04:56 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v59F4th1031875; Fri, 9 Jun 2017 15:04:55 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v59F4tur031874; Fri, 9 Jun 2017 15:04:55 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201706091504.v59F4tur031874@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Fri, 9 Jun 2017 15:04:55 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r50346 - 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.23 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: Fri, 09 Jun 2017 15:04:56 -0000 Author: mat Date: Fri Jun 9 15:04:55 2017 New Revision: 50346 URL: https://svnweb.freebsd.org/changeset/doc/50346 Log: Indent all new sect4 one more level. White-space only, translators can ignore. 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 Fri Jun 9 15:04:52 2017 (r50345) +++ head/en_US.ISO8859-1/books/porters-handbook/makefiles/chapter.xml Fri Jun 9 15:04:55 2017 (r50346) @@ -5702,32 +5702,32 @@ USE_OPENSSL= yes <varname>CONFIGURE_ARGS</varname> Helpers - - <varname><replaceable>OPT</replaceable>_CONFIGURE_ENABLE</varname> + + <varname><replaceable>OPT</replaceable>_CONFIGURE_ENABLE</varname> - When option OPT is selected, - for each entry in - OPT_CONFIGURE_ENABLE - then - --enable-entry - is appended to CONFIGURE_ARGS. When - option OPT is - not selected, - --disable-entry - is appended to CONFIGURE_ARGS. An - optional argument can be specified with an - = symbol. This argument is only appended - to the - --enable-entry - configure option. For example: + When option OPT is selected, + for each entry in + OPT_CONFIGURE_ENABLE + then + --enable-entry + is appended to CONFIGURE_ARGS. When + option OPT is + not selected, + --disable-entry + is appended to CONFIGURE_ARGS. An + optional argument can be specified with an + = symbol. This argument is only appended + to the + --enable-entry + configure option. For example: - OPTIONS_DEFINE= OPT1 OPT2 + OPTIONS_DEFINE= OPT1 OPT2 OPT1_CONFIGURE_ENABLE= test1 test2 OPT2_CONFIGURE_ENABLE= test2=exhaustive - is equivalent to: + is equivalent to: - OPTIONS_DEFINE= OPT1 + OPTIONS_DEFINE= OPT1 .include <bsd.port.options.mk> @@ -5742,34 +5742,34 @@ CONFIGURE_ARGS+= --enable-test2=exhaustive .else CONFIGURE_ARGS+= --disable-test2 .endif - + - - <varname><replaceable>OPT</replaceable>_CONFIGURE_WITH</varname> + + <varname><replaceable>OPT</replaceable>_CONFIGURE_WITH</varname> - When option OPT is selected, - for each entry in - OPT_CONFIGURE_WITH - then - --with-entry - is appended to CONFIGURE_ARGS. When - option OPT is - not selected, - --without-entry - is appended to CONFIGURE_ARGS. An - optional argument can be specified with an - = symbol. This argument is only appended - to the - --with-entry - configure option. For example: + When option OPT is selected, + for each entry in + OPT_CONFIGURE_WITH + then + --with-entry + is appended to CONFIGURE_ARGS. When + option OPT is + not selected, + --without-entry + is appended to CONFIGURE_ARGS. An + optional argument can be specified with an + = symbol. This argument is only appended + to the + --with-entry + configure option. For example: - OPTIONS_DEFINE= OPT1 OPT2 + OPTIONS_DEFINE= OPT1 OPT2 OPT1_CONFIGURE_WITH= test1 OPT2_CONFIGURE_WITH= test2=exhaustive - is equivalent to: + is equivalent to: - OPTIONS_DEFINE= OPT1 OPT2 + OPTIONS_DEFINE= OPT1 OPT2 .include <bsd.port.options.mk> @@ -5784,29 +5784,29 @@ CONFIGURE_ARGS+= --with-test2=exhaustive .else CONFIGURE_ARGS+= --without-test2 .endif - + - - <varname><replaceable>OPT</replaceable>_CONFIGURE_ON</varname> - and - <varname><replaceable>OPT</replaceable>_CONFIGURE_OFF</varname> + + <varname><replaceable>OPT</replaceable>_CONFIGURE_ON</varname> + and + <varname><replaceable>OPT</replaceable>_CONFIGURE_OFF</varname> - When option OPT is selected, - the value of - OPT_CONFIGURE_ON, - if defined, is appended to - CONFIGURE_ARGS. - OPT_CONFIGURE_OFF - works the same way, but when OPT is - not selected. For example: + When option OPT is selected, + the value of + OPT_CONFIGURE_ON, + if defined, is appended to + CONFIGURE_ARGS. + OPT_CONFIGURE_OFF + works the same way, but when OPT is + not selected. For example: - OPTIONS_DEFINE= OPT1 + OPTIONS_DEFINE= OPT1 OPT1_CONFIGURE_ON= --add-test OPT1_CONFIGURE_OFF= --no-test - is equivalent to: + is equivalent to: - OPTIONS_DEFINE= OPT1 + OPTIONS_DEFINE= OPT1 .include <bsd.port.options.mk> @@ -5816,38 +5816,38 @@ CONFIGURE_ARGS+= --add-test CONFIGURE_ARGS+= --no-test .endif - - Most of the time, the helpers in and provide a shorter - and more comprehensive functionality. - - + + Most of the time, the helpers in and provide a shorter + and more comprehensive functionality. + + <varname>CMAKE_ARGS</varname> Helpers - - <varname><replaceable>OPT</replaceable>_CMAKE_ON</varname> - and - <varname><replaceable>OPT</replaceable>_CMAKE_OFF</varname> + + <varname><replaceable>OPT</replaceable>_CMAKE_ON</varname> + and + <varname><replaceable>OPT</replaceable>_CMAKE_OFF</varname> - When option OPT is selected, - the value of - OPT_CMAKE_ON, - if defined, is appended to CMAKE_ARGS. - OPT_CMAKE_OFF - works the same way, but when OPT is - not selected. For example: + When option OPT is selected, + the value of + OPT_CMAKE_ON, + if defined, is appended to CMAKE_ARGS. + OPT_CMAKE_OFF + works the same way, but when OPT is + not selected. For example: - OPTIONS_DEFINE= OPT1 + OPTIONS_DEFINE= OPT1 OPT1_CMAKE_ON= -DTEST:BOOL=true -DDEBUG:BOOL=true OPT1_CMAKE_OFF= -DOPTIMIZE:BOOL=true - is equivalent to: + is equivalent to: - OPTIONS_DEFINE= OPT1 + OPTIONS_DEFINE= OPT1 .include <bsd.port.options.mk> @@ -5857,43 +5857,43 @@ CMAKE_ARGS+= -DTEST:BOOL=true -DDEBUG:BOOL=true CMAKE_ARGS+= -DOPTIMIZE:BOOL=true .endif - - See for a shorter - helper when the value is boolean. - - + + See for a shorter + helper when the value is boolean. + + - - <varname><replaceable>OPT</replaceable>_CMAKE_BOOL</varname> - and - <varname><replaceable>OPT</replaceable>_CMAKE_BOOL_OFF</varname> + + <varname><replaceable>OPT</replaceable>_CMAKE_BOOL</varname> + and + <varname><replaceable>OPT</replaceable>_CMAKE_BOOL_OFF</varname> - When option OPT is selected, - for each entry in - OPT_CMAKE_BOOL - then - -Dentry:BOOL=true - is appended to CMAKE_ARGS. When option - OPT is not - selected, - -Dentry:BOOL=false - is appended to CONFIGURE_ARGS. - OPT_CMAKE_BOOL_OFF - is the oposite, - -Dentry:BOOL=false - is appended to CMAKE_ARGS when the option - is selected, and - -Dentry:BOOL=true - when the option is not selected. For - example: + When option OPT is selected, + for each entry in + OPT_CMAKE_BOOL + then + -Dentry:BOOL=true + is appended to CMAKE_ARGS. When option + OPT is not + selected, + -Dentry:BOOL=false + is appended to CONFIGURE_ARGS. + OPT_CMAKE_BOOL_OFF + is the oposite, + -Dentry:BOOL=false + is appended to CMAKE_ARGS when the option + is selected, and + -Dentry:BOOL=true + when the option is not selected. For + example: - OPTIONS_DEFINE= OPT1 + OPTIONS_DEFINE= OPT1 OPT1_CMAKE_BOOL= TEST DEBUG OPT1_CMAKE_BOOL_OFF= OPTIMIZE - is equivalent to: + is equivalent to: - OPTIONS_DEFINE= OPT1 + OPTIONS_DEFINE= OPT1 .include <bsd.port.options.mk> @@ -5904,7 +5904,7 @@ CMAKE_ARGS+= -DTEST:BOOL=true -DDEBUG:BOOL=true \ CMAKE_ARGS+= -DTEST:BOOL=false -DDEBUG:BOOL=false \ -DOPTIMIZE:BOOL=true .endif - +