Date: Thu, 4 Oct 2012 09:15:45 +0000 (UTC) From: Tilman Keskinoz <arved@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305244 - in head/devel: . colormake Message-ID: <201210040915.q949Fj7l014858@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <bsd.port.mk> 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/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201210040915.q949Fj7l014858>