[GRASS-SVN] r30749 - in grass/trunk: display/d.paint.labels
raster/r.cats raster/r.out.vrml scripts
scripts/d.paint.labels scripts/p.out.vrml scripts/r.cats
svn_grass at osgeo.org
svn_grass at osgeo.org
Wed Mar 26 18:19:59 EDT 2008
Author: glynn
Date: 2008-03-26 18:19:59 -0400 (Wed, 26 Mar 2008)
New Revision: 30749
Added:
grass/trunk/scripts/d.paint.labels/
grass/trunk/scripts/d.paint.labels/Makefile
grass/trunk/scripts/d.paint.labels/d.paint.labels
grass/trunk/scripts/p.out.vrml/
grass/trunk/scripts/p.out.vrml/Makefile
grass/trunk/scripts/p.out.vrml/p.out.vrml
grass/trunk/scripts/r.cats/
grass/trunk/scripts/r.cats/Makefile
grass/trunk/scripts/r.cats/r.cats
Modified:
grass/trunk/display/d.paint.labels/Makefile
grass/trunk/raster/r.cats/Makefile
grass/trunk/raster/r.out.vrml/Makefile
grass/trunk/scripts/Makefile
Log:
Use scripts instead of symlinks for module aliases
Modified: grass/trunk/display/d.paint.labels/Makefile
===================================================================
--- grass/trunk/display/d.paint.labels/Makefile 2008-03-26 21:55:28 UTC (rev 30748)
+++ grass/trunk/display/d.paint.labels/Makefile 2008-03-26 22:19:59 UTC (rev 30749)
@@ -10,7 +10,3 @@
include $(MODULE_TOPDIR)/include/Make/Module.make
default: cmd
- -ln -s -f $(PGM) $(BIN)/d.paint.labels
-
-
-
Modified: grass/trunk/raster/r.cats/Makefile
===================================================================
--- grass/trunk/raster/r.cats/Makefile 2008-03-26 21:55:28 UTC (rev 30748)
+++ grass/trunk/raster/r.cats/Makefile 2008-03-26 22:19:59 UTC (rev 30749)
@@ -8,4 +8,3 @@
include $(MODULE_TOPDIR)/include/Make/Module.make
default: cmd
- -ln -s -f $(PGM) $(BIN)/r.cats
Modified: grass/trunk/raster/r.out.vrml/Makefile
===================================================================
--- grass/trunk/raster/r.out.vrml/Makefile 2008-03-26 21:55:28 UTC (rev 30748)
+++ grass/trunk/raster/r.out.vrml/Makefile 2008-03-26 22:19:59 UTC (rev 30749)
@@ -8,4 +8,3 @@
include $(MODULE_TOPDIR)/include/Make/Module.make
default: cmd
- -ln -s -f $(PGM) $(BIN)/p.out.vrml
Modified: grass/trunk/scripts/Makefile
===================================================================
--- grass/trunk/scripts/Makefile 2008-03-26 21:55:28 UTC (rev 30748)
+++ grass/trunk/scripts/Makefile 2008-03-26 22:19:59 UTC (rev 30749)
@@ -8,6 +8,7 @@
d.out.gpsdrive \
d.out.png \
d.out.file \
+ d.paint.labels \
d.polar \
d.rast.edit \
d.rast.leg \
@@ -34,7 +35,9 @@
i.spectral \
i.tasscap \
m.proj \
+ p.out.vrml \
r.blend \
+ r.cats \
r.fillnulls \
r.in.aster \
r.in.srtm \
Property changes on: grass/trunk/scripts/d.paint.labels
___________________________________________________________________
Name: svn:ignore
+ *.tmp.html
*OBJ*
Added: grass/trunk/scripts/d.paint.labels/Makefile
===================================================================
--- grass/trunk/scripts/d.paint.labels/Makefile (rev 0)
+++ grass/trunk/scripts/d.paint.labels/Makefile 2008-03-26 22:19:59 UTC (rev 30749)
@@ -0,0 +1,8 @@
+MODULE_TOPDIR = ../..
+
+PGM = d.paint.labels
+
+include $(MODULE_TOPDIR)/include/Make/Script.make
+
+default: script
+
Added: grass/trunk/scripts/d.paint.labels/d.paint.labels
===================================================================
--- grass/trunk/scripts/d.paint.labels/d.paint.labels (rev 0)
+++ grass/trunk/scripts/d.paint.labels/d.paint.labels 2008-03-26 22:19:59 UTC (rev 30749)
@@ -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 "$@"
Property changes on: grass/trunk/scripts/p.out.vrml
___________________________________________________________________
Name: svn:ignore
+ *.tmp.html
*OBJ*
Added: grass/trunk/scripts/p.out.vrml/Makefile
===================================================================
--- grass/trunk/scripts/p.out.vrml/Makefile (rev 0)
+++ grass/trunk/scripts/p.out.vrml/Makefile 2008-03-26 22:19:59 UTC (rev 30749)
@@ -0,0 +1,8 @@
+MODULE_TOPDIR = ../..
+
+PGM = p.out.vrml
+
+include $(MODULE_TOPDIR)/include/Make/Script.make
+
+default: script
+
Added: grass/trunk/scripts/p.out.vrml/p.out.vrml
===================================================================
--- grass/trunk/scripts/p.out.vrml/p.out.vrml (rev 0)
+++ grass/trunk/scripts/p.out.vrml/p.out.vrml 2008-03-26 22:19:59 UTC (rev 30749)
@@ -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 "$@"
Property changes on: grass/trunk/scripts/r.cats
___________________________________________________________________
Name: svn:ignore
+ *.tmp.html
*OBJ*
Added: grass/trunk/scripts/r.cats/Makefile
===================================================================
--- grass/trunk/scripts/r.cats/Makefile (rev 0)
+++ grass/trunk/scripts/r.cats/Makefile 2008-03-26 22:19:59 UTC (rev 30749)
@@ -0,0 +1,8 @@
+MODULE_TOPDIR = ../..
+
+PGM = r.cats
+
+include $(MODULE_TOPDIR)/include/Make/Script.make
+
+default: script
+
Added: grass/trunk/scripts/r.cats/r.cats
===================================================================
--- grass/trunk/scripts/r.cats/r.cats (rev 0)
+++ grass/trunk/scripts/r.cats/r.cats 2008-03-26 22:19:59 UTC (rev 30749)
@@ -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