From owner-svn-ports-all@freebsd.org Wed Aug 31 13:28:06 2016 Return-Path: Delivered-To: svn-ports-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 46A1ABC965C; Wed, 31 Aug 2016 13:28:06 +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 0047CF11; Wed, 31 Aug 2016 13:28:05 +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 u7VDS5vE033524; Wed, 31 Aug 2016 13:28:05 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u7VDS5AX033523; Wed, 31 Aug 2016 13:28:05 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201608311328.u7VDS5AX033523@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Wed, 31 Aug 2016 13:28:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421163 - head/Mk X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 31 Aug 2016 13:28:06 -0000 Author: mat Date: Wed Aug 31 13:28:05 2016 New Revision: 421163 URL: https://svnweb.freebsd.org/changeset/ports/421163 Log: Don't duplicate the list of options helpers. People who come here can read the code, they will be able to understand the variable definition. Sponsored by: Absolight Modified: head/Mk/bsd.options.mk (contents, props changed) Modified: head/Mk/bsd.options.mk ============================================================================== --- head/Mk/bsd.options.mk Wed Aug 31 13:27:59 2016 (r421162) +++ head/Mk/bsd.options.mk Wed Aug 31 13:28:05 2016 (r421163) @@ -133,22 +133,16 @@ # ${opt}_VARS_OFF= FOO+=bar When option is disabled, it will append # FOO+= bar # -# For each of: -# ALL_TARGET BROKEN CATEGORIES CFLAGS CONFIGURE_ENV CONFLICTS CONFLICTS_BUILD -# CONFLICTS_INSTALL CPPFLAGS CXXFLAGS DESKTOP_ENTRIES DISTFILES EXTRA_PATCHES -# EXTRACT_ONLY GH_ACCOUNT GH_PROJECT GH_SUBDIR GH_TAGNAME GH_TUPLE IGNORE INFO -# INSTALL_TARGET LDFLAGS LIBS MAKE_ARGS MAKE_ENV PATCHFILES PATCH_SITES -# PLIST_DIRS PLIST_FILES PLIST_SUB PORTDOCS PORTEXAMPLES SUB_FILES SUB_LIST -# TEST_TARGET USES, -# defining ${opt}_${variable} will add its content to the actual variable when -# the option is enabled. Defining ${opt}_${variable}_OFF will add its content -# to the actual variable when the option is disabled. -# # For each of the depends target PKG FETCH EXTRACT PATCH BUILD LIB RUN, # defining ${opt}_${deptype}_DEPENDS will add its content to the actual # dependency when the option is enabled. Defining # ${opt}_${deptype}_DEPENDS_OFF will add its content to the actual dependency # when the option is disabled. +# +# For each of the variables in _OPTIONS_FLAGS below, defining +# ${opt}_${variable} will add its content to the actual variable when the +# option is enabled. Defining ${opt}_${variable}_OFF will add its content to +# the actual variable when the option is disabled. ## # Set all the options available for the ports, beginning with the