From owner-svn-doc-head@FreeBSD.ORG Thu Feb 27 18:40:43 2014 Return-Path: Delivered-To: svn-doc-head@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 4C072FB2; Thu, 27 Feb 2014 18:40:43 +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 37C721790; Thu, 27 Feb 2014 18:40:43 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s1RIehnq008465; Thu, 27 Feb 2014 18:40:43 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s1RIehqm008464; Thu, 27 Feb 2014 18:40:43 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201402271840.s1RIehqm008464@svn.freebsd.org> From: Mathieu Arnold Date: Thu, 27 Feb 2014 18:40:43 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r44091 - 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-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Feb 2014 18:40:43 -0000 Author: mat (ports committer) Date: Thu Feb 27 18:40:42 2014 New Revision: 44091 URL: http://svnweb.freebsd.org/changeset/doc/44091 Log: Fix white space from previous two commits. 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 Thu Feb 27 18:33:40 2014 (r44090) +++ head/en_US.ISO8859-1/books/porters-handbook/makefiles/chapter.xml Thu Feb 27 18:40:42 2014 (r44091) @@ -3633,17 +3633,17 @@ CONFIGURE_ARGS+= --disable-foo OPTIONS_SUB - If OPTIONS_SUB is set to - yes then each of the options added to - OPTIONS_DEFINE will be added to - PLIST_SUB, for example: + If OPTIONS_SUB is set to + yes then each of the options added to + OPTIONS_DEFINE will be added to + PLIST_SUB, for example: - OPTIONS_DEFINE= OPT1 + OPTIONS_DEFINE= OPT1 OPTIONS_SUB= yes - is equivalent to: + is equivalent to: - OPTIONS_DEFINE= OPT1 + OPTIONS_DEFINE= OPT1 .include <bsd.port.options.mk> @@ -3657,18 +3657,18 @@ PLIST_SUB+= OPT1="@comment " NO_OPT1="" X_CONFIGURE_ENABLE - If X_CONFIGURE_ENABLE is set then - --enable-${X_CONFIGURE_ENABLE} or - --disable-${X_CONFIGURE_ENABLE} will be - added to CONFIGURE_ARGS depending on the - value of the optionX, for example: + If X_CONFIGURE_ENABLE is set then + --enable-${X_CONFIGURE_ENABLE} or + --disable-${X_CONFIGURE_ENABLE} will be + added to CONFIGURE_ARGS depending on the + value of the optionX, for example: - OPTIONS_DEFINE= OPT1 + OPTIONS_DEFINE= OPT1 OPT1_CONFIGURE_ENABLE= test - is equivalent to: + is equivalent to: - OPTIONS_DEFINE= OPT1 + OPTIONS_DEFINE= OPT1 .include <bsd.port.options.mk> @@ -3682,18 +3682,19 @@ CONFIGURE_ARGS+= --disable-test X_CONFIGURE_WITH - If X_CONFIGURE_WITH is set then - --with-${X_CONFIGURE_WITH} or - --without-${X_CONFIGURE_WITH} will be added - to CONFIGURE_ARGS depending on the status - of the option X, for example: + If X_CONFIGURE_WITH is set then + --with-${X_CONFIGURE_WITH} or + --without-${X_CONFIGURE_WITH} will be + added to CONFIGURE_ARGS depending on the + status of the option X, for + example: - OPTIONS_DEFINE= OPT1 + OPTIONS_DEFINE= OPT1 OPT1_CONFIGURE_WITH= test - is equivalent to: + is equivalent to: - OPTIONS_DEFINE= OPT1 + OPTIONS_DEFINE= OPT1 .include <bsd.port.options.mk> @@ -3707,17 +3708,17 @@ CONFIGURE_ARGS+= --without-test X_CONFIGURE_ON - If X_CONFIGURE_ON is set then its - value will be appended to CONFIGURE_ARGS - depending on the status of the option X, - for example: + If X_CONFIGURE_ON is set then its + value will be appended to CONFIGURE_ARGS + depending on the status of the option X, + for example: - OPTIONS_DEFINE= OPT1 + OPTIONS_DEFINE= OPT1 OPT1_CONFIGURE_ON= --add-test - is equivalent to: + is equivalent to: - OPTIONS_DEFINE= OPT1 + OPTIONS_DEFINE= OPT1 .include <bsd.port.options.mk> @@ -3729,17 +3730,17 @@ CONFIGURE_ARGS+= --add-test X_CONFIGURE_OFF - If X_CONFIGURE_OFF is set then its - value will be appended to CONFIGURE_ARGS - depending on the status of the option X, - for example: + If X_CONFIGURE_OFF is set then its + value will be appended to CONFIGURE_ARGS + depending on the status of the option X, + for example: - OPTIONS_DEFINE= OPT1 + OPTIONS_DEFINE= OPT1 OPT1_CONFIGURE_OFF= --no-test - is equivalent to: + is equivalent to: - OPTIONS_DEFINE= OPT1 + OPTIONS_DEFINE= OPT1 .include <bsd.port.options.mk> @@ -3751,17 +3752,17 @@ CONFIGURE_ARGS+= --no-test X_CMAKE_ON - If X_CMAKE_ON is set then its value - will be appended to CMAKE_ARGS depending on - the status of the option X, for - example: + If X_CMAKE_ON is set then its value + will be appended to CMAKE_ARGS depending + on the status of the option X, for + example: - OPTIONS_DEFINE= OPT1 + OPTIONS_DEFINE= OPT1 OPT1_CMAKE_ON= -DTEST:BOOL=true - is equivalent to: + is equivalent to: - OPTIONS_DEFINE= OPT1 + OPTIONS_DEFINE= OPT1 .include <bsd.port.options.mk> @@ -3773,17 +3774,17 @@ CMAKE_ARGS+= -DTEST:BOOL=true X_CMAKE_OFF - If X_CMAKE_OFF is set then its value - will be appended to CMAKE_ARGS depending on - the status of the option X, for - example: + If X_CMAKE_OFF is set then its value + will be appended to CMAKE_ARGS depending + on the status of the option X, for + example: - OPTIONS_DEFINE= OPT1 + OPTIONS_DEFINE= OPT1 OPT1_CMAKE_OFF= -DTEST:BOOL=false - is equivalent to: + is equivalent to: - OPTIONS_DEFINE= OPT1 + OPTIONS_DEFINE= OPT1 .include <bsd.port.options.mk> @@ -3795,52 +3796,52 @@ CMAKE_ARGS+= -DTEST:BOOL=false Dependencies - For any of the following dependency type: - - - - PKG_DEPENDS - - - - EXTRACT_DEPENDS - - - - PATCH_DEPENDS - - - - FETCH_DEPENDS - - - - BUILD_DEPENDS - - - - LIB_DEPENDS - + For any of the following dependency type: - - RUN_DEPENDS - - + + + PKG_DEPENDS + + + + EXTRACT_DEPENDS + + + + PATCH_DEPENDS + + + + FETCH_DEPENDS + + + + BUILD_DEPENDS + + + + LIB_DEPENDS + + + + RUN_DEPENDS + + - - X_ABOVEVARIABLE + + X_ABOVEVARIABLE - If X_ABOVEVARIABLE is defined then - its value will be appended to - ABOVEVARIABLE depending on the status - of the option X, for example: + If X_ABOVEVARIABLE is defined then + its value will be appended to + ABOVEVARIABLE depending on the status + of the option X, for example: - OPTIONS_DEFINE= OPT1 + OPTIONS_DEFINE= OPT1 OPT1_LIB_DEPENDS= liba.so:${PORTSDIR}/devel/a - is equivalent to: + is equivalent to: - OPTIONS_DEFINE= OPT1 + OPTIONS_DEFINE= OPT1 .include <bsd.port.options.mk> @@ -3853,17 +3854,17 @@ LIB_DEPENDS+= liba.so:${PORTSDIR}/devel/ X_ABOVEVARIABLE_OFF - If X_ABOVEVARIABLE_OFF is set then a - dependency of type ABOVEVARIABLE will be - added when option X is not selected. For - example: + If X_ABOVEVARIABLE_OFF is set then + a dependency of type ABOVEVARIABLE will + be added when option X is not selected. + For example: - OPTIONS_DEFINE= OPT1 + OPTIONS_DEFINE= OPT1 OPT1_LIB_DEPENDS_OFF= liba.so:${PORTSDIR}/devel/a - is equivalent to: + is equivalent to: - OPTIONS_DEFINE= OPT1 + OPTIONS_DEFINE= OPT1 .include <bsd.port.options.mk> @@ -3876,97 +3877,97 @@ LIB_DEPENDS+= liba.so:${PORTSDIR}/devel/ Generic Variables Replacement - For any of the following variables: + For any of the following variables: - - - ALL_TARGET - - - - CATEGORIES - - - - CFLAGS - - - - CPPFLAGS - - - - CXXFLAGS - - - - CONFIGURE_ENV - - - - DISTFILES - - - - EXTRA_PATCHES - - - - INSTALL_TARGET - - - - LDFLAGS - - - - MAKE_ARGS - - - - MAKE_ENV - - - - PATCH_SITES - - - - PATCHFILES - - - - PLIST_FILES - - - - PLIST_DIRS - - - - PLIST_DIRSTRY - - - - USES - - + + + ALL_TARGET + + + + CATEGORIES + + + + CFLAGS + + + + CPPFLAGS + + + + CXXFLAGS + + + + CONFIGURE_ENV + + + + DISTFILES + + + + EXTRA_PATCHES + + + + INSTALL_TARGET + + + + LDFLAGS + + + + MAKE_ARGS + + + + MAKE_ENV + + + + PATCH_SITES + + + + PATCHFILES + + + + PLIST_FILES + + + + PLIST_DIRS + + + + PLIST_DIRSTRY + + + + USES + + X_ABOVEVARIABLE - If X_ABOVEVARIABLE is defined then - its value will be appended to - ABOVEVARIABLE depending on the status of - the option X, for example: + If X_ABOVEVARIABLE is defined then + its value will be appended to + ABOVEVARIABLE depending on the status + of the option X, for example: - OPTIONS_DEFINE= OPT1 + OPTIONS_DEFINE= OPT1 OPT1_USES= gmake OPT1_CFLAGS= -DTEST - is equivalent to: + is equivalent to: - OPTIONS_DEFINE= OPT1 + OPTIONS_DEFINE= OPT1 .include <bsd.port.options.mk> @@ -3979,17 +3980,17 @@ CFLAGS+= -DTEST X_ABOVEVARIABLE_OFF - If X_ABOVEVARIABLE_OFF is set then a - flag ABOVEVARIABLE will be automatically - set when option X is not selected. For - example: + If X_ABOVEVARIABLE_OFF is set then + a flag ABOVEVARIABLE will be + automatically set when option X is not + selected. For example: - OPTIONS_DEFINE= OPT1 + OPTIONS_DEFINE= OPT1 OPT1_USES_OFF=gmake - is equivalent to: + is equivalent to: - OPTIONS_DEFINE= OPT1 + OPTIONS_DEFINE= OPT1 .include <bsd.port.options.mk>