From 0c56cdcd3538d86ae76d2684d1d3552fec2a8aa5 Mon Sep 17 00:00:00 2001 From: Mathieu Arnold Date: Fri, 9 Jun 2017 15:04:55 +0000 Subject: [PATCH] Indent all new sect4 one more level. White-space only, translators can ignore. Sponsored by: Absolight --- .../porters-handbook/makefiles/chapter.xml | 218 +++++++++--------- 1 file changed, 109 insertions(+), 109 deletions(-) diff --git a/en_US.ISO8859-1/books/porters-handbook/makefiles/chapter.xml b/en_US.ISO8859-1/books/porters-handbook/makefiles/chapter.xml index 9edeb554b1..c05a094302 100644 --- a/en_US.ISO8859-1/books/porters-handbook/makefiles/chapter.xml +++ b/en_US.ISO8859-1/books/porters-handbook/makefiles/chapter.xml @@ -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 - +