From owner-svn-ports-head@freebsd.org Sat Mar 3 14:12:08 2018 Return-Path: Delivered-To: svn-ports-head@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 64D78F3FA8E; Sat, 3 Mar 2018 14:12:08 +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 115C58311D; Sat, 3 Mar 2018 14:12:08 +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 0BD922756F; Sat, 3 Mar 2018 14:12:08 +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 w23EC7S8040546; Sat, 3 Mar 2018 14:12:07 GMT (envelope-from jrm@FreeBSD.org) Received: (from jrm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w23EC7hY040545; Sat, 3 Mar 2018 14:12:07 GMT (envelope-from jrm@FreeBSD.org) Message-Id: <201803031412.w23EC7hY040545@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jrm set sender to jrm@FreeBSD.org using -f From: Joseph Mingrone Date: Sat, 3 Mar 2018 14:12:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r463484 - head X-SVN-Group: ports-head X-SVN-Commit-Author: jrm X-SVN-Commit-Paths: head X-SVN-Commit-Revision: 463484 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Mar 2018 14:12:08 -0000 Author: jrm Date: Sat Mar 3 14:12:07 2018 New Revision: 463484 URL: https://svnweb.freebsd.org/changeset/ports/463484 Log: UPDATING: Add example for setting default Emacs flavor in make.conf After Emacs flavors were introduced, users have requested the ability to specify a default flavor for the Emacs ports (editors/emacs and editors/emacs-devel) in make.conf, so add an example to the 20180201 entry. Approved by: ashish Differential Revision: https://reviews.freebsd.org/D14555 Modified: head/UPDATING Modified: head/UPDATING ============================================================================== --- head/UPDATING Sat Mar 3 12:20:22 2018 (r463483) +++ head/UPDATING Sat Mar 3 14:12:07 2018 (r463484) @@ -140,8 +140,16 @@ you update your ports collection, before attempting an # make FLAVOR=nox install # make FLAVOR=devel_full + An alternative to the default flavor, full, for editors/emacs and + editors/emacs-devel can be set in make.conf. For example, to specify nox as + the default flavor for both ports, use + + .if ${.CURDIR:M*/editors/emacs*} + FLAVOR?=nox + .endif + For ports using Emacs, an alternative to the default flavor, full, - can be set in make.conf. For example, to automatically depend on + can be also be set in make.conf. For example, to automatically depend on emacs-nox, use DEFAULT_VERSIONS+=emacs=nox