From owner-svn-ports-all@FreeBSD.ORG Thu Oct 4 09:15:46 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4AC6E1065689; Thu, 4 Oct 2012 09:15:46 +0000 (UTC) (envelope-from arved@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 1D4728FC2C; Thu, 4 Oct 2012 09:15:46 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q949FjqO014864; Thu, 4 Oct 2012 09:15:45 GMT (envelope-from arved@svn.freebsd.org) Received: (from arved@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q949Fj7l014858; Thu, 4 Oct 2012 09:15:45 GMT (envelope-from arved@svn.freebsd.org) Message-Id: <201210040915.q949Fj7l014858@svn.freebsd.org> From: Tilman Keskinoz Date: Thu, 4 Oct 2012 09:15:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305244 - in head/devel: . colormake X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Oct 2012 09:15:46 -0000 Author: arved Date: Thu Oct 4 09:15:45 2012 New Revision: 305244 URL: http://svn.freebsd.org/changeset/ports/305244 Log: Add colormake, a wrapper for gmake to produce colorful output Added: head/devel/colormake/ head/devel/colormake/Makefile (contents, props changed) head/devel/colormake/distinfo (contents, props changed) head/devel/colormake/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu Oct 4 08:22:15 2012 (r305243) +++ head/devel/Makefile Thu Oct 4 09:15:45 2012 (r305244) @@ -234,6 +234,7 @@ SUBDIR += codeblocks SUBDIR += codeworker SUBDIR += colorgcc + SUBDIR += colormake SUBDIR += combat SUBDIR += commoncpp SUBDIR += compiler-rt Added: head/devel/colormake/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/colormake/Makefile Thu Oct 4 09:15:45 2012 (r305244) @@ -0,0 +1,29 @@ +# $FreeBSD$ + +PORTNAME= colormake +PORTVERSION= 0.9 +CATEGORIES= devel +MASTER_SITES= http://bre.klaki.net/programs/colormake/ + +MAINTAINER= arved@FreeBSD.org +COMMENT= Wrapper to color gmake output + +RUN_DEPENDS= gmake:${PORTSDIR}/devel/gmake \ + bash:${PORTSDIR}/shells/bash + +NO_BUILD= yes +USE_PERL5_RUN= yes +PLIST_FILES= bin/colormake bin/colormake.pl bin/colormake-short bin/clmake \ + bin/clmake-short + +post-patch: + cd ${WRKSRC} && \ + ${REINPLACE_CMD} -e "s,make ,gmake ,g;s,/bin/bash,${LOCALBASE}/bin/bash,g" \ + colormake colormake-short clmake clmake-short + +do-install: + cd ${WRKSRC} && \ + ${INSTALL_SCRIPT} colormake.pl colormake colormake-short clmake \ + clmake-short ${PREFIX}/bin + +.include Added: head/devel/colormake/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/colormake/distinfo Thu Oct 4 09:15:45 2012 (r305244) @@ -0,0 +1,2 @@ +SHA256 (colormake-0.9.tar.gz) = 000c629c84342c1224764e99e97ae9814ec6a7b9be0bc5922f2433db0d09c57e +SIZE (colormake-0.9.tar.gz) = 11429 Added: head/devel/colormake/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/colormake/pkg-descr Thu Oct 4 09:15:45 2012 (r305244) @@ -0,0 +1,3 @@ +This is a simple wrapper around "make" to make its output more readable. + +WWW: http://bre.klaki.net/programs/colormake/