From owner-svn-ports-head@FreeBSD.ORG Fri Oct 11 12:17:59 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id B195BD19; Fri, 11 Oct 2013 12:17:59 +0000 (UTC) (envelope-from culot@FreeBSD.org) 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 9FE9220CD; Fri, 11 Oct 2013 12:17:59 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9BCHxU9036959; Fri, 11 Oct 2013 12:17:59 GMT (envelope-from culot@svn.freebsd.org) Received: (from culot@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9BCHx4I036958; Fri, 11 Oct 2013 12:17:59 GMT (envelope-from culot@svn.freebsd.org) Message-Id: <201310111217.r9BCHx4I036958@svn.freebsd.org> From: Frederic Culot Date: Fri, 11 Oct 2013 12:17:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r330070 - 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-head@freebsd.org X-Mailman-Version: 2.1.14 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: Fri, 11 Oct 2013 12:17:59 -0000 Author: culot Date: Fri Oct 11 12:17:59 2013 New Revision: 330070 URL: http://svnweb.freebsd.org/changeset/ports/330070 Log: - Update comments to reflect the new "stage" target Approved by: portmgr (bapt) Modified: head/Mk/bsd.port.mk Modified: head/Mk/bsd.port.mk ============================================================================== --- head/Mk/bsd.port.mk Fri Oct 11 12:10:07 2013 (r330069) +++ head/Mk/bsd.port.mk Fri Oct 11 12:17:59 2013 (r330070) @@ -205,11 +205,12 @@ FreeBSD_MAINTAINER= portmgr@FreeBSD.org # to skip this port by setting ${BATCH}, or compiling only # the interactive ports by setting ${INTERACTIVE}. # Default: not set. -# USE_SUBMAKE - Set this if you want that each of the port's main 6 targets -# (extract, patch, configure, build, install and package) to be -# executed in a separate make(1) process. Useful when one of -# the stages needs to influence make(1) variables of the later -# stages using ${WRKDIR}/Makefile.inc generated on the fly. +# USE_SUBMAKE - Set this if you want that each of the port's main 7 targets +# (extract, patch, configure, build, stage, install and +# package) to be executed in a separate make(1) process. +# Useful when one of the stages needs to influence make(1) +# variables of the later stages using ${WRKDIR}/Makefile.inc +# generated on the fly. # Default: not set. # # Set these if your port only makes sense to certain architectures. @@ -4407,7 +4408,7 @@ fetch: ${_FETCH_DEP} ${_FETCH_SEQ} pkg: ${_PKG_DEP} ${_PKG_SEQ} .endif -# Main logic. The loop generates 6 main targets and using cookies +# Main logic. The loop generates 7 main targets and using cookies # ensures that those already completed are skipped. .for target in extract patch configure build stage install package