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
CONFIGURE_ARGS Helpers
-
- OPT_CONFIGURE_ENABLE
+
+ OPT_CONFIGURE_ENABLE
- 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
-
+
-
- OPT_CONFIGURE_WITH
+
+ OPT_CONFIGURE_WITH
- 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
-
+
-
- OPT_CONFIGURE_ON
- and
- OPT_CONFIGURE_OFF
+
+ OPT_CONFIGURE_ON
+ and
+ OPT_CONFIGURE_OFF
- 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.
+
+
CMAKE_ARGS Helpers
-
- OPT_CMAKE_ON
- and
- OPT_CMAKE_OFF
+
+ OPT_CMAKE_ON
+ and
+ OPT_CMAKE_OFF
- 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.
+
+
-
- OPT_CMAKE_BOOL
- and
- OPT_CMAKE_BOOL_OFF
+
+ OPT_CMAKE_BOOL
+ and
+ OPT_CMAKE_BOOL_OFF
- 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
-
+