From owner-svn-soc-all@FreeBSD.ORG Wed Jun 27 17:27:39 2012 Return-Path: Delivered-To: svn-soc-all@FreeBSD.org Received: from socsvn.FreeBSD.org (unknown [IPv6:2001:4f8:fff6::2f]) by hub.freebsd.org (Postfix) with SMTP id 0F66C106564A for ; Wed, 27 Jun 2012 17:27:37 +0000 (UTC) (envelope-from scher@FreeBSD.org) Received: by socsvn.FreeBSD.org (sSMTP sendmail emulation); Wed, 27 Jun 2012 17:27:37 +0000 Date: Wed, 27 Jun 2012 17:27:37 +0000 From: scher@FreeBSD.org To: svn-soc-all@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <20120627172737.0F66C106564A@hub.freebsd.org> Cc: Subject: socsvn commit: r238409 - soc2012/scher/par_ports/head/Mk X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Jun 2012 17:27:39 -0000 Author: scher Date: Wed Jun 27 17:27:36 2012 New Revision: 238409 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=238409 Log: [new_feature] options checking is implement only once per "make" call in port's directory [new_feature] options checking is implemented only by parent port, not by dependency ports(it is superfluously) [new_feature] license checking is implemented only by parent port, not by dependency ports Modified: soc2012/scher/par_ports/head/Mk/bsd.parallel.mk Modified: soc2012/scher/par_ports/head/Mk/bsd.parallel.mk ============================================================================== --- soc2012/scher/par_ports/head/Mk/bsd.parallel.mk Wed Jun 27 17:17:11 2012 (r238408) +++ soc2012/scher/par_ports/head/Mk/bsd.parallel.mk Wed Jun 27 17:27:36 2012 (r238409) @@ -484,6 +484,7 @@ # Parallel targets section # TODO: outline intergation with bsd.port.mk # +.if !defined(INSTALLS_DEPENDS) check-license-depends: check-license-message @license_to_ask=""; \ dirs_to_process=""; \ @@ -508,11 +509,14 @@ done; \ exit 1; \ fi +.endif check-license-message: @${ECHO_MSG} "===> Checking out licenses for ${PKGNAME} dependencies"; +.if !defined(CONFIG_DONE_${UNIQUENAME:U}) && !defined(INSTALLS_DEPENDS) locking-config-recursive: locking-config-message lock-port-dbdir config-recursive unlock-port-dbdir +.endif locking-config-message: @${ECHO_MSG} "===> Setting user-specified options for ${PKGNAME} and dependencies";