From owner-cvs-all@FreeBSD.ORG Sun Feb 13 11:11:02 2011 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 127281065766; Sun, 13 Feb 2011 11:11:00 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 0A0A38FC12; Sun, 13 Feb 2011 11:11:00 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id p1DBAxpZ097452; Sun, 13 Feb 2011 11:10:59 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id p1DBAxwZ097451; Sun, 13 Feb 2011 11:10:59 GMT (envelope-from miwi) Message-Id: <201102131110.p1DBAxwZ097451@repoman.freebsd.org> From: Martin Wilke Date: Sun, 13 Feb 2011 11:10:59 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel Makefile ports/devel/ninja Makefile distinfo pkg-descr ports/devel/ninja/files patch-build.ninja patch-src-ninja.cc X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 13 Feb 2011 11:11:02 -0000 miwi 2011-02-13 11:10:59 UTC FreeBSD ports repository Modified files: devel Makefile Added files: devel/ninja Makefile distinfo pkg-descr devel/ninja/files patch-build.ninja patch-src-ninja.cc Log: Ninja is yet another build system. It takes as input the interdependencies of files (typically source code and output executables) and orchestrates building them, quickly. Ninja joins a sea of other build systems. Its distinguishing goal is to be fast. It is born from my work on the Chromium browser project, which has over 30,000 source files and whose other build systems (including one built from custom non-recursive Makefiles) can take ten seconds to start building after changing one file. Ninja is under a second. WWW: https://github.com/martine/ninja PR: ports/154603 Submitted by: Grzegorz Blach Revision Changes Path 1.4221 +1 -0 ports/devel/Makefile 1.1 +42 -0 ports/devel/ninja/Makefile (new) 1.1 +2 -0 ports/devel/ninja/distinfo (new) 1.1 +11 -0 ports/devel/ninja/files/patch-build.ninja (new) 1.1 +33 -0 ports/devel/ninja/files/patch-src-ninja.cc (new) 1.1 +11 -0 ports/devel/ninja/pkg-descr (new)