From owner-svn-doc-all@FreeBSD.ORG Mon Apr 14 16:11:10 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 8BDEE586; Mon, 14 Apr 2014 16:11:10 +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)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 77DAB1A1B; Mon, 14 Apr 2014 16:11:10 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s3EGBAb4015544; Mon, 14 Apr 2014 16:11:10 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s3EGBAq9015543; Mon, 14 Apr 2014 16:11:10 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201404141611.s3EGBAq9015543@svn.freebsd.org> From: Mathieu Arnold Date: Mon, 14 Apr 2014 16:11:10 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r44552 - 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: Mon, 14 Apr 2014 16:11:10 -0000 Author: mat (ports committer) Date: Mon Apr 14 16:11:10 2014 New Revision: 44552 URL: http://svnweb.freebsd.org/changeset/doc/44552 Log: Replace all X by OPT in the options part of the Makefile chapter. 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 Mon Apr 14 15:59:33 2014 (r44551) +++ head/en_US.ISO8859-1/books/porters-handbook/makefiles/chapter.xml Mon Apr 14 16:11:10 2014 (r44552) @@ -3842,11 +3842,11 @@ SUB_LIST+= OPT1="@comment " NO_OPT1="" - <varname><replaceable>X</replaceable>_USE</varname> + <varname><replaceable>OPT</replaceable>_USE</varname> For each key=value - pair in X_USE + pair in OPT_USE the corresponding USE_KEY variable will be set to value. @@ -3870,17 +3870,17 @@ USE_XORG= x11 xextproto xext xrandr - <varname><replaceable>X</replaceable>_CONFIGURE_ENABLE</varname> + <varname><replaceable>OPT</replaceable>_CONFIGURE_ENABLE</varname> If - X_CONFIGURE_ENABLE + OPT_CONFIGURE_ENABLE is set then - --enable-${X_CONFIGURE_ENABLE} + --enable-${OPT_CONFIGURE_ENABLE} or - --disable-${X_CONFIGURE_ENABLE} + --disable-${OPT_CONFIGURE_ENABLE} will be added to CONFIGURE_ARGS depending on the value of the - option X, for + option OPT, for example: OPTIONS_DEFINE= OPT1 @@ -3900,17 +3900,17 @@ CONFIGURE_ARGS+= --disable-test - <varname><replaceable>X</replaceable>_CONFIGURE_WITH</varname> + <varname><replaceable>OPT</replaceable>_CONFIGURE_WITH</varname> If - X_CONFIGURE_WITH + OPT_CONFIGURE_WITH is set then - --with-${X_CONFIGURE_WITH} + --with-${OPT_CONFIGURE_WITH} or - --without-${X_CONFIGURE_WITH} + --without-${OPT_CONFIGURE_WITH} will be added to CONFIGURE_ARGS depending on the status of the option - X, for + OPT, for example: OPTIONS_DEFINE= OPT1 @@ -3930,13 +3930,13 @@ CONFIGURE_ARGS+= --without-test - <varname><replaceable>X</replaceable>_CONFIGURE_ON</varname> + <varname><replaceable>OPT</replaceable>_CONFIGURE_ON</varname> If - X_CONFIGURE_ON + OPT_CONFIGURE_ON is set then its value will be appended to CONFIGURE_ARGS depending on the status of - the option X, + the option OPT, for example: OPTIONS_DEFINE= OPT1 @@ -3954,13 +3954,13 @@ CONFIGURE_ARGS+= --add-test - <varname><replaceable>X</replaceable>_CONFIGURE_OFF</varname> + <varname><replaceable>OPT</replaceable>_CONFIGURE_OFF</varname> If - X_CONFIGURE_OFF + OPT_CONFIGURE_OFF is set then its value will be appended to CONFIGURE_ARGS depending on the status of - the option X, + the option OPT, for example: OPTIONS_DEFINE= OPT1 @@ -3978,13 +3978,13 @@ CONFIGURE_ARGS+= --no-test - <varname><replaceable>X</replaceable>_CMAKE_ON</varname> + <varname><replaceable>OPT</replaceable>_CMAKE_ON</varname> If - X_CMAKE_ON is + OPT_CMAKE_ON is set then its value will be appended to CMAKE_ARGS depending on the status of the - option X, for + option OPT, for example: OPTIONS_DEFINE= OPT1 @@ -4002,13 +4002,13 @@ CMAKE_ARGS+= -DTEST:BOOL=true - <varname><replaceable>X</replaceable>_CMAKE_OFF</varname> + <varname><replaceable>OPT</replaceable>_CMAKE_OFF</varname> If - X_CMAKE_OFF is + OPT_CMAKE_OFF is set then its value will be appended to CMAKE_ARGS depending on the status of the - option X, for + option OPT, for example: OPTIONS_DEFINE= OPT1 @@ -4061,14 +4061,14 @@ CMAKE_ARGS+= -DTEST:BOOL=false - <varname><replaceable>X</replaceable>_<replaceable>ABOVEVARIABLE</replaceable></varname> + <varname><replaceable>OPT</replaceable>_<replaceable>ABOVEVARIABLE</replaceable></varname> If - X_ABOVEVARIABLE + OPT_ABOVEVARIABLE is defined then its value will be appended to ABOVEVARIABLE depending on the status of the option - X, for + OPT, for example: OPTIONS_DEFINE= OPT1 @@ -4087,14 +4087,14 @@ LIB_DEPENDS+= liba.so:${PORTSDIR}/devel/ - <varname><replaceable>X</replaceable>_<replaceable>ABOVEVARIABLE</replaceable>_OFF</varname> + <varname><replaceable>OPT</replaceable>_<replaceable>ABOVEVARIABLE</replaceable>_OFF</varname> If - X_ABOVEVARIABLE_OFF + OPT_ABOVEVARIABLE_OFF is set then a dependency of type ABOVEVARIABLE will be added when option - X is not + OPT is not selected. For example: OPTIONS_DEFINE= OPT1 @@ -4234,14 +4234,14 @@ DOCS_ALL_TARGET= doc - <varname><replaceable>X</replaceable>_<replaceable>ABOVEVARIABLE</replaceable></varname> + <varname><replaceable>OPT</replaceable>_<replaceable>ABOVEVARIABLE</replaceable></varname> If - X_ABOVEVARIABLE + OPT_ABOVEVARIABLE is defined then its value will be appended to ABOVEVARIABLE depending on the status of the option - X, for + OPT, for example: OPTIONS_DEFINE= OPT1 @@ -4261,14 +4261,14 @@ CFLAGS+= -DTEST - <varname><replaceable>X</replaceable>_<replaceable>ABOVEVARIABLE</replaceable>_OFF</varname> + <varname><replaceable>OPT</replaceable>_<replaceable>ABOVEVARIABLE</replaceable>_OFF</varname> If - X_ABOVEVARIABLE_OFF + OPT_ABOVEVARIABLE_OFF is set then a flag ABOVEVARIABLE will be automatically set when option - X is not + OPT is not selected. For example: OPTIONS_DEFINE= OPT1