From owner-svn-ports-head@FreeBSD.ORG Wed Apr 8 15:08:11 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 364C3564; Wed, 8 Apr 2015 15:08:11 +0000 (UTC) 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)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 220F86B1; Wed, 8 Apr 2015 15:08:11 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t38F8BwU064552; Wed, 8 Apr 2015 15:08:11 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t38F8ATO064551; Wed, 8 Apr 2015 15:08:10 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201504081508.t38F8ATO064551@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Wed, 8 Apr 2015 15:08:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r383572 - head 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.18-1 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: Wed, 08 Apr 2015 15:08:11 -0000 Author: bapt Date: Wed Apr 8 15:08:10 2015 New Revision: 383572 URL: https://svnweb.freebsd.org/changeset/ports/383572 Log: Document the new USES=waf into CHANGES Modified: head/CHANGES Modified: head/CHANGES ============================================================================== --- head/CHANGES Wed Apr 8 15:05:48 2015 (r383571) +++ head/CHANGES Wed Apr 8 15:08:10 2015 (r383572) @@ -10,6 +10,26 @@ in the release notes and/or placed into All ports committers are allowed to commit to this file. +20150408: +AUTHOR: bapt@FreeBSD.org + + Add a new USES=waf to handle the waf building system, allowing to factorise + code. Plug waf into MAKE_CMD and CONFIGURE_CMD so the regular defined targets + can be reused. + + Always define _MAKE_JOBS so that when bsd.port.mk will stop overwritting + _MAKE_JOBS when parallel jobs are disabled we can enforce -j1 (which is needed + to really disable parallelisation with waf + + WAF_CMD has been created to allow one to override the location of the waf + script relatively to WRKSRC + + CONFIGURE_TARGET is by default defined to "configure" + ALL_TARGET is by default defined to "build" + INSTALL_TARGET is by default defined to "install" + + USES=waf is by default stagedir safe + 20150407: AUTHOR: bapt@FreeBSD.org