[csw-devel] SF.net SVN: gar:[7470] csw/mgar/pkg

bdwalton at users.sourceforge.net bdwalton at users.sourceforge.net
Fri Nov 27 03:36:08 CET 2009


Revision: 7470
          http://gar.svn.sourceforge.net/gar/?rev=7470&view=rev
Author:   bdwalton
Date:     2009-11-27 02:36:07 +0000 (Fri, 27 Nov 2009)

Log Message:
-----------
colormake: port to gar

Added Paths:
-----------
    csw/mgar/pkg/colormake/
    csw/mgar/pkg/colormake/branches/
    csw/mgar/pkg/colormake/tags/
    csw/mgar/pkg/colormake/trunk/
    csw/mgar/pkg/colormake/trunk/Makefile
    csw/mgar/pkg/colormake/trunk/checksums
    csw/mgar/pkg/colormake/trunk/files/
    csw/mgar/pkg/colormake/trunk/files/0001-Update-Paths-and-Binary-Tool-Names-for-CSW.patch


Property changes on: csw/mgar/pkg/colormake/trunk
___________________________________________________________________
Added: svn:ignore
   + cookies
download
work


Added: svn:externals
   + gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2


Added: csw/mgar/pkg/colormake/trunk/Makefile
===================================================================
--- csw/mgar/pkg/colormake/trunk/Makefile	                        (rev 0)
+++ csw/mgar/pkg/colormake/trunk/Makefile	2009-11-27 02:36:07 UTC (rev 7470)
@@ -0,0 +1,44 @@
+GARNAME = colormake
+GARVERSION = 0.2
+CATEGORIES = utils
+
+DESCRIPTION = A colorizer for make
+define BLURB
+This is a simple wrapper around "make" to make its output more readable.
+endef
+
+MASTER_SITES = http://bre.klaki.net/programs/$(GARNAME)/
+DISTFILES  = $(GARNAME)-$(GARVERSION).tar.gz
+PATCHFILES = 0001-Update-Paths-and-Binary-Tool-Names-for-CSW.patch
+
+ARCHALL = 1
+
+REQUIRED_PKGS = CSWgmake CSWshutils
+
+# We define upstream file regex so we can be notifed of new upstream
+# software release
+UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz
+
+# If the url used to check for software update is different of
+# MASTER_SITES, then uncomment the next line. Otherwise it is set by
+# default to the value of MASTER_SITES
+# UPSTREAM_MASTER_SITES = 
+
+CONFIGURE_SCRIPTS =
+BUILD_SCRIPTS =
+TEST_SCRIPTS =
+INSTALL_SCRIPTS = custom
+
+include gar/category.mk
+
+post-extract-modulated:
+	@cd $(WORKDIR_FIRSTMOD); mv $(GARNAME) $(GARNAME)-$(GARVERSION);
+	@$(MAKECOOKIE)
+
+install-custom: CMDD=$(docdir)/$(GARNAME)
+install-custom:
+	@(cd $(WORKSRC); \
+		ginstall -d -m 0755 $(DESTDIR)$(bindir) $(DESTDIR)$(CMDD); \
+		ginstall -m 0755 colormake.pl cmake clmake $(DESTDIR)$(bindir); \
+		ginstall -m 0644 AUTHORS README $(DESTDIR)$(CMDD) )
+	@$(MAKECOOKIE)

Added: csw/mgar/pkg/colormake/trunk/checksums
===================================================================
--- csw/mgar/pkg/colormake/trunk/checksums	                        (rev 0)
+++ csw/mgar/pkg/colormake/trunk/checksums	2009-11-27 02:36:07 UTC (rev 7470)
@@ -0,0 +1,2 @@
+80ba07d18bc3c409a2744e210b8f7ad7  0001-Update-Paths-and-Binary-Tool-Names-for-CSW.patch
+1029dae70e7a23cff0f6a11f3ceffbe1  colormake-0.2.tar.gz

Added: csw/mgar/pkg/colormake/trunk/files/0001-Update-Paths-and-Binary-Tool-Names-for-CSW.patch
===================================================================
--- csw/mgar/pkg/colormake/trunk/files/0001-Update-Paths-and-Binary-Tool-Names-for-CSW.patch	                        (rev 0)
+++ csw/mgar/pkg/colormake/trunk/files/0001-Update-Paths-and-Binary-Tool-Names-for-CSW.patch	2009-11-27 02:36:07 UTC (rev 7470)
@@ -0,0 +1,54 @@
+From df457b512ae24c966ac200c3910cf86e2599d8d8 Mon Sep 17 00:00:00 2001
+From: Ben Walton <bwalton at opencsw.org>
+Date: Fri, 27 Nov 2009 03:22:18 +0100
+Subject: [PATCH] Update Paths and Binary Tool Names for CSW
+
+/usr/bin/perl -> /opt/csw/bin/perl
+export PATH=/opt/csw/bin:$PATH
+make -> gmake
+stty -> gstty
+
+Signed-off-by: Ben Walton <bwalton at opencsw.org>
+---
+ clmake       |    4 +++-
+ cmake        |    4 +++-
+ colormake.pl |    2 +-
+ 3 files changed, 7 insertions(+), 3 deletions(-)
+
+diff --git a/clmake b/clmake
+index c091e23..de484ea 100755
+--- a/clmake
++++ b/clmake
+@@ -4,4 +4,6 @@
+ # Jumps to the first gcc error that occurs during the build process.
+ #
+ 
+-make $* 2>&1 | colormake.pl `stty size` | less -r -pError
++export PATH=/opt/csw/bin:$PATH
++
++gmake $* 2>&1 | colormake.pl `gstty size` | less -r -pError
+diff --git a/cmake b/cmake
+index 303e91e..4f2eabd 100755
+--- a/cmake
++++ b/cmake
+@@ -4,4 +4,6 @@
+ # Jumps to the first gcc error that occurs during the build process.
+ #
+ 
+-make $* 2>&1 | colormake.pl `stty size`
++export PATH=/opt/csw/bin:$PATH
++
++gmake $* 2>&1 | colormake.pl `gstty size`
+diff --git a/colormake.pl b/colormake.pl
+index 1d9edb2..7d7b7d2 100755
+--- a/colormake.pl
++++ b/colormake.pl
+@@ -1,4 +1,4 @@
+-#!/usr/bin/perl
++#!/opt/csw/bin/perl
+ #
+ # colormake.pl 0.3
+ #
+-- 
+1.6.5.1
+


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.



More information about the devel mailing list