1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-29 01:13:08 +00:00

Mk/Uses/emacs.mk: Tweak description of DEFAULT_VERSIONS+=emacs=...

DEFAULT_VERSIONS+=emacs=<flavor>

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.
This commit is contained in:
Joseph Mingrone 2018-03-06 20:01:35 +00:00
parent 36a52bc52d
commit 0958841c11
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=463743

View File

@ -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.