[GRASS-SVN] r31071 - in grass/branches/releasebranch_6_3/scripts: .
d.paint.labels p.out.vrml r.cats
svn_grass at osgeo.org
svn_grass at osgeo.org
Tue Apr 22 09:58:12 EDT 2008
Author: neteler
Date: 2008-04-22 09:58:12 -0400 (Tue, 22 Apr 2008)
New Revision: 31071
Added:
grass/branches/releasebranch_6_3/scripts/d.paint.labels/
grass/branches/releasebranch_6_3/scripts/d.paint.labels/Makefile
grass/branches/releasebranch_6_3/scripts/d.paint.labels/d.paint.labels
grass/branches/releasebranch_6_3/scripts/p.out.vrml/
grass/branches/releasebranch_6_3/scripts/p.out.vrml/Makefile
grass/branches/releasebranch_6_3/scripts/p.out.vrml/p.out.vrml
grass/branches/releasebranch_6_3/scripts/r.cats/
grass/branches/releasebranch_6_3/scripts/r.cats/Makefile
grass/branches/releasebranch_6_3/scripts/r.cats/r.cats
Modified:
grass/branches/releasebranch_6_3/scripts/Makefile
Log:
Use scripts instead of symlinks for module aliases
Modified: grass/branches/releasebranch_6_3/scripts/Makefile
===================================================================
--- grass/branches/releasebranch_6_3/scripts/Makefile 2008-04-22 13:36:31 UTC (rev 31070)
+++ grass/branches/releasebranch_6_3/scripts/Makefile 2008-04-22 13:58:12 UTC (rev 31071)
@@ -8,6 +8,7 @@
d.out.gpsdrive \
d.out.png \
d.out.file \
+ d.paint.labels \
d.polar \
d.rast.edit \
d.rast.leg \
@@ -32,7 +33,9 @@
i.spectral \
i.tasscap \
m.proj \
+ p.out.vrml \
r.blend \
+ r.cats \
r.fillnulls \
r.in.aster \
r.in.srtm \
Added: grass/branches/releasebranch_6_3/scripts/d.paint.labels/Makefile
===================================================================
--- grass/branches/releasebranch_6_3/scripts/d.paint.labels/Makefile (rev 0)
+++ grass/branches/releasebranch_6_3/scripts/d.paint.labels/Makefile 2008-04-22 13:58:12 UTC (rev 31071)
@@ -0,0 +1,8 @@
+MODULE_TOPDIR = ../..
+
+PGM = d.paint.labels
+
+include $(MODULE_TOPDIR)/include/Make/Script.make
+
+default: script
+
Property changes on: grass/branches/releasebranch_6_3/scripts/d.paint.labels/Makefile
___________________________________________________________________
Name: svn:eol-style
+ native
Added: grass/branches/releasebranch_6_3/scripts/d.paint.labels/d.paint.labels
===================================================================
--- grass/branches/releasebranch_6_3/scripts/d.paint.labels/d.paint.labels (rev 0)
+++ grass/branches/releasebranch_6_3/scripts/d.paint.labels/d.paint.labels 2008-04-22 13:58:12 UTC (rev 31071)
@@ -0,0 +1,10 @@
+#!/bin/sh
+
+# MODULE: d.labels wrapper
+# AUTHOR(S): Glynn Clements
+# COPYRIGHT: (C) 2008 by the GRASS Development Team
+# This program is free software under the GNU General Public
+# License (>=v2). Read the file COPYING that comes with GRASS
+# for details.
+
+exec d.labels "$@"
Added: grass/branches/releasebranch_6_3/scripts/p.out.vrml/Makefile
===================================================================
--- grass/branches/releasebranch_6_3/scripts/p.out.vrml/Makefile (rev 0)
+++ grass/branches/releasebranch_6_3/scripts/p.out.vrml/Makefile 2008-04-22 13:58:12 UTC (rev 31071)
@@ -0,0 +1,8 @@
+MODULE_TOPDIR = ../..
+
+PGM = p.out.vrml
+
+include $(MODULE_TOPDIR)/include/Make/Script.make
+
+default: script
+
Property changes on: grass/branches/releasebranch_6_3/scripts/p.out.vrml/Makefile
___________________________________________________________________
Name: svn:eol-style
+ native
Added: grass/branches/releasebranch_6_3/scripts/p.out.vrml/p.out.vrml
===================================================================
--- grass/branches/releasebranch_6_3/scripts/p.out.vrml/p.out.vrml (rev 0)
+++ grass/branches/releasebranch_6_3/scripts/p.out.vrml/p.out.vrml 2008-04-22 13:58:12 UTC (rev 31071)
@@ -0,0 +1,10 @@
+#!/bin/sh
+
+# MODULE: r.out.vrml wrapper
+# AUTHOR(S): Glynn Clements
+# COPYRIGHT: (C) 2008 by the GRASS Development Team
+# This program is free software under the GNU General Public
+# License (>=v2). Read the file COPYING that comes with GRASS
+# for details.
+
+exec r.out.vrml "$@"
Added: grass/branches/releasebranch_6_3/scripts/r.cats/Makefile
===================================================================
--- grass/branches/releasebranch_6_3/scripts/r.cats/Makefile (rev 0)
+++ grass/branches/releasebranch_6_3/scripts/r.cats/Makefile 2008-04-22 13:58:12 UTC (rev 31071)
@@ -0,0 +1,8 @@
+MODULE_TOPDIR = ../..
+
+PGM = r.cats
+
+include $(MODULE_TOPDIR)/include/Make/Script.make
+
+default: script
+
Property changes on: grass/branches/releasebranch_6_3/scripts/r.cats/Makefile
___________________________________________________________________
Name: svn:eol-style
+ native
Added: grass/branches/releasebranch_6_3/scripts/r.cats/r.cats
===================================================================
--- grass/branches/releasebranch_6_3/scripts/r.cats/r.cats (rev 0)
+++ grass/branches/releasebranch_6_3/scripts/r.cats/r.cats 2008-04-22 13:58:12 UTC (rev 31071)
@@ -0,0 +1,10 @@
+#!/bin/sh
+
+# MODULE: r.cats wrapper
+# AUTHOR(S): Glynn Clements
+# COPYRIGHT: (C) 2008 by the GRASS Development Team
+# This program is free software under the GNU General Public
+# License (>=v2). Read the file COPYING that comes with GRASS
+# for details.
+
+exec r.category "$@"
More information about the grass-commit
mailing list