From owner-svn-ports-all@freebsd.org Tue Mar 6 20:01:36 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5BA56F29EE0; Tue, 6 Mar 2018 20:01:36 +0000 (UTC) (envelope-from jrm@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1297087CBB; Tue, 6 Mar 2018 20:01:36 +0000 (UTC) (envelope-from jrm@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 0D8661776E; Tue, 6 Mar 2018 20:01:36 +0000 (UTC) (envelope-from jrm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w26K1ZGZ087209; Tue, 6 Mar 2018 20:01:35 GMT (envelope-from jrm@FreeBSD.org) Received: (from jrm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w26K1ZVA087208; Tue, 6 Mar 2018 20:01:35 GMT (envelope-from jrm@FreeBSD.org) Message-Id: <201803062001.w26K1ZVA087208@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jrm set sender to jrm@FreeBSD.org using -f From: Joseph Mingrone Date: Tue, 6 Mar 2018 20:01:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r463743 - head/Mk/Uses X-SVN-Group: ports-head X-SVN-Commit-Author: jrm X-SVN-Commit-Paths: head/Mk/Uses X-SVN-Commit-Revision: 463743 X-SVN-Commit-Repository: ports 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.25 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: Tue, 06 Mar 2018 20:01:36 -0000 Author: jrm Date: Tue Mar 6 20:01:35 2018 New Revision: 463743 URL: https://svnweb.freebsd.org/changeset/ports/463743 Log: Mk/Uses/emacs.mk: Tweak description of DEFAULT_VERSIONS+=emacs=... DEFAULT_VERSIONS+=emacs= in make.conf only applies to ports with USES=emacs in their Makefile, and not to the Emacs ports, editors/emacs and editors/emacs-devel. While here, align some comments. Modified: head/Mk/Uses/emacs.mk Modified: head/Mk/Uses/emacs.mk ============================================================================== --- head/Mk/Uses/emacs.mk Tue Mar 6 19:29:08 2018 (r463742) +++ head/Mk/Uses/emacs.mk Tue Mar 6 20:01:35 2018 (r463743) @@ -3,20 +3,21 @@ # Provide support for ports requiring Emacs. This includes flavors with proper # dependencies and useful variables. # -# Feature: emacs -# Usage: USES=emacs or USES=emacs:args +# Feature: emacs +# Usage: USES=emacs or USES=emacs:args # Valid ARGS: build, run # -# build Indicates that Emacs is needed at build time. -# run Indicates that Emacs is needed at run time. +# build Indicates that Emacs is needed at build time. +# run Indicates that Emacs is needed at run time. # # If build and run are omitted from the argument list, Emacs will be added to # BUILD_DEPENDS and RUN_DEPENDS. EMACS_NO_DEPENDS can be set to prevent both # Emacs dependencies. # # Variables, which can be set in make.conf: -# DEFAULT_VERSIONS+= The default flavor for Emacs ports can be added to -# DEFAULT_VERSIONS. For example, +# DEFAULT_VERSIONS+= The default flavor for Emacs ports (ports with +# USES=emacs, but not the Emacs ports themselves) +# can be added to DEFAULT_VERSIONS. For example, # DEFAULT_VERSIONS+= emacs=nox # Valid flavors: full canna nox devel_full devel_nox # Flavors specified on the command line take precedence.