aboutsummaryrefslogtreecommitdiff
path: root/databases/grass
diff options
context:
space:
mode:
authorWen Heping <wen@FreeBSD.org>2010-10-21 01:12:14 +0000
committerWen Heping <wen@FreeBSD.org>2010-10-21 01:12:14 +0000
commitcb514ea21136ed367c296b89d391ff664ce56988 (patch)
tree8f13638c0f0ab2a7ac759fc391ce89f3d7f93d35 /databases/grass
parentad201c68e4a41f858e4dab97701d175e1f742253 (diff)
downloadports-cb514ea21136ed367c296b89d391ff664ce56988.tar.gz
ports-cb514ea21136ed367c296b89d391ff664ce56988.zip
Notes
Diffstat (limited to 'databases/grass')
-rw-r--r--databases/grass/Makefile54
-rw-r--r--databases/grass/distinfo6
-rw-r--r--databases/grass/files/patch-Makefile11
-rw-r--r--databases/grass/files/patch-intr_char.c27
-rw-r--r--databases/grass/pkg-plist2127
5 files changed, 1546 insertions, 679 deletions
diff --git a/databases/grass/Makefile b/databases/grass/Makefile
index ada5a0790be6..d30fd7543cb2 100644
--- a/databases/grass/Makefile
+++ b/databases/grass/Makefile
@@ -6,35 +6,38 @@
#
PORTNAME= grass
-PORTVERSION= 6.2.3
-PORTREVISION= 10
+PORTVERSION= 6.4.0
PORTEPOCH= 2
CATEGORIES= databases geography
-MASTER_SITES= http://grass.itc.it/grass62/source/ \
- ftp://grass.itc.it/pub/grass/grass62/source/ \
- http://grass.ibiblio.org/grass62/source/\
- ftp://www.ibiblio.org/pub/packages/gis/grass/grass62/source/\
- http://www.geog.uni-hannover.de/grass/grass62/source/\
- http://grass.meteo.uni.wroc.pl/grass62/source/ \
- http://grass.ru.ac.za/grass62/source/\
- http://wgrass.media.osaka-cu.ac.jp/grassh/grass62/source/\
- http://public.planetmirror.com/pub/grass/grass62/source/\
- ftp://ftp.planetmirror.com/pub/grass/grass62/source/\
- http://gulus.usherbrooke.ca/pub/appl/grass/grass62/source/\
- http://ludique.u-bourgogne.fr/grass/grass62/source/
+MASTER_SITES= http://grass.itc.it/grass64/source/ \
+ ftp://grass.itc.it/pub/grass/grass64/source/ \
+ http://grass.ibiblio.org/grass64/source/\
+ ftp://www.ibiblio.org/pub/packages/gis/grass/grass64/source/\
+ http://www.geog.uni-hannover.de/grass/grass64/source/\
+ http://grass.meteo.uni.wroc.pl/grass64/source/ \
+ http://grass.ru.ac.za/grass64/source/\
+ http://wgrass.media.osaka-cu.ac.jp/grassh/grass64/source/\
+ http://public.planetmirror.com/pub/grass/grass64/source/\
+ ftp://ftp.planetmirror.com/pub/grass/grass64/source/\
+ http://gulus.usherbrooke.ca/pub/appl/grass/grass64/source/\
+ http://ludique.u-bourgogne.fr/grass/grass64/source/
+#DISTNAME= ${PORTNAME}-${PORTVERSION}RC5
MAINTAINER= ports@FreeBSD.org
COMMENT= An open source Geographical Information System (GIS)
BUILD_DEPENDS= proj:${PORTSDIR}/graphics/proj \
- gdal-config:${PORTSDIR}/graphics/gdal
+ gdal-config:${PORTSDIR}/graphics/gdal \
+ ${LOCALBASE}/bin/swig:${PORTSDIR}/devel/swig13 \
+ ${LOCALBASE}/bin/wxgtk2-2.8-config:${PORTSDIR}/x11-toolkits/wxgtk28
RUN_DEPENDS= proj:${PORTSDIR}/graphics/proj \
gdal-config:${PORTSDIR}/graphics/gdal \
- bash:${PORTSDIR}/shells/bash
+ bash:${PORTSDIR}/shells/bash \
+ ${LOCALBASE}/bin/wxgtk2-2.8-config:${PORTSDIR}/x11-toolkits/wxgtk28
LIB_DEPENDS= tiff.4:${PORTSDIR}/graphics/tiff \
png.6:${PORTSDIR}/graphics/png \
jpeg.11:${PORTSDIR}/graphics/jpeg \
- fftw.2:${PORTSDIR}/math/fftw \
+ fftw3.5:${PORTSDIR}/math/fftw3 \
freetype.9:${PORTSDIR}/print/freetype2
USE_GMAKE= yes
@@ -47,24 +50,28 @@ USE_TCL= yes
USE_TCL_BUILD= yes
USE_TK= yes
USE_TK_BUILD= yes
+USE_PYTHON= yes
+USE_WX= 2.8
+WX_COMPS= python:run
PATCH_TCL_SCRIPTS=lib/init/init.sh
PATCH_TK_SCRIPTS=lib/init/init.sh
-MAKE_JOBS_UNSAFE= yes
ALL_TARGET=
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --with-includes=${LOCALBASE}/include \
--with-libs=${LOCALBASE}/lib \
--with-tcltk-includes="${TCL_INCLUDEDIR} ${TK_INCLUDEDIR}" \
- --with-opengl-includes=${LOCALBASE}/include \
- --with-opengl-libs=${LOCALBASE}/lib \
+ --with-opengl-includes=${LOCALBASE}/include/ \
+ --with-opengl-libs=${LOCALBASE}/lib/ \
--with-freetype \
--with-freetype-includes=${LOCALBASE}/include/freetype2 \
--with-nls \
--with-cxx \
--with-readline \
--with-curses \
- --enable-largefile
+ --enable-largefile \
+ --with-python=${LOCALBASE}/bin/python-config \
+ --with-wxwidgets=${LOCALBASE}/bin/wxgtk2-2.8-config
PLIST_SUB= GRASS_INST_DIR=${GRASS_INST_DIR} \
VERSION=${PORTVERSION} \
@@ -76,13 +83,12 @@ OPTIONS= MYSQL "Enable MySQL support" Off \
PGSQL "Enable PostgreSQL support" On \
SQLITE "Enable SQLite support" Off
-BASH_SCRIPTS= i.spectral r.mapcalculator r.tileset r3.mapcalculator \
- v.in.gpsbabel
+BASH_SCRIPTS= i.spectral r.tileset
.include <bsd.port.pre.mk>
.if !defined (GRASS_INST_DIR)
-GRASS_INST_DIR= ${PORTNAME}
+GRASS_INST_DIR= ${PORTNAME}-${PORTVERSION}
.endif
.if defined(WITH_MYSQL)
diff --git a/databases/grass/distinfo b/databases/grass/distinfo
index 2973bfe6dfa2..4b7ad72038c3 100644
--- a/databases/grass/distinfo
+++ b/databases/grass/distinfo
@@ -1,3 +1,3 @@
-MD5 (grass-6.2.3.tar.gz) = 75c8832f90e445ff361d767c8a2c3ece
-SHA256 (grass-6.2.3.tar.gz) = a172d233fcbfc7f2c2de01af1f6fc7828e46867785dcaf861cf87238775e4a61
-SIZE (grass-6.2.3.tar.gz) = 12978605
+MD5 (grass-6.4.0.tar.gz) = ac3233aa3351f8e060ea48246aa01c7f
+SHA256 (grass-6.4.0.tar.gz) = 1db0422de4bb6146322721760b3c2b310850069ee320e03b6a625e4472f477a7
+SIZE (grass-6.4.0.tar.gz) = 22569021
diff --git a/databases/grass/files/patch-Makefile b/databases/grass/files/patch-Makefile
deleted file mode 100644
index 8797a2e4d46a..000000000000
--- a/databases/grass/files/patch-Makefile
+++ /dev/null
@@ -1,11 +0,0 @@
---- Makefile.orig 2007-11-28 05:33:13.000000000 +0900
-+++ Makefile 2008-03-20 21:32:22.000000000 +0900
-@@ -257,7 +257,7 @@
- -chmod -R a+rX ${INST_DIR} 2>/dev/null
- #GEM installation
- -tar cBf - gem/skeleton | (cd ${INST_DIR}/etc ; tar xBf - ) 2>/dev/null
-- -${INSTALL} gem/gem ${BINDIR} 2>/dev/null
-+ -${INSTALL} gem/gem ${BINDIR}/grass${GRASS_VERSION_MAJOR}${GRASS_VERSION_MINOR}-gem 2>/dev/null
-
-
- install-strip: FORCE
diff --git a/databases/grass/files/patch-intr_char.c b/databases/grass/files/patch-intr_char.c
deleted file mode 100644
index fe49370647dd..000000000000
--- a/databases/grass/files/patch-intr_char.c
+++ /dev/null
@@ -1,27 +0,0 @@
---- lib/gis/intr_char.c Thu Feb 9 04:08:56 2006
-+++ lib/gis/intr_char.c Mon Mar 26 19:27:22 2007
-@@ -2,7 +2,11 @@
-
- #include <grass/config.h>
- #ifndef __MINGW32__
--#ifdef HAVE_TERMIO_H
-+#if defined(HAVE_TERMIOS_H)
-+# include <termios.h>
-+# define TYPE termios
-+# define C c_cc[VINTR]
-+#elif defined(HAVE_TERMIO_H)
- # include <termio.h>
- # define TYPE termio
- # define C c_cc[VINTR]
-@@ -32,7 +36,11 @@
- #ifndef __MINGW32__
- struct TYPE buf;
-
-+#ifdef HAVE_TERMIOS_H
-+ tcgetattr (2, &buf);
-+#else
- ioctl (2, GET, &buf);
-+#endif
- c = buf.C;
- #endif
- return c;
diff --git a/databases/grass/pkg-plist b/databases/grass/pkg-plist
index a0f7695fedde..7b1b8e14aefe 100644
--- a/databases/grass/pkg-plist
+++ b/databases/grass/pkg-plist
@@ -1,8 +1,19 @@
-bin/grass%%VER%%
-bin/grass%%VER%%-gem
-%%GRASS_INST_DIR%%/bin/bmif_to_cell
+%%GRASS_INST_DIR%%/AUTHORS
+%%GRASS_INST_DIR%%/CHANGES
+%%GRASS_INST_DIR%%/COPYING
+%%GRASS_INST_DIR%%/GPL.TXT
+%%GRASS_INST_DIR%%/REQUIREMENTS.html
%%GRASS_INST_DIR%%/bin/d.ask
%%GRASS_INST_DIR%%/bin/d.barscale
+%%GRASS_INST_DIR%%/bin/db.columns
+%%GRASS_INST_DIR%%/bin/db.connect
+%%GRASS_INST_DIR%%/bin/db.copy
+%%GRASS_INST_DIR%%/bin/db.describe
+%%GRASS_INST_DIR%%/bin/db.drivers
+%%GRASS_INST_DIR%%/bin/db.execute
+%%GRASS_INST_DIR%%/bin/db.login
+%%GRASS_INST_DIR%%/bin/db.select
+%%GRASS_INST_DIR%%/bin/db.tables
%%GRASS_INST_DIR%%/bin/d.colorlist
%%GRASS_INST_DIR%%/bin/d.colors
%%GRASS_INST_DIR%%/bin/d.colortable
@@ -10,7 +21,6 @@ bin/grass%%VER%%-gem
%%GRASS_INST_DIR%%/bin/d.extend
%%GRASS_INST_DIR%%/bin/d.extract
%%GRASS_INST_DIR%%/bin/d.font
-%%GRASS_INST_DIR%%/bin/d.font.freetype
%%GRASS_INST_DIR%%/bin/d.frame
%%GRASS_INST_DIR%%/bin/d.geodesic
%%GRASS_INST_DIR%%/bin/d.graph
@@ -26,18 +36,16 @@ bin/grass%%VER%%-gem
%%GRASS_INST_DIR%%/bin/d.menu
%%GRASS_INST_DIR%%/bin/d.mon
%%GRASS_INST_DIR%%/bin/d.nviz
-%%GRASS_INST_DIR%%/bin/d.paint.labels
%%GRASS_INST_DIR%%/bin/d.path
%%GRASS_INST_DIR%%/bin/d.profile
%%GRASS_INST_DIR%%/bin/d.rast
%%GRASS_INST_DIR%%/bin/d.rast.arrow
-%%GRASS_INST_DIR%%/bin/d.rast.edit
%%GRASS_INST_DIR%%/bin/d.rast.num
%%GRASS_INST_DIR%%/bin/d.rgb
%%GRASS_INST_DIR%%/bin/d.rhumbline
%%GRASS_INST_DIR%%/bin/d.save
%%GRASS_INST_DIR%%/bin/d.text
-%%GRASS_INST_DIR%%/bin/d.text.freetype
+%%GRASS_INST_DIR%%/bin/d.thematic.area
%%GRASS_INST_DIR%%/bin/d.title
%%GRASS_INST_DIR%%/bin/d.vect
%%GRASS_INST_DIR%%/bin/d.vect.chart
@@ -45,24 +53,22 @@ bin/grass%%VER%%-gem
%%GRASS_INST_DIR%%/bin/d.what.vect
%%GRASS_INST_DIR%%/bin/d.where
%%GRASS_INST_DIR%%/bin/d.zoom
-%%GRASS_INST_DIR%%/bin/db.columns
-%%GRASS_INST_DIR%%/bin/db.connect
-%%GRASS_INST_DIR%%/bin/db.copy
-%%GRASS_INST_DIR%%/bin/db.describe
-%%GRASS_INST_DIR%%/bin/db.drivers
-%%GRASS_INST_DIR%%/bin/db.execute
-%%GRASS_INST_DIR%%/bin/db.login
-%%GRASS_INST_DIR%%/bin/db.select
-%%GRASS_INST_DIR%%/bin/db.tables
%%GRASS_INST_DIR%%/bin/g.access
%%GRASS_INST_DIR%%/bin/g.ask
%%GRASS_INST_DIR%%/bin/g.copy
+%%GRASS_INST_DIR%%/bin/g.dirseps
%%GRASS_INST_DIR%%/bin/g.filename
+%%GRASS_INST_DIR%%/bin/g.findetc
%%GRASS_INST_DIR%%/bin/g.findfile
%%GRASS_INST_DIR%%/bin/g.gisenv
+%%GRASS_INST_DIR%%/bin/g.gui
%%GRASS_INST_DIR%%/bin/g.list
%%GRASS_INST_DIR%%/bin/g.mapset
%%GRASS_INST_DIR%%/bin/g.mapsets
+%%GRASS_INST_DIR%%/bin/g.message
+%%GRASS_INST_DIR%%/bin/g.mkfontcap
+%%GRASS_INST_DIR%%/bin/g.mlist
+%%GRASS_INST_DIR%%/bin/g.mremove
%%GRASS_INST_DIR%%/bin/g.parser
%%GRASS_INST_DIR%%/bin/g.pnmcomp
%%GRASS_INST_DIR%%/bin/g.proj
@@ -73,6 +79,7 @@ bin/grass%%VER%%-gem
%%GRASS_INST_DIR%%/bin/g.tempfile
%%GRASS_INST_DIR%%/bin/g.transform
%%GRASS_INST_DIR%%/bin/g.version
+%%GRASS_INST_DIR%%/bin/i.atcorr
%%GRASS_INST_DIR%%/bin/i.cca
%%GRASS_INST_DIR%%/bin/i.class
%%GRASS_INST_DIR%%/bin/i.cluster
@@ -94,16 +101,31 @@ bin/grass%%VER%%-gem
%%GRASS_INST_DIR%%/bin/i.zc
%%GRASS_INST_DIR%%/bin/m.cogo
%%GRASS_INST_DIR%%/bin/nviz
-%%GRASS_INST_DIR%%/bin/p.out.vrml
-%%GRASS_INST_DIR%%/bin/poly_to_bmif
+%%GRASS_INST_DIR%%/bin/nviz_cmd
%%GRASS_INST_DIR%%/bin/ps.map
+%%GRASS_INST_DIR%%/bin/r3.cross.rast
+%%GRASS_INST_DIR%%/bin/r3.gwflow
+%%GRASS_INST_DIR%%/bin/r3.in.ascii
+%%GRASS_INST_DIR%%/bin/r3.info
+%%GRASS_INST_DIR%%/bin/r3.in.v5d
+%%GRASS_INST_DIR%%/bin/r3.mapcalc
+%%GRASS_INST_DIR%%/bin/r3.mask
+%%GRASS_INST_DIR%%/bin/r3.mkdspf
+%%GRASS_INST_DIR%%/bin/r3.null
+%%GRASS_INST_DIR%%/bin/r3.out.ascii
+%%GRASS_INST_DIR%%/bin/r3.out.v5d
+%%GRASS_INST_DIR%%/bin/r3.out.vtk
+%%GRASS_INST_DIR%%/bin/r3.stats
+%%GRASS_INST_DIR%%/bin/r3.timestamp
+%%GRASS_INST_DIR%%/bin/r3.to.rast
+%%GRASS_INST_DIR%%/bin/r3.univar
%%GRASS_INST_DIR%%/bin/r.average
%%GRASS_INST_DIR%%/bin/r.basins.fill
%%GRASS_INST_DIR%%/bin/r.bilinear
%%GRASS_INST_DIR%%/bin/r.bitpattern
%%GRASS_INST_DIR%%/bin/r.buffer
%%GRASS_INST_DIR%%/bin/r.carve
-%%GRASS_INST_DIR%%/bin/r.cats
+%%GRASS_INST_DIR%%/bin/r.category
%%GRASS_INST_DIR%%/bin/r.circle
%%GRASS_INST_DIR%%/bin/r.clump
%%GRASS_INST_DIR%%/bin/r.coin
@@ -118,35 +140,55 @@ bin/grass%%VER%%-gem
%%GRASS_INST_DIR%%/bin/r.digit
%%GRASS_INST_DIR%%/bin/r.distance
%%GRASS_INST_DIR%%/bin/r.drain
+%%GRASS_INST_DIR%%/bin/r.external
%%GRASS_INST_DIR%%/bin/r.fill.dir
%%GRASS_INST_DIR%%/bin/r.flow
%%GRASS_INST_DIR%%/bin/r.grow
+%%GRASS_INST_DIR%%/bin/r.grow.distance
+%%GRASS_INST_DIR%%/bin/r.gwflow
%%GRASS_INST_DIR%%/bin/r.his
+%%GRASS_INST_DIR%%/bin/r.horizon
%%GRASS_INST_DIR%%/bin/r.in.arc
%%GRASS_INST_DIR%%/bin/r.in.ascii
%%GRASS_INST_DIR%%/bin/r.in.bin
+%%GRASS_INST_DIR%%/bin/r.info
%%GRASS_INST_DIR%%/bin/r.in.gdal
%%GRASS_INST_DIR%%/bin/r.in.gridatb
%%GRASS_INST_DIR%%/bin/r.in.mat
%%GRASS_INST_DIR%%/bin/r.in.poly
%%GRASS_INST_DIR%%/bin/r.in.xyz
-%%GRASS_INST_DIR%%/bin/r.info
%%GRASS_INST_DIR%%/bin/r.kappa
%%GRASS_INST_DIR%%/bin/r.lake
%%GRASS_INST_DIR%%/bin/r.le.patch
%%GRASS_INST_DIR%%/bin/r.le.pixel
%%GRASS_INST_DIR%%/bin/r.le.setup
%%GRASS_INST_DIR%%/bin/r.le.trace
+%%GRASS_INST_DIR%%/bin/r.li.cwed
+%%GRASS_INST_DIR%%/bin/r.li.dominance
+%%GRASS_INST_DIR%%/bin/r.li.edgedensity
+%%GRASS_INST_DIR%%/bin/r.li.mpa
+%%GRASS_INST_DIR%%/bin/r.li.mps
+%%GRASS_INST_DIR%%/bin/r.li.padcv
+%%GRASS_INST_DIR%%/bin/r.li.padrange
+%%GRASS_INST_DIR%%/bin/r.li.padsd
+%%GRASS_INST_DIR%%/bin/r.li.patchdensity
+%%GRASS_INST_DIR%%/bin/r.li.patchnum
+%%GRASS_INST_DIR%%/bin/r.li.richness
+%%GRASS_INST_DIR%%/bin/r.li.shannon
+%%GRASS_INST_DIR%%/bin/r.li.shape
+%%GRASS_INST_DIR%%/bin/r.li.simpson
%%GRASS_INST_DIR%%/bin/r.los
%%GRASS_INST_DIR%%/bin/r.mapcalc
%%GRASS_INST_DIR%%/bin/r.median
%%GRASS_INST_DIR%%/bin/r.mfilter
+%%GRASS_INST_DIR%%/bin/r.mfilter.fp
%%GRASS_INST_DIR%%/bin/r.mode
%%GRASS_INST_DIR%%/bin/r.neighbors
%%GRASS_INST_DIR%%/bin/r.null
%%GRASS_INST_DIR%%/bin/r.out.arc
%%GRASS_INST_DIR%%/bin/r.out.ascii
%%GRASS_INST_DIR%%/bin/r.out.bin
+%%GRASS_INST_DIR%%/bin/r.out.gdal
%%GRASS_INST_DIR%%/bin/r.out.gridatb
%%GRASS_INST_DIR%%/bin/r.out.mat
%%GRASS_INST_DIR%%/bin/r.out.mpeg
@@ -162,6 +204,7 @@ bin/grass%%VER%%-gem
%%GRASS_INST_DIR%%/bin/r.profile
%%GRASS_INST_DIR%%/bin/r.proj
%%GRASS_INST_DIR%%/bin/r.quant
+%%GRASS_INST_DIR%%/bin/r.quantile
%%GRASS_INST_DIR%%/bin/r.random
%%GRASS_INST_DIR%%/bin/r.random.cells
%%GRASS_INST_DIR%%/bin/r.random.surface
@@ -169,8 +212,10 @@ bin/grass%%VER%%-gem
%%GRASS_INST_DIR%%/bin/r.recode
%%GRASS_INST_DIR%%/bin/r.region
%%GRASS_INST_DIR%%/bin/r.report
-%%GRASS_INST_DIR%%/bin/r.resamp.rst
+%%GRASS_INST_DIR%%/bin/r.resamp.interp
%%GRASS_INST_DIR%%/bin/r.resample
+%%GRASS_INST_DIR%%/bin/r.resamp.rst
+%%GRASS_INST_DIR%%/bin/r.resamp.stats
%%GRASS_INST_DIR%%/bin/r.rescale
%%GRASS_INST_DIR%%/bin/r.rescale.eq
%%GRASS_INST_DIR%%/bin/r.ros
@@ -186,6 +231,7 @@ bin/grass%%VER%%-gem
%%GRASS_INST_DIR%%/bin/r.sun
%%GRASS_INST_DIR%%/bin/r.sunmask
%%GRASS_INST_DIR%%/bin/r.support
+%%GRASS_INST_DIR%%/bin/r.support.stats
%%GRASS_INST_DIR%%/bin/r.surf.area
%%GRASS_INST_DIR%%/bin/r.surf.contour
%%GRASS_INST_DIR%%/bin/r.surf.fractal
@@ -198,11 +244,11 @@ bin/grass%%VER%%-gem
%%GRASS_INST_DIR%%/bin/r.texture
%%GRASS_INST_DIR%%/bin/r.thin
%%GRASS_INST_DIR%%/bin/r.timestamp
+%%GRASS_INST_DIR%%/bin/r.topidx
+%%GRASS_INST_DIR%%/bin/r.topmodel
%%GRASS_INST_DIR%%/bin/r.to.rast3
%%GRASS_INST_DIR%%/bin/r.to.rast3elev
%%GRASS_INST_DIR%%/bin/r.to.vect
-%%GRASS_INST_DIR%%/bin/r.topidx
-%%GRASS_INST_DIR%%/bin/r.topmodel
%%GRASS_INST_DIR%%/bin/r.transect
%%GRASS_INST_DIR%%/bin/r.univar
%%GRASS_INST_DIR%%/bin/r.volume
@@ -210,23 +256,12 @@ bin/grass%%VER%%-gem
%%GRASS_INST_DIR%%/bin/r.water.outlet
%%GRASS_INST_DIR%%/bin/r.watershed
%%GRASS_INST_DIR%%/bin/r.what
-%%GRASS_INST_DIR%%/bin/r3.cross.rast
-%%GRASS_INST_DIR%%/bin/r3.in.ascii
-%%GRASS_INST_DIR%%/bin/r3.in.v5d
-%%GRASS_INST_DIR%%/bin/r3.info
-%%GRASS_INST_DIR%%/bin/r3.mapcalc
-%%GRASS_INST_DIR%%/bin/r3.mask
-%%GRASS_INST_DIR%%/bin/r3.mkdspf
-%%GRASS_INST_DIR%%/bin/r3.null
-%%GRASS_INST_DIR%%/bin/r3.out.ascii
-%%GRASS_INST_DIR%%/bin/r3.out.v5d
-%%GRASS_INST_DIR%%/bin/r3.out.vtk
-%%GRASS_INST_DIR%%/bin/r3.timestamp
-%%GRASS_INST_DIR%%/bin/r3.to.rast
+%%GRASS_INST_DIR%%/bin/r.what.color
%%GRASS_INST_DIR%%/bin/v.buffer
%%GRASS_INST_DIR%%/bin/v.build
%%GRASS_INST_DIR%%/bin/v.build.polylines
%%GRASS_INST_DIR%%/bin/v.category
+%%GRASS_INST_DIR%%/bin/v.class
%%GRASS_INST_DIR%%/bin/v.clean
%%GRASS_INST_DIR%%/bin/v.convert
%%GRASS_INST_DIR%%/bin/v.db.connect
@@ -235,20 +270,23 @@ bin/grass%%VER%%-gem
%%GRASS_INST_DIR%%/bin/v.digit
%%GRASS_INST_DIR%%/bin/v.distance
%%GRASS_INST_DIR%%/bin/v.drape
+%%GRASS_INST_DIR%%/bin/v.edit
%%GRASS_INST_DIR%%/bin/v.external
%%GRASS_INST_DIR%%/bin/v.extract
%%GRASS_INST_DIR%%/bin/v.extrude
+%%GRASS_INST_DIR%%/bin/v.generalize
%%GRASS_INST_DIR%%/bin/v.hull
%%GRASS_INST_DIR%%/bin/v.in.ascii
%%GRASS_INST_DIR%%/bin/v.in.db
%%GRASS_INST_DIR%%/bin/v.in.dxf
+%%GRASS_INST_DIR%%/bin/v.info
%%GRASS_INST_DIR%%/bin/v.in.ogr
%%GRASS_INST_DIR%%/bin/v.in.region
%%GRASS_INST_DIR%%/bin/v.in.sites
-%%GRASS_INST_DIR%%/bin/v.info
%%GRASS_INST_DIR%%/bin/v.kcv
%%GRASS_INST_DIR%%/bin/v.kernel
%%GRASS_INST_DIR%%/bin/v.label
+%%GRASS_INST_DIR%%/bin/v.label.sa
%%GRASS_INST_DIR%%/bin/v.lidar.correction
%%GRASS_INST_DIR%%/bin/v.lidar.edgedetection
%%GRASS_INST_DIR%%/bin/v.lidar.growing
@@ -264,13 +302,15 @@ bin/grass%%VER%%-gem
%%GRASS_INST_DIR%%/bin/v.net.path
%%GRASS_INST_DIR%%/bin/v.net.salesman
%%GRASS_INST_DIR%%/bin/v.net.steiner
+%%GRASS_INST_DIR%%/bin/v.net.visibility
%%GRASS_INST_DIR%%/bin/v.normal
%%GRASS_INST_DIR%%/bin/v.out.ascii
%%GRASS_INST_DIR%%/bin/v.out.dxf
+%%GRASS_INST_DIR%%/bin/v.outlier
%%GRASS_INST_DIR%%/bin/v.out.ogr
%%GRASS_INST_DIR%%/bin/v.out.pov
+%%GRASS_INST_DIR%%/bin/v.out.svg
%%GRASS_INST_DIR%%/bin/v.out.vtk
-%%GRASS_INST_DIR%%/bin/v.outlier
%%GRASS_INST_DIR%%/bin/v.overlay
%%GRASS_INST_DIR%%/bin/v.parallel
%%GRASS_INST_DIR%%/bin/v.patch
@@ -283,9 +323,11 @@ bin/grass%%VER%%-gem
%%GRASS_INST_DIR%%/bin/v.segment
%%GRASS_INST_DIR%%/bin/v.select
%%GRASS_INST_DIR%%/bin/v.split
+%%GRASS_INST_DIR%%/bin/v.support
%%GRASS_INST_DIR%%/bin/v.surf.bspline
%%GRASS_INST_DIR%%/bin/v.surf.idw
%%GRASS_INST_DIR%%/bin/v.surf.rst
+%%GRASS_INST_DIR%%/bin/v.to.3d
%%GRASS_INST_DIR%%/bin/v.to.db
%%GRASS_INST_DIR%%/bin/v.to.points
%%GRASS_INST_DIR%%/bin/v.to.rast
@@ -298,13 +340,13 @@ bin/grass%%VER%%-gem
%%GRASS_INST_DIR%%/bin/v.what
%%GRASS_INST_DIR%%/bin/v.what.rast
%%GRASS_INST_DIR%%/bwidget/CHANGES.txt
-%%GRASS_INST_DIR%%/bwidget/LGPL.txt
+%%GRASS_INST_DIR%%/bwidget/LGPL-2.1.txt
%%GRASS_INST_DIR%%/bwidget/LICENSE.txt
%%GRASS_INST_DIR%%/bwidget/README.grass
%%GRASS_INST_DIR%%/bwidget/arrow.tcl
%%GRASS_INST_DIR%%/bwidget/bitmap.tcl
-%%GRASS_INST_DIR%%/bwidget/button.tcl
%%GRASS_INST_DIR%%/bwidget/buttonbox.tcl
+%%GRASS_INST_DIR%%/bwidget/button.tcl
%%GRASS_INST_DIR%%/bwidget/color.tcl
%%GRASS_INST_DIR%%/bwidget/combobox.tcl
%%GRASS_INST_DIR%%/bwidget/dialog.tcl
@@ -327,8 +369,8 @@ bin/grass%%VER%%-gem
%%GRASS_INST_DIR%%/bwidget/images/minus.xbm
%%GRASS_INST_DIR%%/bwidget/images/new.gif
%%GRASS_INST_DIR%%/bwidget/images/opcopy.xbm
-%%GRASS_INST_DIR%%/bwidget/images/open.gif
%%GRASS_INST_DIR%%/bwidget/images/openfold.gif
+%%GRASS_INST_DIR%%/bwidget/images/open.gif
%%GRASS_INST_DIR%%/bwidget/images/oplink.xbm
%%GRASS_INST_DIR%%/bwidget/images/opmove.xbm
%%GRASS_INST_DIR%%/bwidget/images/overstrike.gif
@@ -343,9 +385,9 @@ bin/grass%%VER%%-gem
%%GRASS_INST_DIR%%/bwidget/images/undo.gif
%%GRASS_INST_DIR%%/bwidget/images/warning.gif
%%GRASS_INST_DIR%%/bwidget/init.tcl
-%%GRASS_INST_DIR%%/bwidget/label.tcl
%%GRASS_INST_DIR%%/bwidget/labelentry.tcl
%%GRASS_INST_DIR%%/bwidget/labelframe.tcl
+%%GRASS_INST_DIR%%/bwidget/label.tcl
%%GRASS_INST_DIR%%/bwidget/lang/de.rc
%%GRASS_INST_DIR%%/bwidget/lang/en.rc
%%GRASS_INST_DIR%%/bwidget/lang/es.rc
@@ -370,12 +412,37 @@ bin/grass%%VER%%-gem
%%GRASS_INST_DIR%%/bwidget/utils.tcl
%%GRASS_INST_DIR%%/bwidget/widget.tcl
%%GRASS_INST_DIR%%/bwidget/xpm2image.tcl
+@dirrm %%GRASS_INST_DIR%%/bwidget/images
+@dirrm %%GRASS_INST_DIR%%/bwidget/lang
+@dirrm %%GRASS_INST_DIR%%/bwidget
+%%GRASS_INST_DIR%%/docs/html/aspect.png
+%%GRASS_INST_DIR%%/docs/html/circle_1.png
+%%GRASS_INST_DIR%%/docs/html/circle_2.png
+%%GRASS_INST_DIR%%/docs/html/circle_3.png
+%%GRASS_INST_DIR%%/docs/html/circle_4.png
+%%GRASS_INST_DIR%%/docs/html/circle_5.png
%%GRASS_INST_DIR%%/docs/html/d.ask.html
+%%GRASS_INST_DIR%%/docs/html/databaseintro.html
%%GRASS_INST_DIR%%/docs/html/d.barscale.html
+%%GRASS_INST_DIR%%/docs/html/db.columns.html
+%%GRASS_INST_DIR%%/docs/html/db.connect.html
+%%GRASS_INST_DIR%%/docs/html/db.copy.html
+%%GRASS_INST_DIR%%/docs/html/db.describe.html
+%%GRASS_INST_DIR%%/docs/html/db.drivers.html
+%%GRASS_INST_DIR%%/docs/html/db.dropcol.html
+%%GRASS_INST_DIR%%/docs/html/db.droptable.html
+%%GRASS_INST_DIR%%/docs/html/db.execute.html
+%%GRASS_INST_DIR%%/docs/html/db.in.ogr.html
+%%GRASS_INST_DIR%%/docs/html/db.login.html
+%%GRASS_INST_DIR%%/docs/html/db.out.ogr.html
+%%GRASS_INST_DIR%%/docs/html/db.select.html
+%%GRASS_INST_DIR%%/docs/html/db.tables.html
+%%GRASS_INST_DIR%%/docs/html/db.test.html
%%GRASS_INST_DIR%%/docs/html/d.colorlist.html
%%GRASS_INST_DIR%%/docs/html/d.colors.html
%%GRASS_INST_DIR%%/docs/html/d.colortable.html
%%GRASS_INST_DIR%%/docs/html/d.correlate.html
+%%GRASS_INST_DIR%%/docs/html/dem.png
%%GRASS_INST_DIR%%/docs/html/d.erase.html
%%GRASS_INST_DIR%%/docs/html/d.extend.html
%%GRASS_INST_DIR%%/docs/html/d.extract.html
@@ -388,13 +455,14 @@ bin/grass%%VER%%-gem
%%GRASS_INST_DIR%%/docs/html/d.his.html
%%GRASS_INST_DIR%%/docs/html/d.histogram.html
%%GRASS_INST_DIR%%/docs/html/d.info.html
+%%GRASS_INST_DIR%%/docs/html/displaydrivers.html
%%GRASS_INST_DIR%%/docs/html/d.labels.html
%%GRASS_INST_DIR%%/docs/html/d.legend.html
%%GRASS_INST_DIR%%/docs/html/d.linegraph.html
-%%GRASS_INST_DIR%%/docs/html/d.m.html
%%GRASS_INST_DIR%%/docs/html/d.mapgraph.html
%%GRASS_INST_DIR%%/docs/html/d.measure.html
%%GRASS_INST_DIR%%/docs/html/d.menu.html
+%%GRASS_INST_DIR%%/docs/html/d.m.html
%%GRASS_INST_DIR%%/docs/html/d.mon.html
%%GRASS_INST_DIR%%/docs/html/d.monsize.html
%%GRASS_INST_DIR%%/docs/html/d.mvmon.html
@@ -402,7 +470,9 @@ bin/grass%%VER%%-gem
%%GRASS_INST_DIR%%/docs/html/d.out.file.html
%%GRASS_INST_DIR%%/docs/html/d.out.gpsdrive.html
%%GRASS_INST_DIR%%/docs/html/d.out.png.html
+%%GRASS_INST_DIR%%/docs/html/d.paint.labels.html
%%GRASS_INST_DIR%%/docs/html/d.path.html
+%%GRASS_INST_DIR%%/docs/html/d_polar_aspect.png
%%GRASS_INST_DIR%%/docs/html/d.polar.html
%%GRASS_INST_DIR%%/docs/html/d.profile.html
%%GRASS_INST_DIR%%/docs/html/d.rast.arrow.html
@@ -415,48 +485,66 @@ bin/grass%%VER%%-gem
%%GRASS_INST_DIR%%/docs/html/d.rgb.html
%%GRASS_INST_DIR%%/docs/html/d.rhumbline.html
%%GRASS_INST_DIR%%/docs/html/d.save.html
+%%GRASS_INST_DIR%%/docs/html/d.shadedmap.html
%%GRASS_INST_DIR%%/docs/html/d.slide.show.html
+%%GRASS_INST_DIR%%/docs/html/d.split.frame.html
%%GRASS_INST_DIR%%/docs/html/d.split.html
%%GRASS_INST_DIR%%/docs/html/d.text.freetype.html
%%GRASS_INST_DIR%%/docs/html/d.text.html
+%%GRASS_INST_DIR%%/docs/html/d.thematic.area.html
%%GRASS_INST_DIR%%/docs/html/d.title.html
-%%GRASS_INST_DIR%%/docs/html/d.vect.chart.html
%%GRASS_INST_DIR%%/docs/html/d.vect.chart_example.jpg
+%%GRASS_INST_DIR%%/docs/html/d.vect.chart.html
%%GRASS_INST_DIR%%/docs/html/d.vect.html
%%GRASS_INST_DIR%%/docs/html/d.vect.thematic.html
%%GRASS_INST_DIR%%/docs/html/d.what.rast.html
%%GRASS_INST_DIR%%/docs/html/d.what.vect.html
%%GRASS_INST_DIR%%/docs/html/d.where.html
%%GRASS_INST_DIR%%/docs/html/d.zoom.html
-%%GRASS_INST_DIR%%/docs/html/d_polar_aspect.png
-%%GRASS_INST_DIR%%/docs/html/databaseintro.html
-%%GRASS_INST_DIR%%/docs/html/db.columns.html
-%%GRASS_INST_DIR%%/docs/html/db.connect.html
-%%GRASS_INST_DIR%%/docs/html/db.copy.html
-%%GRASS_INST_DIR%%/docs/html/db.describe.html
-%%GRASS_INST_DIR%%/docs/html/db.drivers.html
-%%GRASS_INST_DIR%%/docs/html/db.droptable.html
-%%GRASS_INST_DIR%%/docs/html/db.execute.html
-%%GRASS_INST_DIR%%/docs/html/db.login.html
-%%GRASS_INST_DIR%%/docs/html/db.select.html
-%%GRASS_INST_DIR%%/docs/html/db.tables.html
-%%GRASS_INST_DIR%%/docs/html/db.test.html
-%%GRASS_INST_DIR%%/docs/html/displaydrivers.html
%%GRASS_INST_DIR%%/docs/html/g.access.html
%%GRASS_INST_DIR%%/docs/html/g.ask.html
%%GRASS_INST_DIR%%/docs/html/g.copy.html
+%%GRASS_INST_DIR%%/docs/html/g.dirseps.html
+%%GRASS_INST_DIR%%/docs/html/g.extension.html
%%GRASS_INST_DIR%%/docs/html/g.filename.html
+%%GRASS_INST_DIR%%/docs/html/g.findetc.html
%%GRASS_INST_DIR%%/docs/html/g.findfile.html
%%GRASS_INST_DIR%%/docs/html/g.gisenv.html
+%%GRASS_INST_DIR%%/docs/html/g.gui.html
+%%GRASS_INST_DIR%%/docs/html/gis.m.html
%%GRASS_INST_DIR%%/docs/html/g.list.html
+%%GRASS_INST_DIR%%/docs/html/gm_animate1.png
+%%GRASS_INST_DIR%%/docs/html/gm_animate.html
+%%GRASS_INST_DIR%%/docs/html/gm_animate2.jpg
+%%GRASS_INST_DIR%%/docs/html/gm_animatetool.png
%%GRASS_INST_DIR%%/docs/html/g.manual.html
%%GRASS_INST_DIR%%/docs/html/g.mapset.html
%%GRASS_INST_DIR%%/docs/html/g.mapsets.html
+%%GRASS_INST_DIR%%/docs/html/g.message.html
+%%GRASS_INST_DIR%%/docs/html/gm_gcpmgr.jpg
+%%GRASS_INST_DIR%%/docs/html/gm_georectdisp.jpg
+%%GRASS_INST_DIR%%/docs/html/gm_georect.html
+%%GRASS_INST_DIR%%/docs/html/gm_georectstart.jpg
+%%GRASS_INST_DIR%%/docs/html/gm_gismgr.jpg
+%%GRASS_INST_DIR%%/docs/html/gm_gismgrtools.png
+%%GRASS_INST_DIR%%/docs/html/gm_gronsole.png
+%%GRASS_INST_DIR%%/docs/html/g.mkfontcap.html
%%GRASS_INST_DIR%%/docs/html/g.mlist.html
+%%GRASS_INST_DIR%%/docs/html/gm_mapdisp.jpg
+%%GRASS_INST_DIR%%/docs/html/gm_mapdisptools.png
+%%GRASS_INST_DIR%%/docs/html/gm_profile1.png
+%%GRASS_INST_DIR%%/docs/html/gm_profile3.png
+%%GRASS_INST_DIR%%/docs/html/gm_profile.html
+%%GRASS_INST_DIR%%/docs/html/gm_profile2.jpg
%%GRASS_INST_DIR%%/docs/html/g.mremove.html
%%GRASS_INST_DIR%%/docs/html/g.parser.html
%%GRASS_INST_DIR%%/docs/html/g.pnmcomp.html
%%GRASS_INST_DIR%%/docs/html/g.proj.html
+%%GRASS_INST_DIR%%/docs/html/grass6.html
+%%GRASS_INST_DIR%%/docs/html/grass-dbf.html
+%%GRASS_INST_DIR%%/docs/html/grass_logo.txt
+%%GRASS_INST_DIR%%/docs/html/grass-ogr.html
+%%GRASS_INST_DIR%%/docs/html/grass_start.png
%%GRASS_INST_DIR%%/docs/html/g.region.html
%%GRASS_INST_DIR%%/docs/html/g.remove.html
%%GRASS_INST_DIR%%/docs/html/g.rename.html
@@ -464,20 +552,298 @@ bin/grass%%VER%%-gem
%%GRASS_INST_DIR%%/docs/html/g.tempfile.html
%%GRASS_INST_DIR%%/docs/html/g.transform.html
%%GRASS_INST_DIR%%/docs/html/g.version.html
-%%GRASS_INST_DIR%%/docs/html/gis.m.html
-%%GRASS_INST_DIR%%/docs/html/grass-dbf.html
-%%MYSQL%%%%GRASS_INST_DIR%%/docs/html/grass-mesql.html
-%%MYSQL%%%%GRASS_INST_DIR%%/docs/html/grass-mysql.html
-%%ODBC%%%%GRASS_INST_DIR%%/docs/html/grass-odbc.html
-%%PGSQL%%%%GRASS_INST_DIR%%/docs/html/grass-pg.html
-%%SQLITE%%%%GRASS_INST_DIR%%/docs/html/grass-sqlite.html
-%%GRASS_INST_DIR%%/docs/html/grass6.html
-%%GRASS_INST_DIR%%/docs/html/grass_logo.txt
+%%GRASS_INST_DIR%%/docs/html/help_loc_struct.png
%%GRASS_INST_DIR%%/docs/html/helptext.html
+%%GRASS_INST_DIR%%/docs/html/htmlmapdriver.html
%%GRASS_INST_DIR%%/docs/html/i.ask.html
+%%GRASS_INST_DIR%%/docs/html/i.atcorr.html
%%GRASS_INST_DIR%%/docs/html/i.cca.html
%%GRASS_INST_DIR%%/docs/html/i.class.html
%%GRASS_INST_DIR%%/docs/html/i.cluster.html
+%%GRASS_INST_DIR%%/docs/html/icons/grass2/attributes-display.png
+%%GRASS_INST_DIR%%/docs/html/icons/grass2/cats-copy.png
+%%GRASS_INST_DIR%%/docs/html/icons/grass2/cats-display.png
+%%GRASS_INST_DIR%%/docs/html/icons/grass2/centroid-create.png
+%%GRASS_INST_DIR%%/docs/html/icons/grass2/create.png
+%%GRASS_INST_DIR%%/docs/html/icons/grass2/erase.png
+%%GRASS_INST_DIR%%/docs/html/icons/grass2/font.png
+%%GRASS_INST_DIR%%/docs/html/icons/grass2/gcp-add.png
+%%GRASS_INST_DIR%%/docs/html/icons/grass2/gcp-create.png
+%%GRASS_INST_DIR%%/docs/html/icons/grass2/gcp-delete.png
+%%GRASS_INST_DIR%%/docs/html/icons/grass2/gcp-remove.png
+%%GRASS_INST_DIR%%/docs/html/icons/grass2/gcp-rms.png
+%%GRASS_INST_DIR%%/docs/html/icons/grass2/gcp-save.png
+%%GRASS_INST_DIR%%/docs/html/icons/grass2/georectify.png
+%%GRASS_INST_DIR%%/docs/html/icons/grass2/info.png
+%%GRASS_INST_DIR%%/docs/html/icons/grass2/layer-aspect-arrow-add.png
+%%GRASS_INST_DIR%%/docs/html/icons/grass2/layer-cell-cats-add.png
+%%GRASS_INST_DIR%%/docs/html/icons/grass2/layer-command-add.png
+%%GRASS_INST_DIR%%/docs/html/icons/grass2/layer-grid-add.png
+%%GRASS_INST_DIR%%/docs/html/icons/grass2/layer-group-add.png
+%%GRASS_INST_DIR%%/docs/html/icons/grass2/layer-his-add.png
+%%GRASS_INST_DIR%%/docs/html/icons/grass2/layer-label-add.png
+%%GRASS_INST_DIR%%/docs/html/icons/grass2/layer-open.png
+%%GRASS_INST_DIR%%/docs/html/icons/grass2/layer-raster-add.png
+%%GRASS_INST_DIR%%/docs/html/icons/grass2/layer-raster-analyze.png
+%%GRASS_INST_DIR%%/docs/html/icons/grass2/layer-raster3d-add.png
+%%GRASS_INST_DIR%%/docs/html/icons/grass2/layer-raster-histogram.png
+%%GRASS_INST_DIR%%/docs/html/icons/grass2/layer-raster-profile.png
+%%GRASS_INST_DIR%%/docs/html/icons/grass2/layer-redraw.png
+%%GRASS_INST_DIR%%/docs/html/icons/grass2/layer-remove.png
+%%GRASS_INST_DIR%%/docs/html/icons/grass2/layer-rgb-add.png
+%%GRASS_INST_DIR%%/docs/html/icons/grass2/layer-shaded-relief-add.png
+%%GRASS_INST_DIR%%/docs/html/icons/grass2/layer-vector-add.png
+%%GRASS_INST_DIR%%/docs/html/icons/grass2/layer-vector-chart-add.png
+%%GRASS_INST_DIR%%/docs/html/icons/grass2/layer-vector-thematic-add.png
+%%GRASS_INST_DIR%%/docs/html/icons/grass2/legend-add.png
+%%GRASS_INST_DIR%%/docs/html/icons/grass2/line-create.png
+%%GRASS_INST_DIR%%/docs/html/icons/grass2/line-delete.png
+%%GRASS_INST_DIR%%/docs/html/icons/grass2/line-edit.png
+%%GRASS_INST_DIR%%/docs/html/icons/grass2/line-move.png
+%%GRASS_INST_DIR%%/docs/html/icons/grass2/line-split.png
+%%GRASS_INST_DIR%%/docs/html/icons/grass2/map-export.png
+%%GRASS_INST_DIR%%/docs/html/icons/grass2/measure-length.png
+%%GRASS_INST_DIR%%/docs/html/icons/grass2/monitor-create.png
+%%GRASS_INST_DIR%%/docs/html/icons/grass2/open.png
+%%GRASS_INST_DIR%%/docs/html/icons/grass2/options.png
+%%GRASS_INST_DIR%%/docs/html/icons/grass2/overlay-add.png
+%%GRASS_INST_DIR%%/docs/html/icons/grass2/pan.png
+%%GRASS_INST_DIR%%/docs/html/icons/grass2/point-create.png
+%%GRASS_INST_DIR%%/docs/html/icons/grass2/pointer.png
+%%GRASS_INST_DIR%%/docs/html/icons/grass2/polygon-create.png
+%%GRASS_INST_DIR%%/docs/html/icons/grass2/print.png
+%%GRASS_INST_DIR%%/docs/html/icons/grass2/quit.png
+%%GRASS_INST_DIR%%/docs/html/icons/grass2/redraw.png
+%%GRASS_INST_DIR%%/docs/html/icons/grass2/reload.png
+%%GRASS_INST_DIR%%/docs/html/icons/grass2/save.png
+%%GRASS_INST_DIR%%/docs/html/icons/grass2/scalebar-add.png
+%%GRASS_INST_DIR%%/docs/html/icons/grass2/settings.png
+%%GRASS_INST_DIR%%/docs/html/icons/grass2/show.png
+%%GRASS_INST_DIR%%/docs/html/icons/grass2/table.png
+%%GRASS_INST_DIR%%/docs/html/icons/grass2/text-add.png
+%%GRASS_INST_DIR%%/docs/html/icons/grass2/tools.png
+%%GRASS_INST_DIR%%/docs/html/icons/grass2/undo.png
+%%GRASS_INST_DIR%%/docs/html/icons/grass2/vertex-create.png
+%%GRASS_INST_DIR%%/docs/html/icons/grass2/vertex-delete.png
+%%GRASS_INST_DIR%%/docs/html/icons/grass2/vertex-move.png
+%%GRASS_INST_DIR%%/docs/html/icons/grass2/zoom-in.png
+%%GRASS_INST_DIR%%/docs/html/icons/grass2/zoom-last.png
+%%GRASS_INST_DIR%%/docs/html/icons/grass2/zoom-more.png
+%%GRASS_INST_DIR%%/docs/html/icons/grass2/zoom-out.png
+%%GRASS_INST_DIR%%/docs/html/icons/grass/channel-blue.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/channel-green.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/channel-his.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/channel-hue.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/channel-intensity.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/channel-red.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/channel-rgb.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/channel-saturation.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/db-columns.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/db-values.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/drawmode-explore.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/drawmode-strict.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/edit-color.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/edit-copy.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/edit-cut.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/element-3d.view.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/element-cell.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/element-grid3.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/element-group.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/element-icons.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/element-labels.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/element-vector.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/element-windows.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/file-new.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/file-open.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/file-print.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/file-save.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/gui-cmd.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/gui-display.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/gui-erase.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/gui-exit.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/gui-ff.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/gui-filesave.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/gui-font.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/gui-gcperase.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/gui-gcpset.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/gui-georect.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/gui-group.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/gui-help.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/gui-layeroptions.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/gui-loop.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/gui-maplabels.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/gui-maptext.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/gui-mapzoom.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/gui-measure.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/gui-mouse.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/gui-overlay.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/gui-pan.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/gui-play.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/gui-pointer.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/gui-profiledefine.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/gui-profiledraw.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/gui-profile.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/gui-profileopt.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/gui-query.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/gui-rabbit.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/gui-rastanalyze.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/gui-rastarrowsdir.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/gui-rastarrowsint.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/gui-redraw.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/gui-rewind.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/gui-rms.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/gui-rplay.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/gui-rv.info.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/gui-snail.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/gui-startmon.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/gui-stepb.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/gui-stepf.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/gui-stop.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/gui-swing.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/gui-zoom_back.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/gui-zoom_current.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/gui-zoom_default.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/gui-zoom_in.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/gui-zoom_map.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/gui-zoom_out.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/gui-zoom_region.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/module-d.barscale.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/module-db.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/module-d.chart.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/module-d.frame.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/module-d.geodesic.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/module-d.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/module-d.graph.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/module-d.grid.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/module-d.histogram.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/module-d.labels.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/module-d.legend.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/module-d.nviz.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/module-d.rast.arrow.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/module-d.rast.num.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/module-d.rgb.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/module-d.rhumbline.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/module-d.shadedmap.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/module-d.text.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/module-d.thematic.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/module-d.vect.chart.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/module-d.vect.thematic.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/module-g.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/module-nviz.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/module-r3.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/module-r.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/module-v.digit.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/module-v.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/module-xganim.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/status-error.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/status-failure.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/status-gism.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/status-message.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/status-out.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/status-running.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/status-success.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/status-warning.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/vdigit/add.vertex.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/vdigit/box.xbm
+%%GRASS_INST_DIR%%/docs/html/icons/grass/vdigit/copy.cats.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/vdigit/cross45.xbm
+%%GRASS_INST_DIR%%/docs/html/icons/grass/vdigit/cross.xbm
+%%GRASS_INST_DIR%%/docs/html/icons/grass/vdigit/delete.line.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/vdigit/display.attributes.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/vdigit/display.cats.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/vdigit/edit.line.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/vdigit/exit.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/vdigit/move.line.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/vdigit/move.vertex.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/vdigit/new.boundary.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/vdigit/new.centroid.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/vdigit/new.line.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/vdigit/new.point.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/vdigit/redraw.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/vdigit/remove.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/vdigit/rm.vertex.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/vdigit/settings.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/vdigit/split.line.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/vdigit/stop.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/vdigit/zoom.default.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/vdigit/zoom.out.centre.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/vdigit/zoom.pan.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/vdigit/zoom.region.gif
+%%GRASS_INST_DIR%%/docs/html/icons/grass/vdigit/zoom.window.gif
+%%GRASS_INST_DIR%%/docs/html/icons/silk/application_add.png
+%%GRASS_INST_DIR%%/docs/html/icons/silk/application_delete.png
+%%GRASS_INST_DIR%%/docs/html/icons/silk/application_lightning.png
+%%GRASS_INST_DIR%%/docs/html/icons/silk/application.png
+%%GRASS_INST_DIR%%/docs/html/icons/silk/application_view_columns.png
+%%GRASS_INST_DIR%%/docs/html/icons/silk/application_view_icons.png
+%%GRASS_INST_DIR%%/docs/html/icons/silk/arrow_inout.png
+%%GRASS_INST_DIR%%/docs/html/icons/silk/arrow_out.png
+%%GRASS_INST_DIR%%/docs/html/icons/silk/arrow_refresh.png
+%%GRASS_INST_DIR%%/docs/html/icons/silk/arrow_undo.png
+%%GRASS_INST_DIR%%/docs/html/icons/silk/bin_closed.png
+%%GRASS_INST_DIR%%/docs/html/icons/silk/bricks.png
+%%GRASS_INST_DIR%%/docs/html/icons/silk/bullet_add.png
+%%GRASS_INST_DIR%%/docs/html/icons/silk/bullet_delete.png
+%%GRASS_INST_DIR%%/docs/html/icons/silk/bullet_go.png
+%%GRASS_INST_DIR%%/docs/html/icons/silk/chart_bar.png
+%%GRASS_INST_DIR%%/docs/html/icons/silk/chart_line_add.png
+%%GRASS_INST_DIR%%/docs/html/icons/silk/chart_line_delete.png
+%%GRASS_INST_DIR%%/docs/html/icons/silk/chart_line_edit.png
+%%GRASS_INST_DIR%%/docs/html/icons/silk/chart_line_link.png
+%%GRASS_INST_DIR%%/docs/html/icons/silk/chart_line.png
+%%GRASS_INST_DIR%%/docs/html/icons/silk/chart_organisation_add.png
+%%GRASS_INST_DIR%%/docs/html/icons/silk/chart_organisation.png
+%%GRASS_INST_DIR%%/docs/html/icons/silk/cog_add.png
+%%GRASS_INST_DIR%%/docs/html/icons/silk/color_swatch.png
+%%GRASS_INST_DIR%%/docs/html/icons/silk/cross.png
+%%GRASS_INST_DIR%%/docs/html/icons/silk/cursor.png
+%%GRASS_INST_DIR%%/docs/html/icons/silk/door_in.png
+%%GRASS_INST_DIR%%/docs/html/icons/silk/error.png
+%%GRASS_INST_DIR%%/docs/html/icons/silk/folder_add.png
+%%GRASS_INST_DIR%%/docs/html/icons/silk/folder.png
+%%GRASS_INST_DIR%%/docs/html/icons/silk/font.png
+%%GRASS_INST_DIR%%/docs/html/icons/silk/grid.png
+%%GRASS_INST_DIR%%/docs/html/icons/silk/his.png
+%%GRASS_INST_DIR%%/docs/html/icons/silk/image_add.png
+%%GRASS_INST_DIR%%/docs/html/icons/silk/image_edit.png
+%%GRASS_INST_DIR%%/docs/html/icons/silk/images.png
+%%GRASS_INST_DIR%%/docs/html/icons/silk/information.png
+%%GRASS_INST_DIR%%/docs/html/icons/silk/layout_content.png
+%%GRASS_INST_DIR%%/docs/html/icons/silk/map_add.png
+%%GRASS_INST_DIR%%/docs/html/icons/silk/map_edit.png
+%%GRASS_INST_DIR%%/docs/html/icons/silk/map_go.png
+%%GRASS_INST_DIR%%/docs/html/icons/silk/map_magnify_menu.png
+%%GRASS_INST_DIR%%/docs/html/icons/silk/map_magnify.png
+%%GRASS_INST_DIR%%/docs/html/icons/silk/map.png
+%%GRASS_INST_DIR%%/docs/html/icons/silk/overlays.png
+%%GRASS_INST_DIR%%/docs/html/icons/silk/page_green.png
+%%GRASS_INST_DIR%%/docs/html/icons/silk/page_save.png
+%%GRASS_INST_DIR%%/docs/html/icons/silk/page_white_get.png
+%%GRASS_INST_DIR%%/docs/html/icons/silk/page_white_lightning.png
+%%GRASS_INST_DIR%%/docs/html/icons/silk/page_white_picture.png
+%%GRASS_INST_DIR%%/docs/html/icons/silk/page_white.png
+%%GRASS_INST_DIR%%/docs/html/icons/silk/picture_empty.png
+%%GRASS_INST_DIR%%/docs/html/icons/silk/picture_save.png
+%%GRASS_INST_DIR%%/docs/html/icons/silk/plugin_add.png
+%%GRASS_INST_DIR%%/docs/html/icons/silk/plugin.png
+%%GRASS_INST_DIR%%/docs/html/icons/silk/printer.png
+%%GRASS_INST_DIR%%/docs/html/icons/silk/rgb.png
+%%GRASS_INST_DIR%%/docs/html/icons/silk/shape_handles.png
+%%GRASS_INST_DIR%%/docs/html/icons/silk/shape_square_add.png
+%%GRASS_INST_DIR%%/docs/html/icons/silk/sum.png
+%%GRASS_INST_DIR%%/docs/html/icons/silk/table_add.png
+%%GRASS_INST_DIR%%/docs/html/icons/silk/table.png
+%%GRASS_INST_DIR%%/docs/html/icons/silk/tag_blue_add.png
+%%GRASS_INST_DIR%%/docs/html/icons/silk/tag_green.png
+%%GRASS_INST_DIR%%/docs/html/icons/silk/textfield_add.png
+%%GRASS_INST_DIR%%/docs/html/icons/silk/thematic.png
+%%GRASS_INST_DIR%%/docs/html/icons/silk/vector_add.png
+%%GRASS_INST_DIR%%/docs/html/icons/silk/vector_delete.png
+%%GRASS_INST_DIR%%/docs/html/icons/silk/wand.png
+%%GRASS_INST_DIR%%/docs/html/icons/silk/zoom_back.png
+%%GRASS_INST_DIR%%/docs/html/icons/silk/zoom_in.png
+%%GRASS_INST_DIR%%/docs/html/icons/silk/zoom_out.png
+%%GRASS_INST_DIR%%/docs/html/icons/silk/zoom.png
%%GRASS_INST_DIR%%/docs/html/i.fft.html
%%GRASS_INST_DIR%%/docs/html/i.find.html
%%GRASS_INST_DIR%%/docs/html/i.fusion.brovey.html
@@ -489,6 +855,7 @@ bin/grass%%VER%%-gem
%%GRASS_INST_DIR%%/docs/html/i.image.mosaic.html
%%GRASS_INST_DIR%%/docs/html/i.in.spotvgt.html
%%GRASS_INST_DIR%%/docs/html/i.landsat.rgb.html
+%%GRASS_INST_DIR%%/docs/html/imageryintro.html
%%GRASS_INST_DIR%%/docs/html/i.maxlik.html
%%GRASS_INST_DIR%%/docs/html/i.oif.html
%%GRASS_INST_DIR%%/docs/html/i.ortho.photo.html
@@ -502,121 +869,29 @@ bin/grass%%VER%%-gem
%%GRASS_INST_DIR%%/docs/html/i.tasscap.html
%%GRASS_INST_DIR%%/docs/html/i.vpoints.html
%%GRASS_INST_DIR%%/docs/html/i.zc.html
-%%GRASS_INST_DIR%%/docs/html/icons/channel-blue.gif
-%%GRASS_INST_DIR%%/docs/html/icons/channel-green.gif
-%%GRASS_INST_DIR%%/docs/html/icons/channel-his.gif
-%%GRASS_INST_DIR%%/docs/html/icons/channel-hue.gif
-%%GRASS_INST_DIR%%/docs/html/icons/channel-intensity.gif
-%%GRASS_INST_DIR%%/docs/html/icons/channel-red.gif
-%%GRASS_INST_DIR%%/docs/html/icons/channel-rgb.gif
-%%GRASS_INST_DIR%%/docs/html/icons/channel-saturation.gif
-%%GRASS_INST_DIR%%/docs/html/icons/db-columns.gif
-%%GRASS_INST_DIR%%/docs/html/icons/db-values.gif
-%%GRASS_INST_DIR%%/docs/html/icons/drawmode-explore.gif
-%%GRASS_INST_DIR%%/docs/html/icons/drawmode-strict.gif
-%%GRASS_INST_DIR%%/docs/html/icons/edit-color.gif
-%%GRASS_INST_DIR%%/docs/html/icons/edit-copy.gif
-%%GRASS_INST_DIR%%/docs/html/icons/edit-cut.gif
-%%GRASS_INST_DIR%%/docs/html/icons/element-3d.view.gif
-%%GRASS_INST_DIR%%/docs/html/icons/element-cell.gif
-%%GRASS_INST_DIR%%/docs/html/icons/element-grid3.gif
-%%GRASS_INST_DIR%%/docs/html/icons/element-group.gif
-%%GRASS_INST_DIR%%/docs/html/icons/element-icons.gif
-%%GRASS_INST_DIR%%/docs/html/icons/element-labels.gif
-%%GRASS_INST_DIR%%/docs/html/icons/element-vector.gif
-%%GRASS_INST_DIR%%/docs/html/icons/element-windows.gif
-%%GRASS_INST_DIR%%/docs/html/icons/file-new.gif
-%%GRASS_INST_DIR%%/docs/html/icons/file-open.gif
-%%GRASS_INST_DIR%%/docs/html/icons/file-print.gif
-%%GRASS_INST_DIR%%/docs/html/icons/file-save.gif
-%%GRASS_INST_DIR%%/docs/html/icons/gui-cmd.gif
-%%GRASS_INST_DIR%%/docs/html/icons/gui-display.gif
-%%GRASS_INST_DIR%%/docs/html/icons/gui-erase.gif
-%%GRASS_INST_DIR%%/docs/html/icons/gui-filesave.gif
-%%GRASS_INST_DIR%%/docs/html/icons/gui-font.gif
-%%GRASS_INST_DIR%%/docs/html/icons/gui-gcperase.gif
-%%GRASS_INST_DIR%%/docs/html/icons/gui-gcpset.gif
-%%GRASS_INST_DIR%%/docs/html/icons/gui-georect.gif
-%%GRASS_INST_DIR%%/docs/html/icons/gui-group.gif
-%%GRASS_INST_DIR%%/docs/html/icons/gui-help.gif
-%%GRASS_INST_DIR%%/docs/html/icons/gui-maplabels.gif
-%%GRASS_INST_DIR%%/docs/html/icons/gui-maptext.gif
-%%GRASS_INST_DIR%%/docs/html/icons/gui-mapzoom.gif
-%%GRASS_INST_DIR%%/docs/html/icons/gui-measure.gif
-%%GRASS_INST_DIR%%/docs/html/icons/gui-pan.gif
-%%GRASS_INST_DIR%%/docs/html/icons/gui-pointer.gif
-%%GRASS_INST_DIR%%/docs/html/icons/gui-profile.gif
-%%GRASS_INST_DIR%%/docs/html/icons/gui-profiledefine.gif
-%%GRASS_INST_DIR%%/docs/html/icons/gui-profiledraw.gif
-%%GRASS_INST_DIR%%/docs/html/icons/gui-query.gif
-%%GRASS_INST_DIR%%/docs/html/icons/gui-rastarrowsdir.gif
-%%GRASS_INST_DIR%%/docs/html/icons/gui-rastarrowsint.gif
-%%GRASS_INST_DIR%%/docs/html/icons/gui-redraw.gif
-%%GRASS_INST_DIR%%/docs/html/icons/gui-rms.gif
-%%GRASS_INST_DIR%%/docs/html/icons/gui-startmon.gif
-%%GRASS_INST_DIR%%/docs/html/icons/gui-zoom_back.gif
-%%GRASS_INST_DIR%%/docs/html/icons/gui-zoom_current.gif
-%%GRASS_INST_DIR%%/docs/html/icons/gui-zoom_default.gif
-%%GRASS_INST_DIR%%/docs/html/icons/gui-zoom_in.gif
-%%GRASS_INST_DIR%%/docs/html/icons/gui-zoom_map.gif
-%%GRASS_INST_DIR%%/docs/html/icons/gui-zoom_out.gif
-%%GRASS_INST_DIR%%/docs/html/icons/gui-zoom_region.gif
-%%GRASS_INST_DIR%%/docs/html/icons/module-d.barscale.gif
-%%GRASS_INST_DIR%%/docs/html/icons/module-d.chart.gif
-%%GRASS_INST_DIR%%/docs/html/icons/module-d.frame.gif
-%%GRASS_INST_DIR%%/docs/html/icons/module-d.gif
-%%GRASS_INST_DIR%%/docs/html/icons/module-d.graph.gif
-%%GRASS_INST_DIR%%/docs/html/icons/module-d.grid.gif
-%%GRASS_INST_DIR%%/docs/html/icons/module-d.histogram.gif
-%%GRASS_INST_DIR%%/docs/html/icons/module-d.labels.gif
-%%GRASS_INST_DIR%%/docs/html/icons/module-d.legend.gif
-%%GRASS_INST_DIR%%/docs/html/icons/module-d.nviz.gif
-%%GRASS_INST_DIR%%/docs/html/icons/module-d.rast.arrow.gif
-%%GRASS_INST_DIR%%/docs/html/icons/module-d.rast.num.gif
-%%GRASS_INST_DIR%%/docs/html/icons/module-d.rgb.gif
-%%GRASS_INST_DIR%%/docs/html/icons/module-d.thematic.gif
-%%GRASS_INST_DIR%%/docs/html/icons/module-d.vect.chart.gif
-%%GRASS_INST_DIR%%/docs/html/icons/module-d.vect.thematic.gif
-%%GRASS_INST_DIR%%/docs/html/icons/module-db.gif
-%%GRASS_INST_DIR%%/docs/html/icons/module-g.gif
-%%GRASS_INST_DIR%%/docs/html/icons/module-nviz.gif
-%%GRASS_INST_DIR%%/docs/html/icons/module-r.gif
-%%GRASS_INST_DIR%%/docs/html/icons/module-r3.gif
-%%GRASS_INST_DIR%%/docs/html/icons/module-v.digit.gif
-%%GRASS_INST_DIR%%/docs/html/icons/module-v.gif
-%%GRASS_INST_DIR%%/docs/html/icons/module-xganim.gif
-%%GRASS_INST_DIR%%/docs/html/icons/status-error.gif
-%%GRASS_INST_DIR%%/docs/html/icons/status-failure.gif
-%%GRASS_INST_DIR%%/docs/html/icons/status-gism.gif
-%%GRASS_INST_DIR%%/docs/html/icons/status-message.gif
-%%GRASS_INST_DIR%%/docs/html/icons/status-out.gif
-%%GRASS_INST_DIR%%/docs/html/icons/status-running.gif
-%%GRASS_INST_DIR%%/docs/html/icons/status-success.gif
-%%GRASS_INST_DIR%%/docs/html/icons/status-warning.gif
-%%GRASS_INST_DIR%%/docs/html/imageryintro.html
+%%GRASS_INST_DIR%%/docs/html/landsat_cluster.png
%%GRASS_INST_DIR%%/docs/html/lrs.html
%%GRASS_INST_DIR%%/docs/html/m.cogo.html
-%%GRASS_INST_DIR%%/docs/html/m.proj.html
+%%GRASS_INST_DIR%%/docs/html/mkftcap.html
%%GRASS_INST_DIR%%/docs/html/modcats.html
%%GRASS_INST_DIR%%/docs/html/modcolr.html
%%GRASS_INST_DIR%%/docs/html/modhead.html
%%GRASS_INST_DIR%%/docs/html/modhist.html
-%%GRASS_INST_DIR%%/docs/html/nviz.html
-%%GRASS_INST_DIR%%/docs/html/nviz/Makefile
+%%GRASS_INST_DIR%%/docs/html/m.proj.html
%%GRASS_INST_DIR%%/docs/html/nviz/bugs_todo.html
+%%GRASS_INST_DIR%%/docs/html/nviz_cmd.html
%%GRASS_INST_DIR%%/docs/html/nviz/gmsmodviz.gif
-%%GRASS_INST_DIR%%/docs/html/nviz/grass.smlogo.gif
-%%GRASS_INST_DIR%%/docs/html/nviz/help.tcl
-%%GRASS_INST_DIR%%/docs/html/nviz/help_frame.tcl
+%%GRASS_INST_DIR%%/docs/html/nviz/grass_logo.png
+%%GRASS_INST_DIR%%/docs/html/nviz.html
%%GRASS_INST_DIR%%/docs/html/nviz/img/nv/9j.gif
%%GRASS_INST_DIR%%/docs/html/nviz/img/nv/9j_i.gif
%%GRASS_INST_DIR%%/docs/html/nviz/img/nv/cplane.gif
%%GRASS_INST_DIR%%/docs/html/nviz/img/nv/cplane_i.gif
%%GRASS_INST_DIR%%/docs/html/nviz/img/nv/cut1.gif
%%GRASS_INST_DIR%%/docs/html/nviz/img/nv/cut1_i.gif
+%%GRASS_INST_DIR%%/docs/html/nviz/img/nv/inter1b.gif
%%GRASS_INST_DIR%%/docs/html/nviz/img/nv/inter1.gif
%%GRASS_INST_DIR%%/docs/html/nviz/img/nv/inter1_i.gif
-%%GRASS_INST_DIR%%/docs/html/nviz/img/nv/inter1b.gif
%%GRASS_INST_DIR%%/docs/html/nviz/img/nv/lmodel.gif
%%GRASS_INST_DIR%%/docs/html/nviz/img/nv/lmodel_i.gif
%%GRASS_INST_DIR%%/docs/html/nviz/img/nv/mask1.gif
@@ -636,28 +911,28 @@ bin/grass%%VER%%-gem
%%GRASS_INST_DIR%%/docs/html/nviz/img/nv/trcut3.gif
%%GRASS_INST_DIR%%/docs/html/nviz/img/nv/trcut3_i.gif
%%GRASS_INST_DIR%%/docs/html/nviz/index.html
-%%GRASS_INST_DIR%%/docs/html/nviz/nvimg/panel/anim.gif
%%GRASS_INST_DIR%%/docs/html/nviz/nvimg/panel/anim1.gif
%%GRASS_INST_DIR%%/docs/html/nviz/nvimg/panel/anim2.gif
%%GRASS_INST_DIR%%/docs/html/nviz/nvimg/panel/anim3.gif
%%GRASS_INST_DIR%%/docs/html/nviz/nvimg/panel/anim4.gif
%%GRASS_INST_DIR%%/docs/html/nviz/nvimg/panel/anim5.gif
+%%GRASS_INST_DIR%%/docs/html/nviz/nvimg/panel/anim.gif
%%GRASS_INST_DIR%%/docs/html/nviz/nvimg/panel/color.gif
%%GRASS_INST_DIR%%/docs/html/nviz/nvimg/panel/cut.gif
-%%GRASS_INST_DIR%%/docs/html/nviz/nvimg/panel/file_menu.gif
%%GRASS_INST_DIR%%/docs/html/nviz/nvimg/panel/file_menu2.gif
+%%GRASS_INST_DIR%%/docs/html/nviz/nvimg/panel/file_menu.gif
%%GRASS_INST_DIR%%/docs/html/nviz/nvimg/panel/image_dump.gif
%%GRASS_INST_DIR%%/docs/html/nviz/nvimg/panel/keyanim.gif
%%GRASS_INST_DIR%%/docs/html/nviz/nvimg/panel/keyexample.png
%%GRASS_INST_DIR%%/docs/html/nviz/nvimg/panel/labels.gif
%%GRASS_INST_DIR%%/docs/html/nviz/nvimg/panel/light.gif
%%GRASS_INST_DIR%%/docs/html/nviz/nvimg/panel/main.gif
-%%GRASS_INST_DIR%%/docs/html/nviz/nvimg/panel/mkdspf.gif
%%GRASS_INST_DIR%%/docs/html/nviz/nvimg/panel/mkdspf_complete.gif
+%%GRASS_INST_DIR%%/docs/html/nviz/nvimg/panel/mkdspf.gif
%%GRASS_INST_DIR%%/docs/html/nviz/nvimg/panel/mkdspf_range.gif
%%GRASS_INST_DIR%%/docs/html/nviz/nvimg/panel/position.gif
-%%GRASS_INST_DIR%%/docs/html/nviz/nvimg/panel/scale.gif
%%GRASS_INST_DIR%%/docs/html/nviz/nvimg/panel/scale_diff.gif
+%%GRASS_INST_DIR%%/docs/html/nviz/nvimg/panel/scale.gif
%%GRASS_INST_DIR%%/docs/html/nviz/nvimg/panel/sites.gif
%%GRASS_INST_DIR%%/docs/html/nviz/nvimg/panel/surf.gif
%%GRASS_INST_DIR%%/docs/html/nviz/nvimg/panel/vect.gif
@@ -666,14 +941,14 @@ bin/grass%%VER%%-gem
%%GRASS_INST_DIR%%/docs/html/nviz/nvimg/panel/whats_options.gif
%%GRASS_INST_DIR%%/docs/html/nviz/nvimg/work/AddField.gif
%%GRASS_INST_DIR%%/docs/html/nviz/nvimg/work/FBrowse.gif
-%%GRASS_INST_DIR%%/docs/html/nviz/nvimg/work/FSTool.gif
%%GRASS_INST_DIR%%/docs/html/nviz/nvimg/work/FSToolBrowse.gif
%%GRASS_INST_DIR%%/docs/html/nviz/nvimg/work/FSToolExample.gif
+%%GRASS_INST_DIR%%/docs/html/nviz/nvimg/work/FSTool.gif
%%GRASS_INST_DIR%%/docs/html/nviz/nvimg/work/SimpLoop.gif
%%GRASS_INST_DIR%%/docs/html/nviz/nvimg/work/script_pulldown.gif
-%%GRASS_INST_DIR%%/docs/html/nviz/nviz_3dsetting.html
%%GRASS_INST_DIR%%/docs/html/nviz/nviz_credit.html
%%GRASS_INST_DIR%%/docs/html/nviz/nviz_desc.html
+%%GRASS_INST_DIR%%/docs/html/nviz/nviz_3dsetting.html
%%GRASS_INST_DIR%%/docs/html/nviz/nviz_hints.html
%%GRASS_INST_DIR%%/docs/html/nviz/nviz_image.html
%%GRASS_INST_DIR%%/docs/html/nviz/nviz_panel_anim.html
@@ -700,6 +975,7 @@ bin/grass%%VER%%-gem
%%GRASS_INST_DIR%%/docs/html/nviz/nviz_startup.html
%%GRASS_INST_DIR%%/docs/html/nviz/nviz_state.html
%%GRASS_INST_DIR%%/docs/html/nviz/nviz_toc.html
+%%GRASS_INST_DIR%%/docs/html/pcurv.png
%%GRASS_INST_DIR%%/docs/html/photo.2image.html
%%GRASS_INST_DIR%%/docs/html/photo.2target.html
%%GRASS_INST_DIR%%/docs/html/photo.camera.html
@@ -709,8 +985,13 @@ bin/grass%%VER%%-gem
%%GRASS_INST_DIR%%/docs/html/photo.rectify.html
%%GRASS_INST_DIR%%/docs/html/photo.target.html
%%GRASS_INST_DIR%%/docs/html/pngdriver.html
+%%GRASS_INST_DIR%%/docs/html/p.out.vrml.html
%%GRASS_INST_DIR%%/docs/html/projectionintro.html
+%%GRASS_INST_DIR%%/docs/html/psdriver.html
%%GRASS_INST_DIR%%/docs/html/ps.map.html
+%%GRASS_INST_DIR%%/docs/html/r3.mapcalc.html
+%%GRASS_INST_DIR%%/docs/html/raster3dintro.html
+%%GRASS_INST_DIR%%/docs/html/rasterintro.html
%%GRASS_INST_DIR%%/docs/html/r.average.html
%%GRASS_INST_DIR%%/docs/html/r.basins.fill.html
%%GRASS_INST_DIR%%/docs/html/r.bilinear.html
@@ -718,73 +999,132 @@ bin/grass%%VER%%-gem
%%GRASS_INST_DIR%%/docs/html/r.blend.html
%%GRASS_INST_DIR%%/docs/html/r.buffer.html
%%GRASS_INST_DIR%%/docs/html/r.carve.html
+%%GRASS_INST_DIR%%/docs/html/r.category.html
%%GRASS_INST_DIR%%/docs/html/r.cats.html
%%GRASS_INST_DIR%%/docs/html/r.circle.html
%%GRASS_INST_DIR%%/docs/html/r.clump.html
%%GRASS_INST_DIR%%/docs/html/r.coin.html
%%GRASS_INST_DIR%%/docs/html/r.colors.html
+%%GRASS_INST_DIR%%/docs/html/r.colors.stddev.html
%%GRASS_INST_DIR%%/docs/html/r.composite.html
%%GRASS_INST_DIR%%/docs/html/r.compress.html
%%GRASS_INST_DIR%%/docs/html/r.contour.html
%%GRASS_INST_DIR%%/docs/html/r.cost.html
+%%GRASS_INST_DIR%%/docs/html/rcost_knightsmove.png
%%GRASS_INST_DIR%%/docs/html/r.covar.html
%%GRASS_INST_DIR%%/docs/html/r.cross.html
+%%GRASS_INST_DIR%%/docs/html/r3.cross.rast.html
+%%GRASS_INST_DIR%%/docs/html/r3.cross.rast.png
%%GRASS_INST_DIR%%/docs/html/r.describe.html
%%GRASS_INST_DIR%%/docs/html/r.digit.html
%%GRASS_INST_DIR%%/docs/html/r.distance.html
%%GRASS_INST_DIR%%/docs/html/r.drain.html
+%%GRASS_INST_DIR%%/docs/html/r.external.html
%%GRASS_INST_DIR%%/docs/html/r.fill.dir.html
%%GRASS_INST_DIR%%/docs/html/r.fillnulls.html
%%GRASS_INST_DIR%%/docs/html/r.flow.html
+%%GRASS_INST_DIR%%/docs/html/rgb_brovey.jpg
+%%GRASS_INST_DIR%%/docs/html/rgb_originals.jpg
+%%GRASS_INST_DIR%%/docs/html/r.grow.distance.html
%%GRASS_INST_DIR%%/docs/html/r.grow.html
+%%GRASS_INST_DIR%%/docs/html/r_gwflow_concept.png
+%%GRASS_INST_DIR%%/docs/html/r3.gwflow.html
+%%GRASS_INST_DIR%%/docs/html/r.gwflow.html
%%GRASS_INST_DIR%%/docs/html/r.his.html
+%%GRASS_INST_DIR%%/docs/html/r.horizon.html
%%GRASS_INST_DIR%%/docs/html/r.in.arc.html
%%GRASS_INST_DIR%%/docs/html/r.in.ascii.html
+%%GRASS_INST_DIR%%/docs/html/r3.in.ascii.html
%%GRASS_INST_DIR%%/docs/html/r.in.aster.html
%%GRASS_INST_DIR%%/docs/html/r.in.bin.html
+%%GRASS_INST_DIR%%/docs/html/r.info.html
+%%GRASS_INST_DIR%%/docs/html/r3.info.html
%%GRASS_INST_DIR%%/docs/html/r.in.gdal.html
%%GRASS_INST_DIR%%/docs/html/r.in.gridatb.html
%%GRASS_INST_DIR%%/docs/html/r.in.mat.html
%%GRASS_INST_DIR%%/docs/html/r.in.poly.html
%%GRASS_INST_DIR%%/docs/html/r.in.srtm.html
+%%GRASS_INST_DIR%%/docs/html/r3.in.v5d.html
%%GRASS_INST_DIR%%/docs/html/r.in.wms.html
%%GRASS_INST_DIR%%/docs/html/r.in.xyz.html
-%%GRASS_INST_DIR%%/docs/html/r.info.html
%%GRASS_INST_DIR%%/docs/html/r.kappa.html
%%GRASS_INST_DIR%%/docs/html/r.lake.html
%%GRASS_INST_DIR%%/docs/html/r.le.patch.html
%%GRASS_INST_DIR%%/docs/html/r.le.pixel.html
%%GRASS_INST_DIR%%/docs/html/r.le.setup.html
%%GRASS_INST_DIR%%/docs/html/r.le.trace.html
+%%GRASS_INST_DIR%%/docs/html/r.univar.html
+%%GRASS_INST_DIR%%/docs/html/rliDominance_formula.png
+%%GRASS_INST_DIR%%/docs/html/rliEdgeDensity_formula1.png
+%%GRASS_INST_DIR%%/docs/html/rliEdgeDensity_formula2.png
+%%GRASS_INST_DIR%%/docs/html/rliRichness_formula.png
+%%GRASS_INST_DIR%%/docs/html/rliShannon_formula.png
+%%GRASS_INST_DIR%%/docs/html/rliSimpson_formula.png
+%%GRASS_INST_DIR%%/docs/html/rlicwed_formula.png
+%%GRASS_INST_DIR%%/docs/html/r.li.cwed.html
+%%GRASS_INST_DIR%%/docs/html/r.li.daemon.html
+%%GRASS_INST_DIR%%/docs/html/r.li.dominance.html
+%%GRASS_INST_DIR%%/docs/html/r.li.edgedensity.html
+%%GRASS_INST_DIR%%/docs/html/r.li.html
+%%GRASS_INST_DIR%%/docs/html/rlimpa_formula.png
+%%GRASS_INST_DIR%%/docs/html/r.li.mpa.html
+%%GRASS_INST_DIR%%/docs/html/rlimps_formula.png
+%%GRASS_INST_DIR%%/docs/html/r.li.mps.html
+%%GRASS_INST_DIR%%/docs/html/rlipadcv_formula1.png
+%%GRASS_INST_DIR%%/docs/html/rlipadcv_formula2.png
+%%GRASS_INST_DIR%%/docs/html/r.li.padcv.html
+%%GRASS_INST_DIR%%/docs/html/rlipadrange_formula.png
+%%GRASS_INST_DIR%%/docs/html/r.li.padrange.html
+%%GRASS_INST_DIR%%/docs/html/rlipadsd_formula.png
+%%GRASS_INST_DIR%%/docs/html/r.li.padsd.html
+%%GRASS_INST_DIR%%/docs/html/r.li.patchdensity.html
+%%GRASS_INST_DIR%%/docs/html/r.li.patchnum.html
+%%GRASS_INST_DIR%%/docs/html/r.li.richness.html
+%%GRASS_INST_DIR%%/docs/html/r.li.setup.html
+%%GRASS_INST_DIR%%/docs/html/r.li.shannon.html
+%%GRASS_INST_DIR%%/docs/html/r.li.shape.html
+%%GRASS_INST_DIR%%/docs/html/r.li.simpson.html
%%GRASS_INST_DIR%%/docs/html/r.los.html
%%GRASS_INST_DIR%%/docs/html/r.mapcalc.html
%%GRASS_INST_DIR%%/docs/html/r.mapcalculator.html
+%%GRASS_INST_DIR%%/docs/html/r3.mapcalculator.html
%%GRASS_INST_DIR%%/docs/html/r.mask.html
+%%GRASS_INST_DIR%%/docs/html/r3.mask.html
%%GRASS_INST_DIR%%/docs/html/r.median.html
+%%GRASS_INST_DIR%%/docs/html/r.mfilter.fp.html
%%GRASS_INST_DIR%%/docs/html/r.mfilter.html
+%%GRASS_INST_DIR%%/docs/html/r3.mkdspf.html
%%GRASS_INST_DIR%%/docs/html/r.mode.html
%%GRASS_INST_DIR%%/docs/html/r.neighbors.html
%%GRASS_INST_DIR%%/docs/html/r.null.html
+%%GRASS_INST_DIR%%/docs/html/r3.null.html
%%GRASS_INST_DIR%%/docs/html/r.out.arc.html
%%GRASS_INST_DIR%%/docs/html/r.out.ascii.html
+%%GRASS_INST_DIR%%/docs/html/r3.out.ascii.html
%%GRASS_INST_DIR%%/docs/html/r.out.bin.html
%%GRASS_INST_DIR%%/docs/html/r.out.gdal.html
+%%GRASS_INST_DIR%%/docs/html/r.out.gdal.sh.html
%%GRASS_INST_DIR%%/docs/html/r.out.gridatb.html
%%GRASS_INST_DIR%%/docs/html/r.out.mat.html
%%GRASS_INST_DIR%%/docs/html/r.out.mpeg.html
%%GRASS_INST_DIR%%/docs/html/r.out.png.html
%%GRASS_INST_DIR%%/docs/html/r.out.pov.html
-%%GRASS_INST_DIR%%/docs/html/r.out.ppm.html
%%GRASS_INST_DIR%%/docs/html/r.out.ppm3.html
+%%GRASS_INST_DIR%%/docs/html/r.out.ppm.html
%%GRASS_INST_DIR%%/docs/html/r.out.tiff.html
+%%GRASS_INST_DIR%%/docs/html/r3.out.v5d.html
%%GRASS_INST_DIR%%/docs/html/r.out.vrml.html
+%%GRASS_INST_DIR%%/docs/html/r3.out.vtk.html
%%GRASS_INST_DIR%%/docs/html/r.out.vtk.html
+%%GRASS_INST_DIR%%/docs/html/r.out.xyz.html
%%GRASS_INST_DIR%%/docs/html/r.param.scale.html
+%%GRASS_INST_DIR%%/docs/html/r_param_scale_morph.jpg
%%GRASS_INST_DIR%%/docs/html/r.patch.html
%%GRASS_INST_DIR%%/docs/html/r.plane.html
%%GRASS_INST_DIR%%/docs/html/r.profile.html
%%GRASS_INST_DIR%%/docs/html/r.proj.html
%%GRASS_INST_DIR%%/docs/html/r.quant.html
+%%GRASS_INST_DIR%%/docs/html/r.quantile.html
%%GRASS_INST_DIR%%/docs/html/r.random.cells.html
%%GRASS_INST_DIR%%/docs/html/r.random.html
%%GRASS_INST_DIR%%/docs/html/r.random.surface.html
@@ -794,8 +1134,10 @@ bin/grass%%VER%%-gem
%%GRASS_INST_DIR%%/docs/html/r.region.html
%%GRASS_INST_DIR%%/docs/html/r.regression.line.html
%%GRASS_INST_DIR%%/docs/html/r.report.html
-%%GRASS_INST_DIR%%/docs/html/r.resamp.rst.html
+%%GRASS_INST_DIR%%/docs/html/r.resamp.interp.html
%%GRASS_INST_DIR%%/docs/html/r.resample.html
+%%GRASS_INST_DIR%%/docs/html/r.resamp.rst.html
+%%GRASS_INST_DIR%%/docs/html/r.resamp.stats.html
%%GRASS_INST_DIR%%/docs/html/r.rescale.eq.html
%%GRASS_INST_DIR%%/docs/html/r.rescale.html
%%GRASS_INST_DIR%%/docs/html/r.ros.html
@@ -803,96 +1145,108 @@ bin/grass%%VER%%-gem
%%GRASS_INST_DIR%%/docs/html/r.shaded.relief.html
%%GRASS_INST_DIR%%/docs/html/r.sim.sediment.html
%%GRASS_INST_DIR%%/docs/html/r.sim.water.html
+%%GRASS_INST_DIR%%/docs/html/r_sim_water.png
%%GRASS_INST_DIR%%/docs/html/r.slope.aspect.html
%%GRASS_INST_DIR%%/docs/html/r.spread.html
%%GRASS_INST_DIR%%/docs/html/r.spreadpath.html
%%GRASS_INST_DIR%%/docs/html/r.statistics.html
+%%GRASS_INST_DIR%%/docs/html/r3.stats.html
%%GRASS_INST_DIR%%/docs/html/r.stats.html
%%GRASS_INST_DIR%%/docs/html/r.sum.html
%%GRASS_INST_DIR%%/docs/html/r.sun.html
%%GRASS_INST_DIR%%/docs/html/r.sunmask.html
%%GRASS_INST_DIR%%/docs/html/r.support.html
+%%GRASS_INST_DIR%%/docs/html/r.support.stats.html
%%GRASS_INST_DIR%%/docs/html/r.surf.area.html
%%GRASS_INST_DIR%%/docs/html/r.surf.contour.html
%%GRASS_INST_DIR%%/docs/html/r.surf.fractal.html
+%%GRASS_INST_DIR%%/docs/html/r_surf_gauss_hist.png
%%GRASS_INST_DIR%%/docs/html/r.surf.gauss.html
-%%GRASS_INST_DIR%%/docs/html/r.surf.idw.html
%%GRASS_INST_DIR%%/docs/html/r.surf.idw2.html
+%%GRASS_INST_DIR%%/docs/html/r.surf.idw.html
+%%GRASS_INST_DIR%%/docs/html/r_surf_random_hist.png
%%GRASS_INST_DIR%%/docs/html/r.surf.random.html
+%%GRASS_INST_DIR%%/docs/html/rterraflow_dir2.png
+%%GRASS_INST_DIR%%/docs/html/rterraflow_dir3.png
%%GRASS_INST_DIR%%/docs/html/r.terraflow.html
%%GRASS_INST_DIR%%/docs/html/r.texture.html
%%GRASS_INST_DIR%%/docs/html/r.thin.html
%%GRASS_INST_DIR%%/docs/html/r.tileset.html
%%GRASS_INST_DIR%%/docs/html/r.timestamp.html
-%%GRASS_INST_DIR%%/docs/html/r.to.rast3.html
-%%GRASS_INST_DIR%%/docs/html/r.to.rast3.png
+%%GRASS_INST_DIR%%/docs/html/r3.timestamp.html
+%%GRASS_INST_DIR%%/docs/html/r.topidx.html
+%%GRASS_INST_DIR%%/docs/html/r.topmodel.html
%%GRASS_INST_DIR%%/docs/html/r.to.rast3elev.html
%%GRASS_INST_DIR%%/docs/html/r.to.rast3elev.png
+%%GRASS_INST_DIR%%/docs/html/r.to.rast3.html
+%%GRASS_INST_DIR%%/docs/html/r.to.rast3.png
+%%GRASS_INST_DIR%%/docs/html/r3.to.rast.html
+%%GRASS_INST_DIR%%/docs/html/r3.to.rast.png
%%GRASS_INST_DIR%%/docs/html/r.to.vect.html
-%%GRASS_INST_DIR%%/docs/html/r.topidx.html
-%%GRASS_INST_DIR%%/docs/html/r.topmodel.html
%%GRASS_INST_DIR%%/docs/html/r.transect.html
-%%GRASS_INST_DIR%%/docs/html/r.univar.html
+%%GRASS_INST_DIR%%/docs/html/r3.univar.html
%%GRASS_INST_DIR%%/docs/html/r.univar.sh.html
%%GRASS_INST_DIR%%/docs/html/r.volume.html
%%GRASS_INST_DIR%%/docs/html/r.walk.html
%%GRASS_INST_DIR%%/docs/html/r.water.outlet.html
%%GRASS_INST_DIR%%/docs/html/r.watershed.html
+%%GRASS_INST_DIR%%/docs/html/r.watershed.ram.html
+%%GRASS_INST_DIR%%/docs/html/r.watershed.seg.html
+%%GRASS_INST_DIR%%/docs/html/r.what.color.html
%%GRASS_INST_DIR%%/docs/html/r.what.html
-%%GRASS_INST_DIR%%/docs/html/r3.cross.rast.html
-%%GRASS_INST_DIR%%/docs/html/r3.cross.rast.png
-%%GRASS_INST_DIR%%/docs/html/r3.in.ascii.html
-%%GRASS_INST_DIR%%/docs/html/r3.in.v5d.html
-%%GRASS_INST_DIR%%/docs/html/r3.info.html
-%%GRASS_INST_DIR%%/docs/html/r3.mapcalc.html
-%%GRASS_INST_DIR%%/docs/html/r3.mapcalculator.html
-%%GRASS_INST_DIR%%/docs/html/r3.mask.html
-%%GRASS_INST_DIR%%/docs/html/r3.mkdspf.html
-%%GRASS_INST_DIR%%/docs/html/r3.null.html
-%%GRASS_INST_DIR%%/docs/html/r3.out.ascii.html
-%%GRASS_INST_DIR%%/docs/html/r3.out.v5d.html
-%%GRASS_INST_DIR%%/docs/html/r3.out.vtk.html
-%%GRASS_INST_DIR%%/docs/html/r3.timestamp.html
-%%GRASS_INST_DIR%%/docs/html/r3.to.rast.html
-%%GRASS_INST_DIR%%/docs/html/r3.to.rast.png
-%%GRASS_INST_DIR%%/docs/html/ram.html
-%%GRASS_INST_DIR%%/docs/html/raster3dintro.html
-%%GRASS_INST_DIR%%/docs/html/rasterintro.html
-%%GRASS_INST_DIR%%/docs/html/rcost_knightsmove.png
-%%GRASS_INST_DIR%%/docs/html/rterraflow_dir2.png
-%%GRASS_INST_DIR%%/docs/html/rterraflow_dir3.png
-%%GRASS_INST_DIR%%/docs/html/seg.html
+%%GRASS_INST_DIR%%/docs/html/sampleAreas.jpg
+%%GRASS_INST_DIR%%/docs/html/slope.png
%%GRASS_INST_DIR%%/docs/html/sql.html
+%%GRASS_INST_DIR%%/docs/html/tasscap1.jpg
+%%GRASS_INST_DIR%%/docs/html/tasscap2.jpg
+%%GRASS_INST_DIR%%/docs/html/tasscap3.jpg
+%%GRASS_INST_DIR%%/docs/html/tasscap4.jpg
+%%GRASS_INST_DIR%%/docs/html/tcurv.png
+%%GRASS_INST_DIR%%/docs/html/variables.html
%%GRASS_INST_DIR%%/docs/html/v.buffer.html
%%GRASS_INST_DIR%%/docs/html/v.build.all.html
%%GRASS_INST_DIR%%/docs/html/v.build.html
%%GRASS_INST_DIR%%/docs/html/v.build.polylines.html
%%GRASS_INST_DIR%%/docs/html/v.category.html
%%GRASS_INST_DIR%%/docs/html/v.centroids.html
+%%GRASS_INST_DIR%%/docs/html/v.class.html
%%GRASS_INST_DIR%%/docs/html/v.clean.html
+%%GRASS_INST_DIR%%/docs/html/v_clean_rmsa.png
+%%GRASS_INST_DIR%%/docs/html/v.colors.html
%%GRASS_INST_DIR%%/docs/html/v.convert.all.html
%%GRASS_INST_DIR%%/docs/html/v.convert.html
%%GRASS_INST_DIR%%/docs/html/v.db.addcol.html
%%GRASS_INST_DIR%%/docs/html/v.db.addtable.html
%%GRASS_INST_DIR%%/docs/html/v.db.connect.html
+%%GRASS_INST_DIR%%/docs/html/v.db.dropcol.html
%%GRASS_INST_DIR%%/docs/html/v.db.droptable.html
+%%GRASS_INST_DIR%%/docs/html/v.db.join.html
%%GRASS_INST_DIR%%/docs/html/v.db.reconnect.all.html
+%%GRASS_INST_DIR%%/docs/html/v.db.renamecol.html
%%GRASS_INST_DIR%%/docs/html/v.db.select.html
+%%GRASS_INST_DIR%%/docs/html/v.db.univar.html
%%GRASS_INST_DIR%%/docs/html/v.db.update.html
%%GRASS_INST_DIR%%/docs/html/v.delaunay.html
+%%GRASS_INST_DIR%%/docs/html/v_delaunay_spearfish60_archsites.png
%%GRASS_INST_DIR%%/docs/html/v.digit.html
%%GRASS_INST_DIR%%/docs/html/v.dissolve.html
%%GRASS_INST_DIR%%/docs/html/v.distance.html
%%GRASS_INST_DIR%%/docs/html/v.drape.html
+%%GRASS_INST_DIR%%/docs/html/vectorintro.html
+%%GRASS_INST_DIR%%/docs/html/v.edit.html
%%GRASS_INST_DIR%%/docs/html/v.external.html
%%GRASS_INST_DIR%%/docs/html/v.extract.html
%%GRASS_INST_DIR%%/docs/html/v.extrude.html
+%%GRASS_INST_DIR%%/docs/html/v.generalize.html
%%GRASS_INST_DIR%%/docs/html/v.hull.html
+%%GRASS_INST_DIR%%/docs/html/v_hull.png
%%GRASS_INST_DIR%%/docs/html/v.in.ascii.html
%%GRASS_INST_DIR%%/docs/html/v.in.db.html
%%GRASS_INST_DIR%%/docs/html/v.in.dxf.html
%%GRASS_INST_DIR%%/docs/html/v.in.e00.html
+%%GRASS_INST_DIR%%/docs/html/v.info.html
%%GRASS_INST_DIR%%/docs/html/v.in.garmin.html
+%%GRASS_INST_DIR%%/docs/html/v.in.geonames.html
%%GRASS_INST_DIR%%/docs/html/v.in.gns.html
%%GRASS_INST_DIR%%/docs/html/v.in.gpsbabel.html
%%GRASS_INST_DIR%%/docs/html/v.in.mapgen.html
@@ -900,10 +1254,12 @@ bin/grass%%VER%%-gem
%%GRASS_INST_DIR%%/docs/html/v.in.region.html
%%GRASS_INST_DIR%%/docs/html/v.in.sites.all.html
%%GRASS_INST_DIR%%/docs/html/v.in.sites.html
-%%GRASS_INST_DIR%%/docs/html/v.info.html
+%%GRASS_INST_DIR%%/docs/html/v.in.wfs.html
%%GRASS_INST_DIR%%/docs/html/v.kcv.html
%%GRASS_INST_DIR%%/docs/html/v.kernel.html
%%GRASS_INST_DIR%%/docs/html/v.label.html
+%%GRASS_INST_DIR%%/docs/html/v.label.sa.html
+%%GRASS_INST_DIR%%/docs/html/v_label_sa.jpg
%%GRASS_INST_DIR%%/docs/html/v.lidar.correction.html
%%GRASS_INST_DIR%%/docs/html/v.lidar.edgedetection.html
%%GRASS_INST_DIR%%/docs/html/v.lidar.growing.html
@@ -914,18 +1270,26 @@ bin/grass%%VER%%-gem
%%GRASS_INST_DIR%%/docs/html/v.mkgrid.html
%%GRASS_INST_DIR%%/docs/html/v.neighbors.html
%%GRASS_INST_DIR%%/docs/html/v.net.alloc.html
+%%GRASS_INST_DIR%%/docs/html/v_net_alloc.png
%%GRASS_INST_DIR%%/docs/html/v.net.html
%%GRASS_INST_DIR%%/docs/html/v.net.iso.html
+%%GRASS_INST_DIR%%/docs/html/vnetiso.png
%%GRASS_INST_DIR%%/docs/html/v.net.path.html
+%%GRASS_INST_DIR%%/docs/html/vnetpath.png
%%GRASS_INST_DIR%%/docs/html/v.net.salesman.html
+%%GRASS_INST_DIR%%/docs/html/vnetsalesman.png
%%GRASS_INST_DIR%%/docs/html/v.net.steiner.html
+%%GRASS_INST_DIR%%/docs/html/vnetsteiner.png
+%%GRASS_INST_DIR%%/docs/html/v.net.visibility.html
%%GRASS_INST_DIR%%/docs/html/v.normal.html
%%GRASS_INST_DIR%%/docs/html/v.out.ascii.html
%%GRASS_INST_DIR%%/docs/html/v.out.dxf.html
+%%GRASS_INST_DIR%%/docs/html/v.out.gpsbabel.html
+%%GRASS_INST_DIR%%/docs/html/v.outlier.html
%%GRASS_INST_DIR%%/docs/html/v.out.ogr.html
%%GRASS_INST_DIR%%/docs/html/v.out.pov.html
+%%GRASS_INST_DIR%%/docs/html/v.out.svg.html
%%GRASS_INST_DIR%%/docs/html/v.out.vtk.html
-%%GRASS_INST_DIR%%/docs/html/v.outlier.html
%%GRASS_INST_DIR%%/docs/html/v.overlay.html
%%GRASS_INST_DIR%%/docs/html/v.parallel.html
%%GRASS_INST_DIR%%/docs/html/v.patch.html
@@ -940,10 +1304,12 @@ bin/grass%%VER%%-gem
%%GRASS_INST_DIR%%/docs/html/v.segment.html
%%GRASS_INST_DIR%%/docs/html/v.select.html
%%GRASS_INST_DIR%%/docs/html/v.split.html
+%%GRASS_INST_DIR%%/docs/html/v.support.html
%%GRASS_INST_DIR%%/docs/html/v.surf.bspline.html
%%GRASS_INST_DIR%%/docs/html/v.surf.idw.html
%%GRASS_INST_DIR%%/docs/html/v.surf.rst.html
%%GRASS_INST_DIR%%/docs/html/v.to.db.html
+%%GRASS_INST_DIR%%/docs/html/v.to.3d.html
%%GRASS_INST_DIR%%/docs/html/v.to.points.html
%%GRASS_INST_DIR%%/docs/html/v.to.rast.html
%%GRASS_INST_DIR%%/docs/html/v.to.rast3.html
@@ -952,53 +1318,72 @@ bin/grass%%VER%%-gem
%%GRASS_INST_DIR%%/docs/html/v.univar.html
%%GRASS_INST_DIR%%/docs/html/v.univar.sh.html
%%GRASS_INST_DIR%%/docs/html/v.vol.rst.html
+%%GRASS_INST_DIR%%/docs/html/v_voronoi_delaunay.png
%%GRASS_INST_DIR%%/docs/html/v.voronoi.html
%%GRASS_INST_DIR%%/docs/html/v.what.html
%%GRASS_INST_DIR%%/docs/html/v.what.rast.html
%%GRASS_INST_DIR%%/docs/html/v.what.vect.html
-%%GRASS_INST_DIR%%/docs/html/v_clean_rmsa.png
-%%GRASS_INST_DIR%%/docs/html/v_hull.png
-%%GRASS_INST_DIR%%/docs/html/v_voronoi_delaunay.png
-%%GRASS_INST_DIR%%/docs/html/variables.html
-%%GRASS_INST_DIR%%/docs/html/vectorintro.html
+%%GRASS_INST_DIR%%/docs/html/wxGUI.Attribute_Table_Manager.html
+%%GRASS_INST_DIR%%/docs/html/wxGUI.Icons.html
+%%GRASS_INST_DIR%%/docs/html/wxGUI.Nviz.html
+%%GRASS_INST_DIR%%/docs/html/wxGUI.Vector_Digitizing_Tool.html
+%%GRASS_INST_DIR%%/docs/html/wxGUI.html
+%%GRASS_INST_DIR%%/docs/html/wxGUI_layer_manager.jpg
+%%GRASS_INST_DIR%%/docs/html/wxGUI_map_display.jpg
+%%GRASS_INST_DIR%%/docs/html/wxGUI_nviz_tools_surface.jpg
+%%GRASS_INST_DIR%%/docs/html/wxGUI_nviz_tools_vector.jpg
+%%GRASS_INST_DIR%%/docs/html/wxGUI_nviz_tools_view.jpg
+%%GRASS_INST_DIR%%/docs/html/wxGUI_nviz_tools_volume.jpg
+%%GRASS_INST_DIR%%/docs/html/wxGUI_vector_digitizer_toolbar.jpg
%%GRASS_INST_DIR%%/docs/html/xdriver.html
+%%GRASS_INST_DIR%%/driver/HTMLMAP
%%GRASS_INST_DIR%%/driver/PNG
+%%GRASS_INST_DIR%%/driver/PS
%%GRASS_INST_DIR%%/driver/XDRIVER
%%GRASS_INST_DIR%%/driver/db/dbf
-%%MYSQL%%%%GRASS_INST_DIR%%/driver/db/mysql
-%%ODBC%%%%GRASS_INST_DIR%%/driver/db/odbc
%%GRASS_INST_DIR%%/driver/db/ogr
-%%PGSQL%%%%GRASS_INST_DIR%%/driver/db/pg
-%%SQLITE%%%%GRASS_INST_DIR%%/driver/db/sqlite
-%%GRASS_INST_DIR%%/etc/BUILD
%%GRASS_INST_DIR%%/etc/FIPS.code
%%GRASS_INST_DIR%%/etc/Init.sh
-%%GRASS_INST_DIR%%/etc/VERSION
%%GRASS_INST_DIR%%/etc/VERSIONNUMBER
+%%GRASS_INST_DIR%%/etc/bmif_to_cell
%%GRASS_INST_DIR%%/etc/clean_temp
%%GRASS_INST_DIR%%/etc/colors/aspect
+%%GRASS_INST_DIR%%/etc/colors/aspectcolr
%%GRASS_INST_DIR%%/etc/colors/bcyr
+%%GRASS_INST_DIR%%/etc/colors/bgyr
%%GRASS_INST_DIR%%/etc/colors/byg
%%GRASS_INST_DIR%%/etc/colors/byr
+%%GRASS_INST_DIR%%/etc/colors/celsius
+%%GRASS_INST_DIR%%/etc/colors/corine
+%%GRASS_INST_DIR%%/etc/colors/curvature
+%%GRASS_INST_DIR%%/etc/colors.desc
+%%GRASS_INST_DIR%%/etc/colors/differences
%%GRASS_INST_DIR%%/etc/colors/elevation
%%GRASS_INST_DIR%%/etc/colors/etopo2
%%GRASS_INST_DIR%%/etc/colors/evi
+%%GRASS_INST_DIR%%/etc/colors/gdd
%%GRASS_INST_DIR%%/etc/colors/grey
+%%GRASS_INST_DIR%%/etc/colors/grey1.0
+%%GRASS_INST_DIR%%/etc/colors/grey255
%%GRASS_INST_DIR%%/etc/colors/gyr
+%%GRASS_INST_DIR%%/etc/colors/haxby
%%GRASS_INST_DIR%%/etc/colors/ndvi
%%GRASS_INST_DIR%%/etc/colors/population
+%%GRASS_INST_DIR%%/etc/colors/precipitation
+%%GRASS_INST_DIR%%/etc/colors/precipitation_monthly
%%GRASS_INST_DIR%%/etc/colors/rainbow
%%GRASS_INST_DIR%%/etc/colors/ramp
+%%GRASS_INST_DIR%%/etc/colors/rstcurv
+%%GRASS_INST_DIR%%/etc/colors/ryb
%%GRASS_INST_DIR%%/etc/colors/ryg
+%%GRASS_INST_DIR%%/etc/colors/sepia
%%GRASS_INST_DIR%%/etc/colors/slope
%%GRASS_INST_DIR%%/etc/colors/srtm
%%GRASS_INST_DIR%%/etc/colors/terrain
%%GRASS_INST_DIR%%/etc/colors/wave
%%GRASS_INST_DIR%%/etc/current_time_s_ms
-%%GRASS_INST_DIR%%/etc/d.polar/ps_defs.eps
%%GRASS_INST_DIR%%/etc/datum.table
%%GRASS_INST_DIR%%/etc/datumtransform.table
-%%GRASS_INST_DIR%%/etc/db.test/test1
%%GRASS_INST_DIR%%/etc/dm/barscale.gif
%%GRASS_INST_DIR%%/etc/dm/barscale.tcl
%%GRASS_INST_DIR%%/etc/dm/chart.gif
@@ -1008,11 +1393,11 @@ bin/grass%%VER%%-gem
%%GRASS_INST_DIR%%/etc/dm/columns.gif
%%GRASS_INST_DIR%%/etc/dm/copy.gif
%%GRASS_INST_DIR%%/etc/dm/cut.gif
-%%GRASS_INST_DIR%%/etc/dm/d.m.tcl
%%GRASS_INST_DIR%%/etc/dm/dig.gif
%%GRASS_INST_DIR%%/etc/dm/display.all.gif
%%GRASS_INST_DIR%%/etc/dm/display.gif
%%GRASS_INST_DIR%%/etc/dm/display.region.gif
+%%GRASS_INST_DIR%%/etc/dm/d.m.tcl
%%GRASS_INST_DIR%%/etc/dm/dtext.gif
%%GRASS_INST_DIR%%/etc/dm/dtext.tcl
%%GRASS_INST_DIR%%/etc/dm/erase.gif
@@ -1021,8 +1406,8 @@ bin/grass%%VER%%-gem
%%GRASS_INST_DIR%%/etc/dm/frames.tcl
%%GRASS_INST_DIR%%/etc/dm/fttext.gif
%%GRASS_INST_DIR%%/etc/dm/fttext.tcl
-%%GRASS_INST_DIR%%/etc/dm/grass.gif
%%GRASS_INST_DIR%%/etc/dm/grassabout.tcl
+%%GRASS_INST_DIR%%/etc/dm/grass.gif
%%GRASS_INST_DIR%%/etc/dm/grid.gif
%%GRASS_INST_DIR%%/etc/dm/gridline.tcl
%%GRASS_INST_DIR%%/etc/dm/group.gif
@@ -1070,11 +1455,15 @@ bin/grass%%VER%%-gem
%%GRASS_INST_DIR%%/etc/dm/xganim.gif
%%GRASS_INST_DIR%%/etc/dm/zoom.back.gif
%%GRASS_INST_DIR%%/etc/dm/zoom.gif
+%%GRASS_INST_DIR%%/etc/d.polar/ps_defs.eps
+%%GRASS_INST_DIR%%/etc/d.rast.edit.tcl
+%%GRASS_INST_DIR%%/etc/db.test/test1
%%GRASS_INST_DIR%%/etc/echo
%%GRASS_INST_DIR%%/etc/element_list
%%GRASS_INST_DIR%%/etc/ellipse.table
%%GRASS_INST_DIR%%/etc/epsg_option.tcl
%%GRASS_INST_DIR%%/etc/file_option.tcl
+%%GRASS_INST_DIR%%/etc/fontcap
%%GRASS_INST_DIR%%/etc/form/form
%%GRASS_INST_DIR%%/etc/form/form.tcl
%%GRASS_INST_DIR%%/etc/form/html_library.tcl
@@ -1082,8 +1471,6 @@ bin/grass%%VER%%-gem
%%GRASS_INST_DIR%%/etc/frame.dumper
%%GRASS_INST_DIR%%/etc/frame.list
%%GRASS_INST_DIR%%/etc/frame.select
-%%GRASS_INST_DIR%%/etc/freetypecap
-%%GRASS_INST_DIR%%/etc/g.mapsets.tcl
%%GRASS_INST_DIR%%/etc/gem/skeleton/README
%%GRASS_INST_DIR%%/etc/gem/skeleton/authors
%%GRASS_INST_DIR%%/etc/gem/skeleton/bugs
@@ -1101,17 +1488,21 @@ bin/grass%%VER%%-gem
%%GRASS_INST_DIR%%/etc/gem/skeleton/post
%%GRASS_INST_DIR%%/etc/gem/skeleton/uninstall
%%GRASS_INST_DIR%%/etc/gem/skeleton/version
-%%GRASS_INST_DIR%%/etc/gintro.gif
%%GRASS_INST_DIR%%/etc/gis_set.tcl
+%%GRASS_INST_DIR%%/etc/gm/animate.tcl
+%%GRASS_INST_DIR%%/etc/g.mapsets.tcl
%%GRASS_INST_DIR%%/etc/gm/barscale.tcl
%%GRASS_INST_DIR%%/etc/gm/chart.tcl
%%GRASS_INST_DIR%%/etc/gm/cmd.tcl
%%GRASS_INST_DIR%%/etc/gm/commonlayer.tcl
+%%GRASS_INST_DIR%%/etc/gm/dnviz.tcl
+%%GRASS_INST_DIR%%/etc/gm/dtext.tcl
%%GRASS_INST_DIR%%/etc/gm/frames.tcl
%%GRASS_INST_DIR%%/etc/gm/georect.tcl
%%GRASS_INST_DIR%%/etc/gm/georecttool.tcl
-%%GRASS_INST_DIR%%/etc/gm/gm.tcl
+%%GRASS_INST_DIR%%/etc/gm/gmlib.tcl
%%GRASS_INST_DIR%%/etc/gm/gmmenu.tcl
+%%GRASS_INST_DIR%%/etc/gm/gm.tcl
%%GRASS_INST_DIR%%/etc/gm/gmtool1.tcl
%%GRASS_INST_DIR%%/etc/gm/gmtool2.tcl
%%GRASS_INST_DIR%%/etc/gm/gmtree.tcl
@@ -1133,125 +1524,327 @@ bin/grass%%VER%%-gem
%%GRASS_INST_DIR%%/etc/gm/raster.tcl
%%GRASS_INST_DIR%%/etc/gm/rastnums.tcl
%%GRASS_INST_DIR%%/etc/gm/rgbhis.tcl
+%%GRASS_INST_DIR%%/etc/gm/rules.tcl
%%GRASS_INST_DIR%%/etc/gm/runandoutput.tcl
-%%GRASS_INST_DIR%%/etc/gm/script/d.colors.sh
-%%GRASS_INST_DIR%%/etc/gm/script/d.shadedmap
-%%GRASS_INST_DIR%%/etc/gm/script/d.text.sh
-%%GRASS_INST_DIR%%/etc/gm/script/d.title.sh
-%%GRASS_INST_DIR%%/etc/gm/script/print.sh
-%%GRASS_INST_DIR%%/etc/gm/script/r.colors.rules
-%%GRASS_INST_DIR%%/etc/gm/script/r.reclass.file
-%%GRASS_INST_DIR%%/etc/gm/script/r.reclass.rules
-%%GRASS_INST_DIR%%/etc/gm/script/r.recode.file
-%%GRASS_INST_DIR%%/etc/gm/script/r.recode.rules
-%%GRASS_INST_DIR%%/etc/gm/script/r.support.sh
-%%GRASS_INST_DIR%%/etc/gm/script/v.in.asciipoints
-%%GRASS_INST_DIR%%/etc/gm/script/v.type.sh
%%GRASS_INST_DIR%%/etc/gm/thematic.tcl
%%GRASS_INST_DIR%%/etc/gm/tksys.tcl
%%GRASS_INST_DIR%%/etc/gm/vector.tcl
-%%GRASS_INST_DIR%%/etc/grass-run.sh
-%%GRASS_INST_DIR%%/etc/grass-xterm-wrapper
+%%GRASS_INST_DIR%%/etc/grass-interface.dtd
%%GRASS_INST_DIR%%/etc/grass_intro
+%%GRASS_INST_DIR%%/etc/grass-run.sh
%%GRASS_INST_DIR%%/etc/grass_write_ascii.style
-%%GRASS_INST_DIR%%/etc/gtcltk/gmsg.tcl
+%%GRASS_INST_DIR%%/etc/grass-xterm-wrapper
+%%GRASS_INST_DIR%%/etc/grocat
%%GRASS_INST_DIR%%/etc/gtcltk/gronsole.tcl
+%%GRASS_INST_DIR%%/etc/gtcltk/gmsg.tcl
%%GRASS_INST_DIR%%/etc/gtcltk/options.tcl
%%GRASS_INST_DIR%%/etc/gtcltk/select.tcl
+%%GRASS_INST_DIR%%/etc/gui/icons/grass2/attributes-display.png
+%%GRASS_INST_DIR%%/etc/gui/icons/grass2/cats-copy.png
+%%GRASS_INST_DIR%%/etc/gui/icons/grass2/cats-display.png
+%%GRASS_INST_DIR%%/etc/gui/icons/grass2/centroid-create.png
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/channel-blue.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/channel-green.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/channel-his.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/channel-hue.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/channel-intensity.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/channel-red.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/channel-rgb.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/channel-saturation.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass2/create.png
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/db-columns.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/db-values.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass_dialog.ico
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/drawmode-explore.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/drawmode-strict.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/edit-color.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/edit-copy.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/edit-cut.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/element-cell.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/element-3d.view.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/element-grid3.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/element-group.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/element-icons.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/element-labels.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/element-vector.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/element-windows.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass2/erase.png
+%%GRASS_INST_DIR%%/etc/gui/icons/grass_error.ico
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/file-new.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/file-open.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/file-print.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/file-save.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass2/font.png
+%%GRASS_INST_DIR%%/etc/gui/icons/grass2/gcp-add.png
+%%GRASS_INST_DIR%%/etc/gui/icons/grass2/gcp-create.png
+%%GRASS_INST_DIR%%/etc/gui/icons/grass2/gcp-delete.png
+%%GRASS_INST_DIR%%/etc/gui/icons/grass2/gcp-remove.png
+%%GRASS_INST_DIR%%/etc/gui/icons/grass2/gcp-rms.png
+%%GRASS_INST_DIR%%/etc/gui/icons/grass2/gcp-save.png
+%%GRASS_INST_DIR%%/etc/gui/icons/grass2/georectify.png
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/gui-cmd.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/gui-display.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/gui-erase.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/gui-exit.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/gui-ff.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/gui-filesave.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/gui-font.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/gui-gcperase.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/gui-gcpset.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/gui-georect.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/gui-group.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/gui-help.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/gui-layeroptions.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/gui-loop.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/gui-maplabels.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/gui-maptext.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/gui-mapzoom.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/gui-measure.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/gui-mouse.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/gui-overlay.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/gui-pan.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/gui-play.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/gui-pointer.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/gui-profiledefine.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/gui-profiledraw.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/gui-profile.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/gui-profileopt.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/gui-query.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/gui-rabbit.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/gui-rastanalyze.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/gui-rastarrowsdir.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/gui-rastarrowsint.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/gui-redraw.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/gui-rewind.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/gui-rms.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/gui-rplay.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/gui-rv.info.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/gui-snail.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/gui-startmon.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/gui-stepb.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/gui-stepf.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/gui-stop.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/gui-swing.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/gui-zoom_back.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/gui-zoom_current.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/gui-zoom_default.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/gui-zoom_in.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/gui-zoom_map.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/gui-zoom_out.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/gui-zoom_region.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass.ico
+%%GRASS_INST_DIR%%/etc/gui/icons/grass2/info.png
+%%GRASS_INST_DIR%%/etc/gui/icons/grass2/layer-aspect-arrow-add.png
+%%GRASS_INST_DIR%%/etc/gui/icons/grass2/layer-cell-cats-add.png
+%%GRASS_INST_DIR%%/etc/gui/icons/grass2/layer-command-add.png
+%%GRASS_INST_DIR%%/etc/gui/icons/grass2/layer-grid-add.png
+%%GRASS_INST_DIR%%/etc/gui/icons/grass2/layer-group-add.png
+%%GRASS_INST_DIR%%/etc/gui/icons/grass2/layer-his-add.png
+%%GRASS_INST_DIR%%/etc/gui/icons/grass2/layer-label-add.png
+%%GRASS_INST_DIR%%/etc/gui/icons/grass2/layer-open.png
+%%GRASS_INST_DIR%%/etc/gui/icons/grass2/layer-raster-add.png
+%%GRASS_INST_DIR%%/etc/gui/icons/grass2/layer-raster-analyze.png
+%%GRASS_INST_DIR%%/etc/gui/icons/grass2/layer-raster3d-add.png
+%%GRASS_INST_DIR%%/etc/gui/icons/grass2/layer-raster-histogram.png
+%%GRASS_INST_DIR%%/etc/gui/icons/grass2/layer-raster-profile.png
+%%GRASS_INST_DIR%%/etc/gui/icons/grass2/layer-redraw.png
+%%GRASS_INST_DIR%%/etc/gui/icons/grass2/layer-remove.png
+%%GRASS_INST_DIR%%/etc/gui/icons/grass2/layer-rgb-add.png
+%%GRASS_INST_DIR%%/etc/gui/icons/grass2/layer-shaded-relief-add.png
+%%GRASS_INST_DIR%%/etc/gui/icons/grass2/layer-vector-add.png
+%%GRASS_INST_DIR%%/etc/gui/icons/grass2/layer-vector-chart-add.png
+%%GRASS_INST_DIR%%/etc/gui/icons/grass2/layer-vector-thematic-add.png
+%%GRASS_INST_DIR%%/etc/gui/icons/grass2/legend-add.png
+%%GRASS_INST_DIR%%/etc/gui/icons/grass2/line-create.png
+%%GRASS_INST_DIR%%/etc/gui/icons/grass2/line-delete.png
+%%GRASS_INST_DIR%%/etc/gui/icons/grass2/line-edit.png
+%%GRASS_INST_DIR%%/etc/gui/icons/grass2/line-move.png
+%%GRASS_INST_DIR%%/etc/gui/icons/grass2/line-split.png
+%%GRASS_INST_DIR%%/etc/gui/icons/grass2/map-export.png
+%%GRASS_INST_DIR%%/etc/gui/icons/grass_map.ico
+%%GRASS_INST_DIR%%/etc/gui/icons/grass2/measure-length.png
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/module-d.barscale.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/module-db.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/module-d.chart.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/module-d.frame.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/module-d.geodesic.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/module-d.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/module-d.graph.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/module-d.grid.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/module-d.histogram.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/module-d.labels.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/module-d.legend.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/module-d.nviz.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/module-d.rast.arrow.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/module-d.rast.num.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/module-d.rgb.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/module-d.rhumbline.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/module-d.shadedmap.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/module-d.text.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/module-d.thematic.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/module-d.vect.chart.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/module-d.vect.thematic.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/module-g.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/module-nviz.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/module-r.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/module-r3.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/module-v.digit.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/module-v.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/module-xganim.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass2/monitor-create.png
+%%GRASS_INST_DIR%%/etc/gui/icons/grass_nviz.ico
+%%GRASS_INST_DIR%%/etc/gui/icons/grass2/open.png
+%%GRASS_INST_DIR%%/etc/gui/icons/grass2/options.png
+%%GRASS_INST_DIR%%/etc/gui/icons/grass2/overlay-add.png
+%%GRASS_INST_DIR%%/etc/gui/icons/grass2/pan.png
+%%GRASS_INST_DIR%%/etc/gui/icons/grass2/point-create.png
+%%GRASS_INST_DIR%%/etc/gui/icons/grass2/pointer.png
+%%GRASS_INST_DIR%%/etc/gui/icons/grass2/polygon-create.png
+%%GRASS_INST_DIR%%/etc/gui/icons/grass2/print.png
+%%GRASS_INST_DIR%%/etc/gui/icons/grass2/quit.png
+%%GRASS_INST_DIR%%/etc/gui/icons/grass2/redraw.png
+%%GRASS_INST_DIR%%/etc/gui/icons/grass2/reload.png
+%%GRASS_INST_DIR%%/etc/gui/icons/grass2/save.png
+%%GRASS_INST_DIR%%/etc/gui/icons/grass2/scalebar-add.png
+%%GRASS_INST_DIR%%/etc/gui/icons/grass2/settings.png
+%%GRASS_INST_DIR%%/etc/gui/icons/grass2/show.png
+%%GRASS_INST_DIR%%/etc/gui/icons/grass_sql.ico
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/status-error.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/status-failure.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/status-gism.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/status-message.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/status-out.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/status-running.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/status-success.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/status-warning.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass2/table.png
+%%GRASS_INST_DIR%%/etc/gui/icons/grass2/text-add.png
+%%GRASS_INST_DIR%%/etc/gui/icons/grass2/tools.png
+%%GRASS_INST_DIR%%/etc/gui/icons/grass2/undo.png
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/vdigit/add.vertex.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/vdigit/box.xbm
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/vdigit/copy.cats.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/vdigit/cross.xbm
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/vdigit/cross45.xbm
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/vdigit/delete.line.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/vdigit/display.attributes.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/vdigit/display.cats.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/vdigit/edit.line.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/vdigit/exit.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/vdigit/move.line.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/vdigit/move.vertex.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/vdigit/new.boundary.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/vdigit/new.centroid.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/vdigit/new.line.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/vdigit/new.point.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/vdigit/redraw.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/vdigit/remove.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/vdigit/rm.vertex.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/vdigit/settings.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/vdigit/split.line.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/vdigit/stop.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/vdigit/zoom.default.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/vdigit/zoom.out.centre.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/vdigit/zoom.pan.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/vdigit/zoom.region.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass/vdigit/zoom.window.gif
+%%GRASS_INST_DIR%%/etc/gui/icons/grass2/vertex-create.png
+%%GRASS_INST_DIR%%/etc/gui/icons/grass2/vertex-delete.png
+%%GRASS_INST_DIR%%/etc/gui/icons/grass2/vertex-move.png
+%%GRASS_INST_DIR%%/etc/gui/icons/grass-48x48.png
+%%GRASS_INST_DIR%%/etc/gui/icons/grass2/zoom-in.png
+%%GRASS_INST_DIR%%/etc/gui/icons/grass2/zoom-last.png
+%%GRASS_INST_DIR%%/etc/gui/icons/grass2/zoom-more.png
+%%GRASS_INST_DIR%%/etc/gui/icons/grass2/zoom-out.png
+%%GRASS_INST_DIR%%/etc/gui/icons/silk/application_add.png
+%%GRASS_INST_DIR%%/etc/gui/icons/silk/application_delete.png
+%%GRASS_INST_DIR%%/etc/gui/icons/silk/application_lightning.png
+%%GRASS_INST_DIR%%/etc/gui/icons/silk/application.png
+%%GRASS_INST_DIR%%/etc/gui/icons/silk/application_view_columns.png
+%%GRASS_INST_DIR%%/etc/gui/icons/silk/application_view_icons.png
+%%GRASS_INST_DIR%%/etc/gui/icons/silk/arrow_inout.png
+%%GRASS_INST_DIR%%/etc/gui/icons/silk/arrow_out.png
+%%GRASS_INST_DIR%%/etc/gui/icons/silk/arrow_refresh.png
+%%GRASS_INST_DIR%%/etc/gui/icons/silk/arrow_undo.png
+%%GRASS_INST_DIR%%/etc/gui/icons/silk/bin_closed.png
+%%GRASS_INST_DIR%%/etc/gui/icons/silk/bricks.png
+%%GRASS_INST_DIR%%/etc/gui/icons/silk/bullet_add.png
+%%GRASS_INST_DIR%%/etc/gui/icons/silk/bullet_delete.png
+%%GRASS_INST_DIR%%/etc/gui/icons/silk/bullet_go.png
+%%GRASS_INST_DIR%%/etc/gui/icons/silk/chart_bar.png
+%%GRASS_INST_DIR%%/etc/gui/icons/silk/chart_line_add.png
+%%GRASS_INST_DIR%%/etc/gui/icons/silk/chart_line_delete.png
+%%GRASS_INST_DIR%%/etc/gui/icons/silk/chart_line_edit.png
+%%GRASS_INST_DIR%%/etc/gui/icons/silk/chart_line_link.png
+%%GRASS_INST_DIR%%/etc/gui/icons/silk/chart_line.png
+%%GRASS_INST_DIR%%/etc/gui/icons/silk/chart_organisation_add.png
+%%GRASS_INST_DIR%%/etc/gui/icons/silk/chart_organisation.png
+%%GRASS_INST_DIR%%/etc/gui/icons/silk/cog_add.png
+%%GRASS_INST_DIR%%/etc/gui/icons/silk/color_swatch.png
+%%GRASS_INST_DIR%%/etc/gui/icons/silk/cursor.png
+%%GRASS_INST_DIR%%/etc/gui/icons/silk/cross.png
+%%GRASS_INST_DIR%%/etc/gui/icons/silk/door_in.png
+%%GRASS_INST_DIR%%/etc/gui/icons/silk/error.png
+%%GRASS_INST_DIR%%/etc/gui/icons/silk/folder_add.png
+%%GRASS_INST_DIR%%/etc/gui/icons/silk/folder.png
+%%GRASS_INST_DIR%%/etc/gui/icons/silk/font.png
+%%GRASS_INST_DIR%%/etc/gui/icons/silk/grid.png
+%%GRASS_INST_DIR%%/etc/gui/icons/silk/his.png
+%%GRASS_INST_DIR%%/etc/gui/icons/silk/image_add.png
+%%GRASS_INST_DIR%%/etc/gui/icons/silk/image_edit.png
+%%GRASS_INST_DIR%%/etc/gui/icons/silk/images.png
+%%GRASS_INST_DIR%%/etc/gui/icons/silk/information.png
+%%GRASS_INST_DIR%%/etc/gui/icons/silk/layout_content.png
+%%GRASS_INST_DIR%%/etc/gui/icons/silk/map_add.png
+%%GRASS_INST_DIR%%/etc/gui/icons/silk/map_edit.png
+%%GRASS_INST_DIR%%/etc/gui/icons/silk/map_go.png
+%%GRASS_INST_DIR%%/etc/gui/icons/silk/map_magnify_menu.png
+%%GRASS_INST_DIR%%/etc/gui/icons/silk/map_magnify.png
+%%GRASS_INST_DIR%%/etc/gui/icons/silk/map.png
+%%GRASS_INST_DIR%%/etc/gui/icons/silk/overlays.png
+%%GRASS_INST_DIR%%/etc/gui/icons/silk/page_green.png
+%%GRASS_INST_DIR%%/etc/gui/icons/silk/page_save.png
+%%GRASS_INST_DIR%%/etc/gui/icons/silk/page_white_get.png
+%%GRASS_INST_DIR%%/etc/gui/icons/silk/page_white_lightning.png
+%%GRASS_INST_DIR%%/etc/gui/icons/silk/page_white_picture.png
+%%GRASS_INST_DIR%%/etc/gui/icons/silk/page_white.png
+%%GRASS_INST_DIR%%/etc/gui/icons/silk/picture_empty.png
+%%GRASS_INST_DIR%%/etc/gui/icons/silk/picture_save.png
+%%GRASS_INST_DIR%%/etc/gui/icons/silk/plugin_add.png
+%%GRASS_INST_DIR%%/etc/gui/icons/silk/plugin.png
+%%GRASS_INST_DIR%%/etc/gui/icons/silk/printer.png
+%%GRASS_INST_DIR%%/etc/gui/icons/silk/rgb.png
+%%GRASS_INST_DIR%%/etc/gui/icons/silk/shape_handles.png
+%%GRASS_INST_DIR%%/etc/gui/icons/silk/shape_square_add.png
+%%GRASS_INST_DIR%%/etc/gui/icons/silk/sum.png
+%%GRASS_INST_DIR%%/etc/gui/icons/silk/table_add.png
+%%GRASS_INST_DIR%%/etc/gui/icons/silk/table.png
+%%GRASS_INST_DIR%%/etc/gui/icons/silk/tag_blue_add.png
+%%GRASS_INST_DIR%%/etc/gui/icons/silk/tag_green.png
+%%GRASS_INST_DIR%%/etc/gui/icons/silk/textfield_add.png
+%%GRASS_INST_DIR%%/etc/gui/icons/silk/thematic.png
+%%GRASS_INST_DIR%%/etc/gui/icons/silk/vector_add.png
+%%GRASS_INST_DIR%%/etc/gui/icons/silk/vector_delete.png
+%%GRASS_INST_DIR%%/etc/gui/icons/silk/wand.png
+%%GRASS_INST_DIR%%/etc/gui/icons/silk/zoom_back.png
+%%GRASS_INST_DIR%%/etc/gui/icons/silk/zoom_in.png
+%%GRASS_INST_DIR%%/etc/gui/icons/silk/zoom_out.png
+%%GRASS_INST_DIR%%/etc/gui/icons/silk/zoom.png
+%%GRASS_INST_DIR%%/etc/gui/images/gintro.gif
+%%GRASS_INST_DIR%%/etc/gui/scripts/d.colors.sh
+%%GRASS_INST_DIR%%/etc/gui/scripts/d.path.sh
+%%GRASS_INST_DIR%%/etc/gui/scripts/d.rast3d
+%%GRASS_INST_DIR%%/etc/gui/scripts/g.change.gui.py
+%%GRASS_INST_DIR%%/etc/gui/scripts/g.change.gui.sh
+%%GRASS_INST_DIR%%/etc/gui/scripts/r.colors.rules
+%%GRASS_INST_DIR%%/etc/gui/scripts/r.reclass.file
+%%GRASS_INST_DIR%%/etc/gui/scripts/r.reclass.rules
+%%GRASS_INST_DIR%%/etc/gui/scripts/r.recode.file
+%%GRASS_INST_DIR%%/etc/gui/scripts/r.recode.rules
+%%GRASS_INST_DIR%%/etc/gui/scripts/r.support.sh
+%%GRASS_INST_DIR%%/etc/gui/scripts/v.type_wrapper.py
+%%GRASS_INST_DIR%%/etc/gui/scripts/v.type_wrapper.sh
%%GRASS_INST_DIR%%/etc/gui.tcl
-%%GRASS_INST_DIR%%/etc/gui/icons/channel-blue.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/channel-green.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/channel-his.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/channel-hue.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/channel-intensity.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/channel-red.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/channel-rgb.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/channel-saturation.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/db-columns.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/db-values.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/drawmode-explore.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/drawmode-strict.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/edit-color.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/edit-copy.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/edit-cut.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/element-3d.view.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/element-cell.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/element-grid3.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/element-group.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/element-icons.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/element-labels.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/element-vector.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/element-windows.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/file-new.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/file-open.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/file-print.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/file-save.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/gui-cmd.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/gui-display.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/gui-erase.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/gui-filesave.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/gui-font.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/gui-gcperase.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/gui-gcpset.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/gui-georect.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/gui-group.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/gui-help.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/gui-maplabels.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/gui-maptext.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/gui-mapzoom.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/gui-measure.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/gui-pan.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/gui-pointer.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/gui-profile.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/gui-profiledefine.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/gui-profiledraw.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/gui-query.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/gui-rastarrowsdir.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/gui-rastarrowsint.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/gui-redraw.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/gui-rms.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/gui-startmon.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/gui-zoom_back.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/gui-zoom_current.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/gui-zoom_default.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/gui-zoom_in.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/gui-zoom_map.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/gui-zoom_out.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/gui-zoom_region.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/module-d.barscale.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/module-d.chart.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/module-d.frame.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/module-d.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/module-d.graph.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/module-d.grid.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/module-d.histogram.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/module-d.labels.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/module-d.legend.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/module-d.nviz.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/module-d.rast.arrow.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/module-d.rast.num.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/module-d.rgb.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/module-d.thematic.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/module-d.vect.chart.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/module-d.vect.thematic.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/module-db.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/module-g.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/module-nviz.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/module-r.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/module-r3.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/module-v.digit.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/module-v.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/module-xganim.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/status-error.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/status-failure.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/status-gism.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/status-message.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/status-out.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/status-running.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/status-success.gif
-%%GRASS_INST_DIR%%/etc/gui/icons/status-warning.gif
-%%GRASS_INST_DIR%%/etc/gui/menus/menu.tcl
-%%GRASS_INST_DIR%%/etc/help.tcl
%%GRASS_INST_DIR%%/etc/i.ask
%%GRASS_INST_DIR%%/etc/i.find
%%GRASS_INST_DIR%%/etc/i.oif/i.oifcalc
@@ -1260,7 +1853,11 @@ bin/grass%%VER%%-gem
%%GRASS_INST_DIR%%/etc/lister/cell
%%GRASS_INST_DIR%%/etc/lister/vector
%%GRASS_INST_DIR%%/etc/lock
-%%GRASS_INST_DIR%%/etc/make_location_epsg.sh
+%%GRASS_INST_DIR%%/etc/modcats
+%%GRASS_INST_DIR%%/etc/modcolr
+%%GRASS_INST_DIR%%/etc/modhead
+%%GRASS_INST_DIR%%/etc/modhist
+%%GRASS_INST_DIR%%/etc/monitorcap
%%GRASS_INST_DIR%%/etc/mon.list
%%GRASS_INST_DIR%%/etc/mon.release
%%GRASS_INST_DIR%%/etc/mon.select
@@ -1268,30 +1865,39 @@ bin/grass%%VER%%-gem
%%GRASS_INST_DIR%%/etc/mon.status
%%GRASS_INST_DIR%%/etc/mon.stop
%%GRASS_INST_DIR%%/etc/mon.which
-%%GRASS_INST_DIR%%/etc/monitorcap
%%GRASS_INST_DIR%%/etc/msgs/am.msg
+%%GRASS_INST_DIR%%/etc/msgs/ar.msg
%%GRASS_INST_DIR%%/etc/msgs/cs.msg
%%GRASS_INST_DIR%%/etc/msgs/de.msg
+%%GRASS_INST_DIR%%/etc/msgs/el.msg
%%GRASS_INST_DIR%%/etc/msgs/es.msg
%%GRASS_INST_DIR%%/etc/msgs/fr.msg
+%%GRASS_INST_DIR%%/etc/msgs/hi.msg
+%%GRASS_INST_DIR%%/etc/msgs/id.msg
%%GRASS_INST_DIR%%/etc/msgs/it.msg
%%GRASS_INST_DIR%%/etc/msgs/ja.msg
+%%GRASS_INST_DIR%%/etc/msgs/ko.msg
%%GRASS_INST_DIR%%/etc/msgs/lv.msg
+%%GRASS_INST_DIR%%/etc/msgs/mr.msg
%%GRASS_INST_DIR%%/etc/msgs/pl.msg
%%GRASS_INST_DIR%%/etc/msgs/pt_br.msg
+%%GRASS_INST_DIR%%/etc/msgs/pt.msg
%%GRASS_INST_DIR%%/etc/msgs/ru.msg
+%%GRASS_INST_DIR%%/etc/msgs/sl.msg
+%%GRASS_INST_DIR%%/etc/msgs/th.msg
%%GRASS_INST_DIR%%/etc/msgs/tr.msg
%%GRASS_INST_DIR%%/etc/msgs/vi.msg
+%%GRASS_INST_DIR%%/etc/msgs/zh.msg
%%GRASS_INST_DIR%%/etc/nad/FL
%%GRASS_INST_DIR%%/etc/nad/MD
%%GRASS_INST_DIR%%/etc/nad/TN
%%GRASS_INST_DIR%%/etc/nad/WI
%%GRASS_INST_DIR%%/etc/nad/WO
%%GRASS_INST_DIR%%/etc/nad/alaska
-%%GRASS_INST_DIR%%/etc/nad/conus
-%%GRASS_INST_DIR%%/etc/nad/hawaii
%%GRASS_INST_DIR%%/etc/nad/ntv1_can.dat
%%GRASS_INST_DIR%%/etc/nad/nzgd2kgrid0005.gsb
+%%GRASS_INST_DIR%%/etc/nad/conus
+%%GRASS_INST_DIR%%/etc/nad/hawaii
%%GRASS_INST_DIR%%/etc/nad/prvi
%%GRASS_INST_DIR%%/etc/nad/stgeorge
%%GRASS_INST_DIR%%/etc/nad/stlrnc
@@ -1301,8 +1907,8 @@ bin/grass%%VER%%-gem
%%GRASS_INST_DIR%%/etc/nviz2.2/bitmaps/flythrough/a_ud.gif
%%GRASS_INST_DIR%%/etc/nviz2.2/bitmaps/flythrough/b_c.gif
%%GRASS_INST_DIR%%/etc/nviz2.2/bitmaps/flythrough/b_cr.gif
-%%GRASS_INST_DIR%%/etc/nviz2.2/bitmaps/flythrough/b_l.gif
%%GRASS_INST_DIR%%/etc/nviz2.2/bitmaps/flythrough/b_lc.gif
+%%GRASS_INST_DIR%%/etc/nviz2.2/bitmaps/flythrough/b_l.gif
%%GRASS_INST_DIR%%/etc/nviz2.2/bitmaps/flythrough/b_lr.gif
%%GRASS_INST_DIR%%/etc/nviz2.2/bitmaps/flythrough/b_r.gif
%%GRASS_INST_DIR%%/etc/nviz2.2/bitmaps/flythrough/vuota.gif
@@ -1312,12 +1918,15 @@ bin/grass%%VER%%-gem
%%GRASS_INST_DIR%%/etc/nviz2.2/bitmaps/slow_right
%%GRASS_INST_DIR%%/etc/nviz2.2/bitmaps/stop
%%GRASS_INST_DIR%%/etc/nviz2.2/bitmaps/trash
+%%GRASS_INST_DIR%%/etc/nviz2.2/bitmaps/trash.gif
%%GRASS_INST_DIR%%/etc/nviz2.2/bitmaps/up
+%%GRASS_INST_DIR%%/etc/nviz2.2/nviz
%%GRASS_INST_DIR%%/etc/nviz2.2/scripts/ACS_utils.tcl
%%GRASS_INST_DIR%%/etc/nviz2.2/scripts/assoc.tcl
%%GRASS_INST_DIR%%/etc/nviz2.2/scripts/attIsosurfPopup.tcl
%%GRASS_INST_DIR%%/etc/nviz2.2/scripts/attPopup.tcl
%%GRASS_INST_DIR%%/etc/nviz2.2/scripts/colorPopup.tcl
+%%GRASS_INST_DIR%%/etc/nviz2.2/scripts/configIndex
%%GRASS_INST_DIR%%/etc/nviz2.2/scripts/config.tcl
%%GRASS_INST_DIR%%/etc/nviz2.2/scripts/cutplane_channels.tcl
%%GRASS_INST_DIR%%/etc/nviz2.2/scripts/extra_bindings.tcl
@@ -1326,24 +1935,23 @@ bin/grass%%VER%%-gem
%%GRASS_INST_DIR%%/etc/nviz2.2/scripts/flythrough.tcl
%%GRASS_INST_DIR%%/etc/nviz2.2/scripts/mapBrowser.tcl
%%GRASS_INST_DIR%%/etc/nviz2.2/scripts/multimapBrowser.tcl
-%%GRASS_INST_DIR%%/etc/nviz2.2/scripts/nviz2.2_script
%%GRASS_INST_DIR%%/etc/nviz2.2/scripts/nviz_init.tcl
%%GRASS_INST_DIR%%/etc/nviz2.2/scripts/nviz_params
+%%GRASS_INST_DIR%%/etc/nviz2.2/scripts/nviz2.2_script
%%GRASS_INST_DIR%%/etc/nviz2.2/scripts/panelIndex
%%GRASS_INST_DIR%%/etc/nviz2.2/scripts/panel_animation.tcl
+%%GRASS_INST_DIR%%/etc/nviz2.2/scripts/panel_arrow.tcl
%%GRASS_INST_DIR%%/etc/nviz2.2/scripts/panel_color.tcl
%%GRASS_INST_DIR%%/etc/nviz2.2/scripts/panel_cutplane.tcl
-%%GRASS_INST_DIR%%/etc/nviz2.2/scripts/panel_highlight.tcl
+%%GRASS_INST_DIR%%/etc/nviz2.2/scripts/panel_fringe.tcl
%%GRASS_INST_DIR%%/etc/nviz2.2/scripts/panel_kanimator.tcl
%%GRASS_INST_DIR%%/etc/nviz2.2/scripts/panel_label.tcl
+%%GRASS_INST_DIR%%/etc/nviz2.2/scripts/panel_legend.tcl
%%GRASS_INST_DIR%%/etc/nviz2.2/scripts/panel_lights.tcl
%%GRASS_INST_DIR%%/etc/nviz2.2/scripts/panel_main.tcl
-%%GRASS_INST_DIR%%/etc/nviz2.2/scripts/panel_pick.tcl
%%GRASS_INST_DIR%%/etc/nviz2.2/scripts/panel_pos.tcl
-%%GRASS_INST_DIR%%/etc/nviz2.2/scripts/panel_query.tcl
-%%GRASS_INST_DIR%%/etc/nviz2.2/scripts/panel_query_orig.tcl
-%%GRASS_INST_DIR%%/etc/nviz2.2/scripts/panel_query_pg.tcl
%%GRASS_INST_DIR%%/etc/nviz2.2/scripts/panel_resize.tcl
+%%GRASS_INST_DIR%%/etc/nviz2.2/scripts/panel_rquery.tcl
%%GRASS_INST_DIR%%/etc/nviz2.2/scripts/panel_scale.tcl
%%GRASS_INST_DIR%%/etc/nviz2.2/scripts/panel_sdiff.tcl
%%GRASS_INST_DIR%%/etc/nviz2.2/scripts/panel_site.tcl
@@ -1351,6 +1959,7 @@ bin/grass%%VER%%-gem
%%GRASS_INST_DIR%%/etc/nviz2.2/scripts/panel_tst.tcl
%%GRASS_INST_DIR%%/etc/nviz2.2/scripts/panel_vect.tcl
%%GRASS_INST_DIR%%/etc/nviz2.2/scripts/panel_vol.tcl
+%%GRASS_INST_DIR%%/etc/nviz2.2/scripts/panel_vquery.tcl
%%GRASS_INST_DIR%%/etc/nviz2.2/scripts/position_procs.tcl
%%GRASS_INST_DIR%%/etc/nviz2.2/scripts/queue.tcl
%%GRASS_INST_DIR%%/etc/nviz2.2/scripts/script_file_tools
@@ -1365,55 +1974,84 @@ bin/grass%%VER%%-gem
%%GRASS_INST_DIR%%/etc/nviz2.2/scripts/unique.tcl
%%GRASS_INST_DIR%%/etc/nviz2.2/scripts/widgets.tcl
%%GRASS_INST_DIR%%/etc/nviz2.2/scripts/wirecolorPopup.tcl
+%%GRASS_INST_DIR%%/etc/ogr_csv/coordinate_axis.csv
%%GRASS_INST_DIR%%/etc/ogr_csv/ellipsoid.csv
%%GRASS_INST_DIR%%/etc/ogr_csv/gcs.csv
+%%GRASS_INST_DIR%%/etc/ogr_csv/gcs.override.csv
%%GRASS_INST_DIR%%/etc/ogr_csv/gdal_datum.csv
+%%GRASS_INST_DIR%%/etc/ogr_csv/gt_datum.csv
+%%GRASS_INST_DIR%%/etc/ogr_csv/gt_ellips.csv
%%GRASS_INST_DIR%%/etc/ogr_csv/pcs.csv
+%%GRASS_INST_DIR%%/etc/ogr_csv/pcs.override.csv
%%GRASS_INST_DIR%%/etc/ogr_csv/prime_meridian.csv
%%GRASS_INST_DIR%%/etc/ogr_csv/projop_wparm.csv
%%GRASS_INST_DIR%%/etc/ogr_csv/stateplane.csv
%%GRASS_INST_DIR%%/etc/ogr_csv/unit_of_measure.csv
+%%GRASS_INST_DIR%%/etc/paint/decorations/compass_exterior.eps
+%%GRASS_INST_DIR%%/etc/paint/decorations/compass_interior.eps
+%%GRASS_INST_DIR%%/etc/paint/decorations/grasslogo.eps
%%GRASS_INST_DIR%%/etc/paint/patterns/brick.eps
%%GRASS_INST_DIR%%/etc/paint/patterns/cross_diag.eps
%%GRASS_INST_DIR%%/etc/paint/patterns/cross_diag5.eps
%%GRASS_INST_DIR%%/etc/paint/patterns/cross_normal.eps
%%GRASS_INST_DIR%%/etc/paint/patterns/cross_normal5.eps
+%%GRASS_INST_DIR%%/etc/paint/patterns/diag_down_dash.eps
%%GRASS_INST_DIR%%/etc/paint/patterns/diag_down.eps
%%GRASS_INST_DIR%%/etc/paint/patterns/diag_down6.eps
-%%GRASS_INST_DIR%%/etc/paint/patterns/diag_down_dash.eps
+%%GRASS_INST_DIR%%/etc/paint/patterns/diag_up_dash.eps
%%GRASS_INST_DIR%%/etc/paint/patterns/diag_up.eps
%%GRASS_INST_DIR%%/etc/paint/patterns/diag_up6.eps
-%%GRASS_INST_DIR%%/etc/paint/patterns/diag_up_dash.eps
-%%GRASS_INST_DIR%%/etc/paint/patterns/horiz_line.eps
-%%GRASS_INST_DIR%%/etc/paint/patterns/horiz_line6.eps
%%GRASS_INST_DIR%%/etc/paint/patterns/horiz_line_dash.eps
+%%GRASS_INST_DIR%%/etc/paint/patterns/horiz_line6.eps
+%%GRASS_INST_DIR%%/etc/paint/patterns/horiz_line.eps
+%%GRASS_INST_DIR%%/etc/paint/patterns/horiz_zigzag.eps
%%GRASS_INST_DIR%%/etc/paint/patterns/polka_dot.eps
+%%GRASS_INST_DIR%%/etc/paint/patterns/railroad_down.eps
+%%GRASS_INST_DIR%%/etc/paint/patterns/railroad_up.eps
+%%GRASS_INST_DIR%%/etc/paint/patterns/vert_line_dash.eps
%%GRASS_INST_DIR%%/etc/paint/patterns/vert_line.eps
%%GRASS_INST_DIR%%/etc/paint/patterns/vert_line6.eps
-%%GRASS_INST_DIR%%/etc/paint/patterns/vert_line_dash.eps
+%%GRASS_INST_DIR%%/etc/paint/patterns/vert_zigzag.eps
%%GRASS_INST_DIR%%/etc/paint/prolog.ps
-%%GRASS_INST_DIR%%/etc/photo.2image
-%%GRASS_INST_DIR%%/etc/photo.2target
%%GRASS_INST_DIR%%/etc/photo.camera
%%GRASS_INST_DIR%%/etc/photo.elev
+%%GRASS_INST_DIR%%/etc/photo.2image
%%GRASS_INST_DIR%%/etc/photo.init
%%GRASS_INST_DIR%%/etc/photo.rectify
+%%GRASS_INST_DIR%%/etc/photo.2target
%%GRASS_INST_DIR%%/etc/photo.target
+%%GRASS_INST_DIR%%/etc/poly_to_bmif
+%%GRASS_INST_DIR%%/etc/proj-desc.table
%%GRASS_INST_DIR%%/etc/projections
+%%GRASS_INST_DIR%%/etc/proj-parms.table
+%%GRASS_INST_DIR%%/etc/proj-units.table
%%GRASS_INST_DIR%%/etc/prompt.sh
+%%GRASS_INST_DIR%%/etc/psdriver.ps
+%%GRASS_INST_DIR%%/etc/python/grass/__init__.py
+%%GRASS_INST_DIR%%/etc/python/grass/script/core.py
+%%GRASS_INST_DIR%%/etc/python/grass/script/db.py
+%%GRASS_INST_DIR%%/etc/python/grass/script/__init__.py
+%%GRASS_INST_DIR%%/etc/python/grass/script/raster.py
+%%GRASS_INST_DIR%%/etc/python/grass/script/vector.py
%%GRASS_INST_DIR%%/etc/r.in.wms/r.in.gdalwarp
%%GRASS_INST_DIR%%/etc/r.in.wms/wms.download
%%GRASS_INST_DIR%%/etc/r.in.wms/wms.request
-%%GRASS_INST_DIR%%/etc/ram
+%%GRASS_INST_DIR%%/etc/r.li.setup/area_query
+%%GRASS_INST_DIR%%/etc/r.li.setup/circle.txt
+%%GRASS_INST_DIR%%/etc/r.li.setup/masked_area_selection
+%%GRASS_INST_DIR%%/etc/r.li.setup/polygon.txt
+%%GRASS_INST_DIR%%/etc/r.li.setup/r.li.setup.main
+%%GRASS_INST_DIR%%/etc/r.li.setup/r.li.setup.procedures.tcl
+%%GRASS_INST_DIR%%/etc/r.li.setup/r.li.windows.tcl
+%%GRASS_INST_DIR%%/etc/r.li.setup/sample_area_vector.sh
+%%GRASS_INST_DIR%%/etc/r.li.setup/square_mouse_selection.sh
+%%GRASS_INST_DIR%%/etc/r.li.setup/square_query
%%GRASS_INST_DIR%%/etc/run
-%%GRASS_INST_DIR%%/etc/seg
+%%GRASS_INST_DIR%%/etc/r.watershed.ram
+%%GRASS_INST_DIR%%/etc/r.watershed.seg
%%GRASS_INST_DIR%%/etc/set_data
%%GRASS_INST_DIR%%/etc/state27
%%GRASS_INST_DIR%%/etc/state83
-%%GRASS_INST_DIR%%/etc/support/modcats
-%%GRASS_INST_DIR%%/etc/support/modcolr
-%%GRASS_INST_DIR%%/etc/support/modhead
-%%GRASS_INST_DIR%%/etc/support/modhist
%%GRASS_INST_DIR%%/etc/symbol/basic/arrow1
%%GRASS_INST_DIR%%/etc/symbol/basic/arrow2
%%GRASS_INST_DIR%%/etc/symbol/basic/box
@@ -1430,76 +2068,153 @@ bin/grass%%VER%%-gem
%%GRASS_INST_DIR%%/etc/symbol/basic/x
%%GRASS_INST_DIR%%/etc/symbol/demo/muchomurka
%%GRASS_INST_DIR%%/etc/symbol/demo/smrk
-%%GRASS_INST_DIR%%/etc/symbol/extra/4pt_star
%%GRASS_INST_DIR%%/etc/symbol/extra/adcp
%%GRASS_INST_DIR%%/etc/symbol/extra/airport
%%GRASS_INST_DIR%%/etc/symbol/extra/alpha_flag
+%%GRASS_INST_DIR%%/etc/symbol/extra/bridge
%%GRASS_INST_DIR%%/etc/symbol/extra/compass
%%GRASS_INST_DIR%%/etc/symbol/extra/dive_flag
%%GRASS_INST_DIR%%/etc/symbol/extra/fancy_compass
+%%GRASS_INST_DIR%%/etc/symbol/extra/fiducial
+%%GRASS_INST_DIR%%/etc/symbol/extra/fish
+%%GRASS_INST_DIR%%/etc/symbol/extra/half-box
%%GRASS_INST_DIR%%/etc/symbol/extra/half-circle
+%%GRASS_INST_DIR%%/etc/symbol/extra/n_arrow1
+%%GRASS_INST_DIR%%/etc/symbol/extra/n_arrow2
+%%GRASS_INST_DIR%%/etc/symbol/extra/offbox_ne
+%%GRASS_INST_DIR%%/etc/symbol/extra/offbox_nw
+%%GRASS_INST_DIR%%/etc/symbol/extra/offbox_se
+%%GRASS_INST_DIR%%/etc/symbol/extra/offbox_sw
+%%GRASS_INST_DIR%%/etc/symbol/extra/pentagon
+%%GRASS_INST_DIR%%/etc/symbol/extra/ping
+%%GRASS_INST_DIR%%/etc/symbol/extra/4pt_star
+%%GRASS_INST_DIR%%/etc/symbol/extra/ring
%%GRASS_INST_DIR%%/etc/symbol/extra/target
-%%GRASS_INST_DIR%%/etc/v.digit/add.vertex.gif
+%%GRASS_INST_DIR%%/etc/symbol/geology/strike_box
+%%GRASS_INST_DIR%%/etc/symbol/geology/strike_circle
+%%GRASS_INST_DIR%%/etc/symbol/geology/strike_line
+%%GRASS_INST_DIR%%/etc/symbol/geology/strike_triangle
%%GRASS_INST_DIR%%/etc/v.digit/cats.tcl
-%%GRASS_INST_DIR%%/etc/v.digit/copy.cats.gif
-%%GRASS_INST_DIR%%/etc/v.digit/delete.line.gif
-%%GRASS_INST_DIR%%/etc/v.digit/display.attributes.gif
-%%GRASS_INST_DIR%%/etc/v.digit/display.cats.gif
-%%GRASS_INST_DIR%%/etc/v.digit/edit.line.gif
-%%GRASS_INST_DIR%%/etc/v.digit/exit.gif
-%%GRASS_INST_DIR%%/etc/v.digit/move.line.gif
-%%GRASS_INST_DIR%%/etc/v.digit/move.vertex.gif
-%%GRASS_INST_DIR%%/etc/v.digit/new.boundary.gif
-%%GRASS_INST_DIR%%/etc/v.digit/new.centroid.gif
-%%GRASS_INST_DIR%%/etc/v.digit/new.line.gif
-%%GRASS_INST_DIR%%/etc/v.digit/new.point.gif
-%%GRASS_INST_DIR%%/etc/v.digit/redraw.gif
-%%GRASS_INST_DIR%%/etc/v.digit/rm.vertex.gif
-%%GRASS_INST_DIR%%/etc/v.digit/settings.gif
+%%GRASS_INST_DIR%%/etc/v.digit/form.tcl
+%%GRASS_INST_DIR%%/etc/v.digit/html_library.tcl
%%GRASS_INST_DIR%%/etc/v.digit/settings.tcl
-%%GRASS_INST_DIR%%/etc/v.digit/split.line.gif
-%%GRASS_INST_DIR%%/etc/v.digit/stop.gif
%%GRASS_INST_DIR%%/etc/v.digit/toolbox.tcl
-%%GRASS_INST_DIR%%/etc/v.digit/zoom.default.gif
-%%GRASS_INST_DIR%%/etc/v.digit/zoom.out.centre.gif
-%%GRASS_INST_DIR%%/etc/v.digit/zoom.pan.gif
-%%GRASS_INST_DIR%%/etc/v.digit/zoom.region.gif
-%%GRASS_INST_DIR%%/etc/v.digit/zoom.window.gif
-%%GRASS_INST_DIR%%/etc/water/ram
-%%GRASS_INST_DIR%%/etc/water/seg
%%GRASS_INST_DIR%%/etc/welcome
-%%GRASS_INST_DIR%%/fonts/cyrilc
-%%GRASS_INST_DIR%%/fonts/gothgbt
-%%GRASS_INST_DIR%%/fonts/gothgrt
-%%GRASS_INST_DIR%%/fonts/gothitt
-%%GRASS_INST_DIR%%/fonts/greekc
-%%GRASS_INST_DIR%%/fonts/greekcs
-%%GRASS_INST_DIR%%/fonts/greekp
-%%GRASS_INST_DIR%%/fonts/greeks
-%%GRASS_INST_DIR%%/fonts/italicc
-%%GRASS_INST_DIR%%/fonts/italiccs
-%%GRASS_INST_DIR%%/fonts/italict
-%%GRASS_INST_DIR%%/fonts/romanc
-%%GRASS_INST_DIR%%/fonts/romancs
-%%GRASS_INST_DIR%%/fonts/romand
-%%GRASS_INST_DIR%%/fonts/romans
-%%GRASS_INST_DIR%%/fonts/romant
-%%GRASS_INST_DIR%%/fonts/scriptc
-%%GRASS_INST_DIR%%/fonts/scripts
+%%GRASS_INST_DIR%%/etc/wxpython/README
+%%GRASS_INST_DIR%%/etc/wxpython/compat/__init__.py
+%%GRASS_INST_DIR%%/etc/wxpython/compat/subprocess.py
+%%GRASS_INST_DIR%%/etc/wxpython/gis_set.py
+%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/colorrules.py
+%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/dbm.py
+%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/debug.py
+%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/disp_print.py
+%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/gcmd.py
+%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/gdialogs.py
+%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/georect.py
+%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/globalvar.py
+%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/goutput.py
+%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/grassenv.py
+%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/gselect.py
+%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/histogram.py
+%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/__init__.py
+%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/location_wizard.py
+%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/mapdisp.py
+%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/mcalc_builder.py
+%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/menudata.py
+%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/menuform.py
+%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/nviz_mapdisp.py
+%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/nviz.py
+%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/nviz_tools.py
+%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/preferences.py
+%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/profile.py
+%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/render.py
+%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/rules.py
+%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/sqlbuilder.py
+%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/states.txt
+%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/toolbars.py
+%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/toolbox.py
+%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/track.py
+%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/utils.py
+%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/vdigit.py
+%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/workspace.py
+%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/wxgui_utils.py
+%%GRASS_INST_DIR%%/etc/wxpython/icons/grass_icons.py
+%%GRASS_INST_DIR%%/etc/wxpython/icons/grass2_icons.py
+%%GRASS_INST_DIR%%/etc/wxpython/icons/icon.py
+%%GRASS_INST_DIR%%/etc/wxpython/icons/__init__.py
+%%GRASS_INST_DIR%%/etc/wxpython/icons/silk_icons.py
+%%GRASS_INST_DIR%%/etc/wxpython/images/grass_form.png
+%%GRASS_INST_DIR%%/etc/wxpython/images/grass_splash.png
+%%GRASS_INST_DIR%%/etc/wxpython/images/grass_splash.xcf
+%%GRASS_INST_DIR%%/etc/wxpython/images/__init__.py
+%%GRASS_INST_DIR%%/etc/wxpython/images/loc_wizard.png
+%%GRASS_INST_DIR%%/etc/wxpython/images/loc_wizard_qgis.png
+%%GRASS_INST_DIR%%/etc/wxpython/images/qgis_world.png
+%%GRASS_INST_DIR%%/etc/wxpython/scripts/p.cmd
+%%GRASS_INST_DIR%%/etc/wxpython/scripts/p.db
+%%GRASS_INST_DIR%%/etc/wxpython/scripts/p.mon
+%%GRASS_INST_DIR%%/etc/wxpython/scripts/p.rast
+%%GRASS_INST_DIR%%/etc/wxpython/scripts/p.vect
+%%GRASS_INST_DIR%%/etc/wxpython/scripts/wxgui
+%%GRASS_INST_DIR%%/etc/wxpython/wxgui.py
+%%GRASS_INST_DIR%%/etc/wxpython/xml/grass-gxw.dtd
+%%GRASS_INST_DIR%%/etc/wxpython/xml/menudata.xml
+%%GRASS_INST_DIR%%/fonts/cyrilc.hmp
+%%GRASS_INST_DIR%%/fonts/fonts.table
+%%GRASS_INST_DIR%%/fonts/gothgbt.hmp
+%%GRASS_INST_DIR%%/fonts/gothgrt.hmp
+%%GRASS_INST_DIR%%/fonts/gothitt.hmp
+%%GRASS_INST_DIR%%/fonts/greekc.hmp
+%%GRASS_INST_DIR%%/fonts/greekcs.hmp
+%%GRASS_INST_DIR%%/fonts/greekp.hmp
+%%GRASS_INST_DIR%%/fonts/greeks.hmp
+%%GRASS_INST_DIR%%/fonts/hersh.oc1
+%%GRASS_INST_DIR%%/fonts/hersh.oc2
+%%GRASS_INST_DIR%%/fonts/hersh.oc3
+%%GRASS_INST_DIR%%/fonts/hersh.oc4
+%%GRASS_INST_DIR%%/fonts/italicc.hmp
+%%GRASS_INST_DIR%%/fonts/italiccs.hmp
+%%GRASS_INST_DIR%%/fonts/italict.hmp
+%%GRASS_INST_DIR%%/fonts/romanc.hmp
+%%GRASS_INST_DIR%%/fonts/romancs.hmp
+%%GRASS_INST_DIR%%/fonts/romand.hmp
+%%GRASS_INST_DIR%%/fonts/romans.hmp
+%%GRASS_INST_DIR%%/fonts/romant.hmp
+%%GRASS_INST_DIR%%/fonts/scriptc.hmp
+%%GRASS_INST_DIR%%/fonts/scripts.hmp
+%%GRASS_INST_DIR%%/include/Make/Dir.make
+%%GRASS_INST_DIR%%/include/Make/Doxygen.make
+%%GRASS_INST_DIR%%/include/Make/Grass.make
+%%GRASS_INST_DIR%%/include/Make/Html.make
+%%GRASS_INST_DIR%%/include/Make/Lib.make
+%%GRASS_INST_DIR%%/include/Make/Man.make
+%%GRASS_INST_DIR%%/include/Make/Module.make
+%%GRASS_INST_DIR%%/include/Make/Multi.make
+%%GRASS_INST_DIR%%/include/Make/Platform.make
+%%GRASS_INST_DIR%%/include/Make/Python.make
+%%GRASS_INST_DIR%%/include/Make/Rules.make
+%%GRASS_INST_DIR%%/include/Make/Script.make
+%%GRASS_INST_DIR%%/include/Make/Shlib.make
+%%GRASS_INST_DIR%%/include/Make/Stlib.make
%%GRASS_INST_DIR%%/include/grass/CC.h
-%%GRASS_INST_DIR%%/include/grass/D.h
%%GRASS_INST_DIR%%/include/grass/G3d.h
-%%GRASS_INST_DIR%%/include/grass/P_datetime.h
-%%GRASS_INST_DIR%%/include/grass/P_site.h
+%%GRASS_INST_DIR%%/include/grass/N_gwflow.h
+%%GRASS_INST_DIR%%/include/grass/N_heatflow.h
+%%GRASS_INST_DIR%%/include/grass/N_pde.h
+%%GRASS_INST_DIR%%/include/grass/N_solute_transport.h
%%GRASS_INST_DIR%%/include/grass/Paintlib.h
+%%GRASS_INST_DIR%%/include/grass/P_datetime.h
%%GRASS_INST_DIR%%/include/grass/PolimiFunct.h
-%%GRASS_INST_DIR%%/include/grass/V_.h
+%%GRASS_INST_DIR%%/include/grass/P_site.h
%%GRASS_INST_DIR%%/include/grass/Vect.h
+%%GRASS_INST_DIR%%/include/grass/V_.h
+%%GRASS_INST_DIR%%/include/grass/arraystats.h
%%GRASS_INST_DIR%%/include/grass/bdlg_bm.h
%%GRASS_INST_DIR%%/include/grass/bitmap.h
%%GRASS_INST_DIR%%/include/grass/blas.h
%%GRASS_INST_DIR%%/include/grass/btree.h
%%GRASS_INST_DIR%%/include/grass/cdhc.h
+%%GRASS_INST_DIR%%/include/grass/cluster.h
%%GRASS_INST_DIR%%/include/grass/codes.h
%%GRASS_INST_DIR%%/include/grass/colors.h
%%GRASS_INST_DIR%%/include/grass/config.h
@@ -1507,11 +2222,11 @@ bin/grass%%VER%%-gem
%%GRASS_INST_DIR%%/include/grass/datetime.h
%%GRASS_INST_DIR%%/include/grass/dbmi.h
%%GRASS_INST_DIR%%/include/grass/devlib.h
-%%GRASS_INST_DIR%%/include/grass/dgl.h
%%GRASS_INST_DIR%%/include/grass/dgl/avl.h
%%GRASS_INST_DIR%%/include/grass/dgl/graph.h
%%GRASS_INST_DIR%%/include/grass/dgl/graph_v1.h
%%GRASS_INST_DIR%%/include/grass/dgl/graph_v2.h
+%%GRASS_INST_DIR%%/include/grass/dgl.h
%%GRASS_INST_DIR%%/include/grass/dgl/heap.h
%%GRASS_INST_DIR%%/include/grass/dgl/helpers.h
%%GRASS_INST_DIR%%/include/grass/dgl/tavl.h
@@ -1519,51 +2234,70 @@ bin/grass%%VER%%-gem
%%GRASS_INST_DIR%%/include/grass/dgl/type.h
%%GRASS_INST_DIR%%/include/grass/dig_atts.h
%%GRASS_INST_DIR%%/include/grass/display.h
-%%GRASS_INST_DIR%%/include/grass/dlg.h
%%GRASS_INST_DIR%%/include/grass/dlg_bm.h
+%%GRASS_INST_DIR%%/include/grass/dlg.h
%%GRASS_INST_DIR%%/include/grass/edit.h
%%GRASS_INST_DIR%%/include/grass/form.h
-%%GRASS_INST_DIR%%/include/grass/geo.h
+%%GRASS_INST_DIR%%/include/grass/freetypecap.h
%%GRASS_INST_DIR%%/include/grass/geom.h
-%%GRASS_INST_DIR%%/include/grass/gis.h
%%GRASS_INST_DIR%%/include/grass/gisdefs.h
+%%GRASS_INST_DIR%%/include/grass/gis.h
%%GRASS_INST_DIR%%/include/grass/glocale.h
%%GRASS_INST_DIR%%/include/grass/gmath.h
-%%GRASS_INST_DIR%%/include/grass/gproj_api.h
%%GRASS_INST_DIR%%/include/grass/gprojects.h
%%GRASS_INST_DIR%%/include/grass/graphics.h
%%GRASS_INST_DIR%%/include/grass/gstypes.h
%%GRASS_INST_DIR%%/include/grass/gsurf.h
%%GRASS_INST_DIR%%/include/grass/help.h
%%GRASS_INST_DIR%%/include/grass/ibtree.h
-%%GRASS_INST_DIR%%/include/grass/icon.h
%%GRASS_INST_DIR%%/include/grass/icon_bm.h
+%%GRASS_INST_DIR%%/include/grass/icon.h
%%GRASS_INST_DIR%%/include/grass/imagedefs.h
%%GRASS_INST_DIR%%/include/grass/imagery.h
%%GRASS_INST_DIR%%/include/grass/interpf.h
+%%GRASS_INST_DIR%%/include/grass/iostream/ami_config.h
+%%GRASS_INST_DIR%%/include/grass/iostream/ami.h
+%%GRASS_INST_DIR%%/include/grass/iostream/ami_sort.h
+%%GRASS_INST_DIR%%/include/grass/iostream/ami_sort_impl.h
+%%GRASS_INST_DIR%%/include/grass/iostream/ami_stream.h
+%%GRASS_INST_DIR%%/include/grass/iostream/embuffer.h
+%%GRASS_INST_DIR%%/include/grass/iostream/empq_adaptive.h
+%%GRASS_INST_DIR%%/include/grass/iostream/empq_adaptive_impl.h
+%%GRASS_INST_DIR%%/include/grass/iostream/empq.h
+%%GRASS_INST_DIR%%/include/grass/iostream/empq_impl.h
+%%GRASS_INST_DIR%%/include/grass/iostream/imbuffer.h
+%%GRASS_INST_DIR%%/include/grass/iostream/mem_stream.h
+%%GRASS_INST_DIR%%/include/grass/iostream/minmaxheap.h
+%%GRASS_INST_DIR%%/include/grass/iostream/mm.h
+%%GRASS_INST_DIR%%/include/grass/iostream/mm_utils.h
+%%GRASS_INST_DIR%%/include/grass/iostream/pqheap.h
+%%GRASS_INST_DIR%%/include/grass/iostream/queue.h
+%%GRASS_INST_DIR%%/include/grass/iostream/quicksort.h
+%%GRASS_INST_DIR%%/include/grass/iostream/replacementHeapBlock.h
+%%GRASS_INST_DIR%%/include/grass/iostream/replacementHeap.h
+%%GRASS_INST_DIR%%/include/grass/iostream/rtimer.h
%%GRASS_INST_DIR%%/include/grass/keyframe.h
%%GRASS_INST_DIR%%/include/grass/kftypes.h
-%%GRASS_INST_DIR%%/include/grass/la.h
%%GRASS_INST_DIR%%/include/grass/label_bm.h
+%%GRASS_INST_DIR%%/include/grass/la.h
%%GRASS_INST_DIR%%/include/grass/lapack.h
%%GRASS_INST_DIR%%/include/grass/libtrans.h
%%GRASS_INST_DIR%%/include/grass/linkm.h
%%GRASS_INST_DIR%%/include/grass/lock.h
%%GRASS_INST_DIR%%/include/grass/lrs.h
%%GRASS_INST_DIR%%/include/grass/monitors.h
+%%GRASS_INST_DIR%%/include/grass/nviz.h
%%GRASS_INST_DIR%%/include/grass/ogsf_proto.h
%%GRASS_INST_DIR%%/include/grass/ortholib.h
%%GRASS_INST_DIR%%/include/grass/patterns.h
-%%GRASS_INST_DIR%%/include/grass/pbmplus.h
-%%GRASS_INST_DIR%%/include/grass/portable.h
%%GRASS_INST_DIR%%/include/grass/proto_dbmi.h
%%GRASS_INST_DIR%%/include/grass/qtree.h
%%GRASS_INST_DIR%%/include/grass/raster.h
%%GRASS_INST_DIR%%/include/grass/readsites.h
%%GRASS_INST_DIR%%/include/grass/region_bm.h
%%GRASS_INST_DIR%%/include/grass/rowio.h
-%%GRASS_INST_DIR%%/include/grass/rtree.h
%%GRASS_INST_DIR%%/include/grass/rtree/card.h
+%%GRASS_INST_DIR%%/include/grass/rtree.h
%%GRASS_INST_DIR%%/include/grass/rtree/index.h
%%GRASS_INST_DIR%%/include/grass/rtree/split_q.h
%%GRASS_INST_DIR%%/include/grass/search.h
@@ -1574,6 +2308,7 @@ bin/grass%%VER%%-gem
%%GRASS_INST_DIR%%/include/grass/sitelib.h
%%GRASS_INST_DIR%%/include/grass/spawn.h
%%GRASS_INST_DIR%%/include/grass/sqlp.h
+%%GRASS_INST_DIR%%/include/grass/stats.h
%%GRASS_INST_DIR%%/include/grass/std_incs.h
%%GRASS_INST_DIR%%/include/grass/symbol.h
%%GRASS_INST_DIR%%/include/grass/transform.h
@@ -1581,138 +2316,190 @@ bin/grass%%VER%%-gem
%%GRASS_INST_DIR%%/include/grass/vbuildlib.h
%%GRASS_INST_DIR%%/include/grass/vect/dig_defines.h
%%GRASS_INST_DIR%%/include/grass/vect/dig_externs.h
-%%GRASS_INST_DIR%%/include/grass/vect/dig_globs.h
+%%GRASS_INST_DIR%%/include/grass/vect/digit.h
%%GRASS_INST_DIR%%/include/grass/vect/dig_macros.h
%%GRASS_INST_DIR%%/include/grass/vect/dig_structs.h
-%%GRASS_INST_DIR%%/include/grass/vect/digit.h
+%%GRASS_INST_DIR%%/include/grass/vedit.h
%%GRASS_INST_DIR%%/include/grass/version.h
%%GRASS_INST_DIR%%/include/grass/waterglobs.h
%%GRASS_INST_DIR%%/include/grass/winname.h
-%%GRASS_INST_DIR%%/include/portable.h
-%%GRASS_INST_DIR%%/lib/libgrass_D.%%VERSION%%.so
-%%GRASS_INST_DIR%%/lib/libgrass_D.so
-%%GRASS_INST_DIR%%/lib/libgrass_I.%%VERSION%%.so
%%GRASS_INST_DIR%%/lib/libgrass_I.so
-%%GRASS_INST_DIR%%/lib/libgrass_Iortho.%%VERSION%%.so
+%%GRASS_INST_DIR%%/lib/libgrass_dgl.so
+%%GRASS_INST_DIR%%/lib/libgrass_dig2.so
+%%GRASS_INST_DIR%%/lib/libgrass_g3d.so
+%%GRASS_INST_DIR%%/lib/libgrass_lrs.so
+%%GRASS_INST_DIR%%/lib/libgrass_rli.so
+%%GRASS_INST_DIR%%/lib/libgrass_sim.so
+%%GRASS_INST_DIR%%/lib/libgrass_I.6.4.0.so
%%GRASS_INST_DIR%%/lib/libgrass_Iortho.so
-%%GRASS_INST_DIR%%/lib/libgrass_bitmap.%%VERSION%%.so
+%%GRASS_INST_DIR%%/lib/libgrass_Iortho.6.4.0.so
+%%GRASS_INST_DIR%%/lib/libgrass_arraystats.so
+%%GRASS_INST_DIR%%/lib/libgrass_arraystats.6.4.0.so
%%GRASS_INST_DIR%%/lib/libgrass_bitmap.so
-%%GRASS_INST_DIR%%/lib/libgrass_btree.%%VERSION%%.so
+%%GRASS_INST_DIR%%/lib/libgrass_bitmap.6.4.0.so
%%GRASS_INST_DIR%%/lib/libgrass_btree.so
-%%GRASS_INST_DIR%%/lib/libgrass_cdhc.%%VERSION%%.so
+%%GRASS_INST_DIR%%/lib/libgrass_btree.6.4.0.so
%%GRASS_INST_DIR%%/lib/libgrass_cdhc.so
-%%GRASS_INST_DIR%%/lib/libgrass_datetime.%%VERSION%%.so
+%%GRASS_INST_DIR%%/lib/libgrass_cdhc.6.4.0.so
+%%GRASS_INST_DIR%%/lib/libgrass_cluster.so
+%%GRASS_INST_DIR%%/lib/libgrass_cluster.6.4.0.so
+%%GRASS_INST_DIR%%/lib/libgrass_dspf.so
%%GRASS_INST_DIR%%/lib/libgrass_datetime.so
-%%GRASS_INST_DIR%%/lib/libgrass_dbmibase.%%VERSION%%.so
+%%GRASS_INST_DIR%%/lib/libgrass_datetime.6.4.0.so
%%GRASS_INST_DIR%%/lib/libgrass_dbmibase.so
-%%GRASS_INST_DIR%%/lib/libgrass_dbmiclient.%%VERSION%%.so
+%%GRASS_INST_DIR%%/lib/libgrass_dbmibase.6.4.0.so
%%GRASS_INST_DIR%%/lib/libgrass_dbmiclient.so
-%%GRASS_INST_DIR%%/lib/libgrass_dbmidriver.%%VERSION%%.so
+%%GRASS_INST_DIR%%/lib/libgrass_dbmiclient.6.4.0.so
%%GRASS_INST_DIR%%/lib/libgrass_dbmidriver.so
-%%GRASS_INST_DIR%%/lib/libgrass_dbstubs.%%VERSION%%.so
+%%GRASS_INST_DIR%%/lib/libgrass_dbmidriver.6.4.0.so
%%GRASS_INST_DIR%%/lib/libgrass_dbstubs.so
-%%GRASS_INST_DIR%%/lib/libgrass_dgl.%%VERSION%%.so
-%%GRASS_INST_DIR%%/lib/libgrass_dgl.so
-%%GRASS_INST_DIR%%/lib/libgrass_dig2.%%VERSION%%.so
-%%GRASS_INST_DIR%%/lib/libgrass_dig2.so
-%%GRASS_INST_DIR%%/lib/libgrass_display.%%VERSION%%.so
+%%GRASS_INST_DIR%%/lib/libgrass_dbstubs.6.4.0.so
+%%GRASS_INST_DIR%%/lib/libgrass_dgl.6.4.0.so
+%%GRASS_INST_DIR%%/lib/libgrass_dig2.6.4.0.so
%%GRASS_INST_DIR%%/lib/libgrass_display.so
-%%GRASS_INST_DIR%%/lib/libgrass_driver.%%VERSION%%.so
+%%GRASS_INST_DIR%%/lib/libgrass_display.6.4.0.so
%%GRASS_INST_DIR%%/lib/libgrass_driver.so
-%%GRASS_INST_DIR%%/lib/libgrass_dspf.%%VERSION%%.so
-%%GRASS_INST_DIR%%/lib/libgrass_dspf.so
-%%GRASS_INST_DIR%%/lib/libgrass_edit.%%VERSION%%.so
+%%GRASS_INST_DIR%%/lib/libgrass_driver.6.4.0.so
+%%GRASS_INST_DIR%%/lib/libgrass_dspf.6.4.0.so
%%GRASS_INST_DIR%%/lib/libgrass_edit.so
-%%GRASS_INST_DIR%%/lib/libgrass_form.%%VERSION%%.so
+%%GRASS_INST_DIR%%/lib/libgrass_edit.6.4.0.so
%%GRASS_INST_DIR%%/lib/libgrass_form.so
-%%GRASS_INST_DIR%%/lib/libgrass_g3d.%%VERSION%%.so
-%%GRASS_INST_DIR%%/lib/libgrass_g3d.so
-%%GRASS_INST_DIR%%/lib/libgrass_gis.%%VERSION%%.so
+%%GRASS_INST_DIR%%/lib/libgrass_form.6.4.0.so
+%%GRASS_INST_DIR%%/lib/libgrass_g3d.6.4.0.so
%%GRASS_INST_DIR%%/lib/libgrass_gis.so
-%%GRASS_INST_DIR%%/lib/libgrass_gmath.%%VERSION%%.so
+%%GRASS_INST_DIR%%/lib/libgrass_gis.6.4.0.so
%%GRASS_INST_DIR%%/lib/libgrass_gmath.so
-%%GRASS_INST_DIR%%/lib/libgrass_gproj.%%VERSION%%.so
+%%GRASS_INST_DIR%%/lib/libgrass_gmath.6.4.0.so
+%%GRASS_INST_DIR%%/lib/libgrass_gpde.so
+%%GRASS_INST_DIR%%/lib/libgrass_gpde.6.4.0.so
%%GRASS_INST_DIR%%/lib/libgrass_gproj.so
-%%GRASS_INST_DIR%%/lib/libgrass_interpdata.%%VERSION%%.so
-%%GRASS_INST_DIR%%/lib/libgrass_interpdata.so
-%%GRASS_INST_DIR%%/lib/libgrass_interpfl.%%VERSION%%.so
+%%GRASS_INST_DIR%%/lib/libgrass_gproj.6.4.0.so
%%GRASS_INST_DIR%%/lib/libgrass_interpfl.so
+%%GRASS_INST_DIR%%/lib/libgrass_interpdata.so
+%%GRASS_INST_DIR%%/lib/libgrass_interpdata.6.4.0.so
+%%GRASS_INST_DIR%%/lib/libgrass_interpfl.6.4.0.so
+%%GRASS_INST_DIR%%/lib/libgrass_iostream.a
%%GRASS_INST_DIR%%/lib/libgrass_ismap.a
-%%GRASS_INST_DIR%%/lib/libgrass_lidar.%%VERSION%%.so
%%GRASS_INST_DIR%%/lib/libgrass_lidar.so
-%%GRASS_INST_DIR%%/lib/libgrass_linkm.%%VERSION%%.so
%%GRASS_INST_DIR%%/lib/libgrass_linkm.so
-%%GRASS_INST_DIR%%/lib/libgrass_lrs.%%VERSION%%.so
-%%GRASS_INST_DIR%%/lib/libgrass_lrs.so
+%%GRASS_INST_DIR%%/lib/libgrass_lidar.6.4.0.so
+%%GRASS_INST_DIR%%/lib/libgrass_linkm.6.4.0.so
+%%GRASS_INST_DIR%%/lib/libgrass_lrs.6.4.0.so
%%GRASS_INST_DIR%%/lib/libgrass_manage.a
-%%GRASS_INST_DIR%%/lib/libgrass_ogsf.%%VERSION%%.so
+%%GRASS_INST_DIR%%/lib/libgrass_nviz.so
+%%GRASS_INST_DIR%%/lib/libgrass_nviz.6.4.0.so
%%GRASS_INST_DIR%%/lib/libgrass_ogsf.so
-%%GRASS_INST_DIR%%/lib/libgrass_pngdriver.%%VERSION%%.so
+%%GRASS_INST_DIR%%/lib/libgrass_ogsf.6.4.0.so
%%GRASS_INST_DIR%%/lib/libgrass_pngdriver.so
-%%GRASS_INST_DIR%%/lib/libgrass_qtree.%%VERSION%%.so
+%%GRASS_INST_DIR%%/lib/libgrass_pngdriver.6.4.0.so
+%%GRASS_INST_DIR%%/lib/libgrass_psdriver.so
+%%GRASS_INST_DIR%%/lib/libgrass_psdriver.6.4.0.so
%%GRASS_INST_DIR%%/lib/libgrass_qtree.so
-%%GRASS_INST_DIR%%/lib/libgrass_raster.%%VERSION%%.so
+%%GRASS_INST_DIR%%/lib/libgrass_qtree.6.4.0.so
%%GRASS_INST_DIR%%/lib/libgrass_raster.so
-%%GRASS_INST_DIR%%/lib/libgrass_rowio.%%VERSION%%.so
+%%GRASS_INST_DIR%%/lib/libgrass_raster.6.4.0.so
+%%GRASS_INST_DIR%%/lib/libgrass_rli.6.4.0.so
%%GRASS_INST_DIR%%/lib/libgrass_rowio.so
-%%GRASS_INST_DIR%%/lib/libgrass_rtree.%%VERSION%%.so
+%%GRASS_INST_DIR%%/lib/libgrass_rowio.6.4.0.so
%%GRASS_INST_DIR%%/lib/libgrass_rtree.so
-%%GRASS_INST_DIR%%/lib/libgrass_segment.%%VERSION%%.so
+%%GRASS_INST_DIR%%/lib/libgrass_rtree.6.4.0.so
%%GRASS_INST_DIR%%/lib/libgrass_segment.so
-%%GRASS_INST_DIR%%/lib/libgrass_shape.%%VERSION%%.so
+%%GRASS_INST_DIR%%/lib/libgrass_segment.6.4.0.so
%%GRASS_INST_DIR%%/lib/libgrass_shape.so
-%%GRASS_INST_DIR%%/lib/libgrass_sim.%%VERSION%%.so
-%%GRASS_INST_DIR%%/lib/libgrass_sim.so
-%%GRASS_INST_DIR%%/lib/libgrass_sites.%%VERSION%%.so
+%%GRASS_INST_DIR%%/lib/libgrass_shape.6.4.0.so
%%GRASS_INST_DIR%%/lib/libgrass_sites.so
-%%GRASS_INST_DIR%%/lib/libgrass_sqlp.%%VERSION%%.so
+%%GRASS_INST_DIR%%/lib/libgrass_sim.6.4.0.so
+%%GRASS_INST_DIR%%/lib/libgrass_sites.6.4.0.so
%%GRASS_INST_DIR%%/lib/libgrass_sqlp.so
-%%GRASS_INST_DIR%%/lib/libgrass_symb.%%VERSION%%.so
+%%GRASS_INST_DIR%%/lib/libgrass_sqlp.6.4.0.so
+%%GRASS_INST_DIR%%/lib/libgrass_stats.so
+%%GRASS_INST_DIR%%/lib/libgrass_stats.6.4.0.so
%%GRASS_INST_DIR%%/lib/libgrass_symb.so
-%%GRASS_INST_DIR%%/lib/libgrass_trans.%%VERSION%%.so
+%%GRASS_INST_DIR%%/lib/libgrass_symb.6.4.0.so
%%GRASS_INST_DIR%%/lib/libgrass_trans.so
-%%GRASS_INST_DIR%%/lib/libgrass_vask.%%VERSION%%.so
+%%GRASS_INST_DIR%%/lib/libgrass_trans.6.4.0.so
%%GRASS_INST_DIR%%/lib/libgrass_vask.so
-%%GRASS_INST_DIR%%/lib/libgrass_vect.%%VERSION%%.so
%%GRASS_INST_DIR%%/lib/libgrass_vect.so
+%%GRASS_INST_DIR%%/lib/libgrass_vask.6.4.0.so
+%%GRASS_INST_DIR%%/lib/libgrass_vedit.so
+%%GRASS_INST_DIR%%/lib/libgrass_vect.6.4.0.so
+%%GRASS_INST_DIR%%/lib/libgrass_vedit.6.4.0.so
%%GRASS_INST_DIR%%/locale/ar/LC_MESSAGES/grasslibs.mo
%%GRASS_INST_DIR%%/locale/ar/LC_MESSAGES/grassmods.mo
%%GRASS_INST_DIR%%/locale/cs/LC_MESSAGES/grasslibs.mo
%%GRASS_INST_DIR%%/locale/cs/LC_MESSAGES/grassmods.mo
+%%GRASS_INST_DIR%%/locale/cs/LC_MESSAGES/grasswxpy.mo
%%GRASS_INST_DIR%%/locale/de/LC_MESSAGES/grasslibs.mo
%%GRASS_INST_DIR%%/locale/de/LC_MESSAGES/grassmods.mo
+%%GRASS_INST_DIR%%/locale/de/LC_MESSAGES/grasswxpy.mo
+%%GRASS_INST_DIR%%/locale/el/LC_MESSAGES/grasslibs.mo
+%%GRASS_INST_DIR%%/locale/el/LC_MESSAGES/grassmods.mo
+%%GRASS_INST_DIR%%/locale/el/LC_MESSAGES/grasswxpy.mo
%%GRASS_INST_DIR%%/locale/es/LC_MESSAGES/grasslibs.mo
%%GRASS_INST_DIR%%/locale/es/LC_MESSAGES/grassmods.mo
+%%GRASS_INST_DIR%%/locale/es/LC_MESSAGES/grasswxpy.mo
%%GRASS_INST_DIR%%/locale/fr/LC_MESSAGES/grasslibs.mo
%%GRASS_INST_DIR%%/locale/fr/LC_MESSAGES/grassmods.mo
+%%GRASS_INST_DIR%%/locale/fr/LC_MESSAGES/grasswxpy.mo
%%GRASS_INST_DIR%%/locale/hi/LC_MESSAGES/grasslibs.mo
%%GRASS_INST_DIR%%/locale/hi/LC_MESSAGES/grassmods.mo
+%%GRASS_INST_DIR%%/locale/id/LC_MESSAGES/grasswxpy.mo
%%GRASS_INST_DIR%%/locale/it/LC_MESSAGES/grasslibs.mo
%%GRASS_INST_DIR%%/locale/it/LC_MESSAGES/grassmods.mo
+%%GRASS_INST_DIR%%/locale/it/LC_MESSAGES/grasswxpy.mo
%%GRASS_INST_DIR%%/locale/ja/LC_MESSAGES/grasslibs.mo
%%GRASS_INST_DIR%%/locale/ja/LC_MESSAGES/grassmods.mo
+%%GRASS_INST_DIR%%/locale/ja/LC_MESSAGES/grasswxpy.mo
%%GRASS_INST_DIR%%/locale/ko/LC_MESSAGES/grasslibs.mo
%%GRASS_INST_DIR%%/locale/ko/LC_MESSAGES/grassmods.mo
%%GRASS_INST_DIR%%/locale/lv/LC_MESSAGES/grasslibs.mo
%%GRASS_INST_DIR%%/locale/lv/LC_MESSAGES/grassmods.mo
+%%GRASS_INST_DIR%%/locale/ml/LC_MESSAGES/grasslibs.mo
+%%GRASS_INST_DIR%%/locale/ml/LC_MESSAGES/grasswxpy.mo
%%GRASS_INST_DIR%%/locale/mr/LC_MESSAGES/grasslibs.mo
%%GRASS_INST_DIR%%/locale/mr/LC_MESSAGES/grassmods.mo
%%GRASS_INST_DIR%%/locale/pl/LC_MESSAGES/grasslibs.mo
%%GRASS_INST_DIR%%/locale/pl/LC_MESSAGES/grassmods.mo
+%%GRASS_INST_DIR%%/locale/pl/LC_MESSAGES/grasswxpy.mo
+%%GRASS_INST_DIR%%/locale/pt/LC_MESSAGES/grasslibs.mo
+%%GRASS_INST_DIR%%/locale/pt/LC_MESSAGES/grassmods.mo
+%%GRASS_INST_DIR%%/locale/pt/LC_MESSAGES/grasswxpy.mo
%%GRASS_INST_DIR%%/locale/pt_br/LC_MESSAGES/grasslibs.mo
%%GRASS_INST_DIR%%/locale/pt_br/LC_MESSAGES/grassmods.mo
%%GRASS_INST_DIR%%/locale/ru/LC_MESSAGES/grasslibs.mo
%%GRASS_INST_DIR%%/locale/ru/LC_MESSAGES/grassmods.mo
+%%GRASS_INST_DIR%%/locale/ru/LC_MESSAGES/grasswxpy.mo
%%GRASS_INST_DIR%%/locale/sl/LC_MESSAGES/grasslibs.mo
%%GRASS_INST_DIR%%/locale/sl/LC_MESSAGES/grassmods.mo
+%%GRASS_INST_DIR%%/locale/th/LC_MESSAGES/grasslibs.mo
+%%GRASS_INST_DIR%%/locale/th/LC_MESSAGES/grassmods.mo
+%%GRASS_INST_DIR%%/locale/th/LC_MESSAGES/grasswxpy.mo
%%GRASS_INST_DIR%%/locale/tr/LC_MESSAGES/grasslibs.mo
%%GRASS_INST_DIR%%/locale/tr/LC_MESSAGES/grassmods.mo
+%%GRASS_INST_DIR%%/locale/tr/LC_MESSAGES/grasswxpy.mo
%%GRASS_INST_DIR%%/locale/vi/LC_MESSAGES/grasslibs.mo
%%GRASS_INST_DIR%%/locale/vi/LC_MESSAGES/grassmods.mo
+%%GRASS_INST_DIR%%/locale/vi/LC_MESSAGES/grasswxpy.mo
%%GRASS_INST_DIR%%/locale/zh/LC_MESSAGES/grasslibs.mo
%%GRASS_INST_DIR%%/locale/zh/LC_MESSAGES/grassmods.mo
+%%GRASS_INST_DIR%%/locale/zh/LC_MESSAGES/grasswxpy.mo
%%GRASS_INST_DIR%%/man/man1/d.ask.1
+%%GRASS_INST_DIR%%/man/man1/databaseintro.1
%%GRASS_INST_DIR%%/man/man1/d.barscale.1
+%%GRASS_INST_DIR%%/man/man1/db.columns.1
+%%GRASS_INST_DIR%%/man/man1/db.connect.1
+%%GRASS_INST_DIR%%/man/man1/db.copy.1
+%%GRASS_INST_DIR%%/man/man1/db.describe.1
+%%GRASS_INST_DIR%%/man/man1/db.drivers.1
+%%GRASS_INST_DIR%%/man/man1/db.dropcol.1
+%%GRASS_INST_DIR%%/man/man1/db.droptable.1
+%%GRASS_INST_DIR%%/man/man1/db.execute.1
+%%GRASS_INST_DIR%%/man/man1/db.in.ogr.1
+%%GRASS_INST_DIR%%/man/man1/db.login.1
+%%GRASS_INST_DIR%%/man/man1/db.out.ogr.1
+%%GRASS_INST_DIR%%/man/man1/db.select.1
+%%GRASS_INST_DIR%%/man/man1/db.tables.1
+%%GRASS_INST_DIR%%/man/man1/db.test.1
%%GRASS_INST_DIR%%/man/man1/d.colorlist.1
%%GRASS_INST_DIR%%/man/man1/d.colors.1
%%GRASS_INST_DIR%%/man/man1/d.colortable.1
@@ -1729,6 +2516,7 @@ bin/grass%%VER%%-gem
%%GRASS_INST_DIR%%/man/man1/d.his.1
%%GRASS_INST_DIR%%/man/man1/d.histogram.1
%%GRASS_INST_DIR%%/man/man1/d.info.1
+%%GRASS_INST_DIR%%/man/man1/displaydrivers.1
%%GRASS_INST_DIR%%/man/man1/d.labels.1
%%GRASS_INST_DIR%%/man/man1/d.legend.1
%%GRASS_INST_DIR%%/man/man1/d.linegraph.1
@@ -1743,6 +2531,7 @@ bin/grass%%VER%%-gem
%%GRASS_INST_DIR%%/man/man1/d.out.file.1
%%GRASS_INST_DIR%%/man/man1/d.out.gpsdrive.1
%%GRASS_INST_DIR%%/man/man1/d.out.png.1
+%%GRASS_INST_DIR%%/man/man1/d.paint.labels.1
%%GRASS_INST_DIR%%/man/man1/d.path.1
%%GRASS_INST_DIR%%/man/man1/d.polar.1
%%GRASS_INST_DIR%%/man/man1/d.profile.1
@@ -1756,10 +2545,13 @@ bin/grass%%VER%%-gem
%%GRASS_INST_DIR%%/man/man1/d.rgb.1
%%GRASS_INST_DIR%%/man/man1/d.rhumbline.1
%%GRASS_INST_DIR%%/man/man1/d.save.1
+%%GRASS_INST_DIR%%/man/man1/d.shadedmap.1
%%GRASS_INST_DIR%%/man/man1/d.slide.show.1
%%GRASS_INST_DIR%%/man/man1/d.split.1
+%%GRASS_INST_DIR%%/man/man1/d.split.frame.1
%%GRASS_INST_DIR%%/man/man1/d.text.1
%%GRASS_INST_DIR%%/man/man1/d.text.freetype.1
+%%GRASS_INST_DIR%%/man/man1/d.thematic.area.1
%%GRASS_INST_DIR%%/man/man1/d.title.1
%%GRASS_INST_DIR%%/man/man1/d.vect.1
%%GRASS_INST_DIR%%/man/man1/d.vect.chart.1
@@ -1768,34 +2560,34 @@ bin/grass%%VER%%-gem
%%GRASS_INST_DIR%%/man/man1/d.what.vect.1
%%GRASS_INST_DIR%%/man/man1/d.where.1
%%GRASS_INST_DIR%%/man/man1/d.zoom.1
-%%GRASS_INST_DIR%%/man/man1/databaseintro.1
-%%GRASS_INST_DIR%%/man/man1/db.columns.1
-%%GRASS_INST_DIR%%/man/man1/db.connect.1
-%%GRASS_INST_DIR%%/man/man1/db.copy.1
-%%GRASS_INST_DIR%%/man/man1/db.describe.1
-%%GRASS_INST_DIR%%/man/man1/db.drivers.1
-%%GRASS_INST_DIR%%/man/man1/db.droptable.1
-%%GRASS_INST_DIR%%/man/man1/db.execute.1
-%%GRASS_INST_DIR%%/man/man1/db.login.1
-%%GRASS_INST_DIR%%/man/man1/db.select.1
-%%GRASS_INST_DIR%%/man/man1/db.tables.1
-%%GRASS_INST_DIR%%/man/man1/db.test.1
-%%GRASS_INST_DIR%%/man/man1/displaydrivers.1
%%GRASS_INST_DIR%%/man/man1/g.access.1
%%GRASS_INST_DIR%%/man/man1/g.ask.1
%%GRASS_INST_DIR%%/man/man1/g.copy.1
+%%GRASS_INST_DIR%%/man/man1/g.dirseps.1
+%%GRASS_INST_DIR%%/man/man1/g.extension.1
%%GRASS_INST_DIR%%/man/man1/g.filename.1
+%%GRASS_INST_DIR%%/man/man1/g.findetc.1
%%GRASS_INST_DIR%%/man/man1/g.findfile.1
%%GRASS_INST_DIR%%/man/man1/g.gisenv.1
+%%GRASS_INST_DIR%%/man/man1/g.gui.1
+%%GRASS_INST_DIR%%/man/man1/gis.m.1
%%GRASS_INST_DIR%%/man/man1/g.list.1
+%%GRASS_INST_DIR%%/man/man1/gm_animate.1
%%GRASS_INST_DIR%%/man/man1/g.manual.1
%%GRASS_INST_DIR%%/man/man1/g.mapset.1
%%GRASS_INST_DIR%%/man/man1/g.mapsets.1
+%%GRASS_INST_DIR%%/man/man1/g.message.1
+%%GRASS_INST_DIR%%/man/man1/gm_georect.1
+%%GRASS_INST_DIR%%/man/man1/g.mkfontcap.1
%%GRASS_INST_DIR%%/man/man1/g.mlist.1
+%%GRASS_INST_DIR%%/man/man1/gm_profile.1
%%GRASS_INST_DIR%%/man/man1/g.mremove.1
%%GRASS_INST_DIR%%/man/man1/g.parser.1
%%GRASS_INST_DIR%%/man/man1/g.pnmcomp.1
%%GRASS_INST_DIR%%/man/man1/g.proj.1
+%%GRASS_INST_DIR%%/man/man1/grass6.1
+%%GRASS_INST_DIR%%/man/man1/grass-dbf.1
+%%GRASS_INST_DIR%%/man/man1/grass-ogr.1
%%GRASS_INST_DIR%%/man/man1/g.region.1
%%GRASS_INST_DIR%%/man/man1/g.remove.1
%%GRASS_INST_DIR%%/man/man1/g.rename.1
@@ -1803,16 +2595,10 @@ bin/grass%%VER%%-gem
%%GRASS_INST_DIR%%/man/man1/g.tempfile.1
%%GRASS_INST_DIR%%/man/man1/g.transform.1
%%GRASS_INST_DIR%%/man/man1/g.version.1
-%%GRASS_INST_DIR%%/man/man1/gis.m.1
-%%GRASS_INST_DIR%%/man/man1/grass-dbf.1
-%%MYSQL%%%%GRASS_INST_DIR%%/man/man1/grass-mesql.1
-%%MYSQL%%%%GRASS_INST_DIR%%/man/man1/grass-mysql.1
-%%ODBC%%%%GRASS_INST_DIR%%/man/man1/grass-odbc.1
-%%PGSQL%%%%GRASS_INST_DIR%%/man/man1/grass-pg.1
-%%SQLITE%%%%GRASS_INST_DIR%%/man/man1/grass-sqlite.1
-%%GRASS_INST_DIR%%/man/man1/grass6.1
%%GRASS_INST_DIR%%/man/man1/helptext.1
+%%GRASS_INST_DIR%%/man/man1/htmlmapdriver.1
%%GRASS_INST_DIR%%/man/man1/i.ask.1
+%%GRASS_INST_DIR%%/man/man1/i.atcorr.1
%%GRASS_INST_DIR%%/man/man1/i.cca.1
%%GRASS_INST_DIR%%/man/man1/i.class.1
%%GRASS_INST_DIR%%/man/man1/i.cluster.1
@@ -1827,6 +2613,7 @@ bin/grass%%VER%%-gem
%%GRASS_INST_DIR%%/man/man1/i.image.mosaic.1
%%GRASS_INST_DIR%%/man/man1/i.in.spotvgt.1
%%GRASS_INST_DIR%%/man/man1/i.landsat.rgb.1
+%%GRASS_INST_DIR%%/man/man1/imageryintro.1
%%GRASS_INST_DIR%%/man/man1/i.maxlik.1
%%GRASS_INST_DIR%%/man/man1/i.oif.1
%%GRASS_INST_DIR%%/man/man1/i.ortho.photo.1
@@ -1840,25 +2627,30 @@ bin/grass%%VER%%-gem
%%GRASS_INST_DIR%%/man/man1/i.tasscap.1
%%GRASS_INST_DIR%%/man/man1/i.vpoints.1
%%GRASS_INST_DIR%%/man/man1/i.zc.1
-%%GRASS_INST_DIR%%/man/man1/imageryintro.1
%%GRASS_INST_DIR%%/man/man1/lrs.1
%%GRASS_INST_DIR%%/man/man1/m.cogo.1
-%%GRASS_INST_DIR%%/man/man1/m.proj.1
+%%GRASS_INST_DIR%%/man/man1/mkftcap.1
%%GRASS_INST_DIR%%/man/man1/modcats.1
%%GRASS_INST_DIR%%/man/man1/modcolr.1
%%GRASS_INST_DIR%%/man/man1/modhead.1
%%GRASS_INST_DIR%%/man/man1/modhist.1
+%%GRASS_INST_DIR%%/man/man1/m.proj.1
%%GRASS_INST_DIR%%/man/man1/nviz.1
-%%GRASS_INST_DIR%%/man/man1/photo.2image.1
-%%GRASS_INST_DIR%%/man/man1/photo.2target.1
+%%GRASS_INST_DIR%%/man/man1/nviz_cmd.1
%%GRASS_INST_DIR%%/man/man1/photo.camera.1
%%GRASS_INST_DIR%%/man/man1/photo.elev.1
+%%GRASS_INST_DIR%%/man/man1/photo.2image.1
%%GRASS_INST_DIR%%/man/man1/photo.init.1
%%GRASS_INST_DIR%%/man/man1/photo.rectify.1
%%GRASS_INST_DIR%%/man/man1/photo.target.1
+%%GRASS_INST_DIR%%/man/man1/photo.2target.1
%%GRASS_INST_DIR%%/man/man1/pngdriver.1
+%%GRASS_INST_DIR%%/man/man1/p.out.vrml.1
%%GRASS_INST_DIR%%/man/man1/projectionintro.1
+%%GRASS_INST_DIR%%/man/man1/psdriver.1
%%GRASS_INST_DIR%%/man/man1/ps.map.1
+%%GRASS_INST_DIR%%/man/man1/raster3dintro.1
+%%GRASS_INST_DIR%%/man/man1/rasterintro.1
%%GRASS_INST_DIR%%/man/man1/r.average.1
%%GRASS_INST_DIR%%/man/man1/r.basins.fill.1
%%GRASS_INST_DIR%%/man/man1/r.bilinear.1
@@ -1866,57 +2658,93 @@ bin/grass%%VER%%-gem
%%GRASS_INST_DIR%%/man/man1/r.blend.1
%%GRASS_INST_DIR%%/man/man1/r.buffer.1
%%GRASS_INST_DIR%%/man/man1/r.carve.1
+%%GRASS_INST_DIR%%/man/man1/r.category.1
%%GRASS_INST_DIR%%/man/man1/r.cats.1
%%GRASS_INST_DIR%%/man/man1/r.circle.1
%%GRASS_INST_DIR%%/man/man1/r.clump.1
%%GRASS_INST_DIR%%/man/man1/r.coin.1
%%GRASS_INST_DIR%%/man/man1/r.colors.1
+%%GRASS_INST_DIR%%/man/man1/r.colors.stddev.1
%%GRASS_INST_DIR%%/man/man1/r.composite.1
%%GRASS_INST_DIR%%/man/man1/r.compress.1
%%GRASS_INST_DIR%%/man/man1/r.contour.1
%%GRASS_INST_DIR%%/man/man1/r.cost.1
%%GRASS_INST_DIR%%/man/man1/r.covar.1
%%GRASS_INST_DIR%%/man/man1/r.cross.1
+%%GRASS_INST_DIR%%/man/man1/r3.cross.rast.1
%%GRASS_INST_DIR%%/man/man1/r.describe.1
%%GRASS_INST_DIR%%/man/man1/r.digit.1
%%GRASS_INST_DIR%%/man/man1/r.distance.1
%%GRASS_INST_DIR%%/man/man1/r.drain.1
+%%GRASS_INST_DIR%%/man/man1/r.external.1
%%GRASS_INST_DIR%%/man/man1/r.fill.dir.1
%%GRASS_INST_DIR%%/man/man1/r.fillnulls.1
%%GRASS_INST_DIR%%/man/man1/r.flow.1
%%GRASS_INST_DIR%%/man/man1/r.grow.1
+%%GRASS_INST_DIR%%/man/man1/r.grow.distance.1
+%%GRASS_INST_DIR%%/man/man1/r.gwflow.1
+%%GRASS_INST_DIR%%/man/man1/r3.gwflow.1
%%GRASS_INST_DIR%%/man/man1/r.his.1
+%%GRASS_INST_DIR%%/man/man1/r.horizon.1
%%GRASS_INST_DIR%%/man/man1/r.in.arc.1
%%GRASS_INST_DIR%%/man/man1/r.in.ascii.1
+%%GRASS_INST_DIR%%/man/man1/r3.in.ascii.1
%%GRASS_INST_DIR%%/man/man1/r.in.aster.1
%%GRASS_INST_DIR%%/man/man1/r.in.bin.1
+%%GRASS_INST_DIR%%/man/man1/r.info.1
+%%GRASS_INST_DIR%%/man/man1/r3.info.1
%%GRASS_INST_DIR%%/man/man1/r.in.gdal.1
%%GRASS_INST_DIR%%/man/man1/r.in.gridatb.1
%%GRASS_INST_DIR%%/man/man1/r.in.mat.1
%%GRASS_INST_DIR%%/man/man1/r.in.poly.1
%%GRASS_INST_DIR%%/man/man1/r.in.srtm.1
+%%GRASS_INST_DIR%%/man/man1/r3.in.v5d.1
%%GRASS_INST_DIR%%/man/man1/r.in.wms.1
%%GRASS_INST_DIR%%/man/man1/r.in.xyz.1
-%%GRASS_INST_DIR%%/man/man1/r.info.1
%%GRASS_INST_DIR%%/man/man1/r.kappa.1
%%GRASS_INST_DIR%%/man/man1/r.lake.1
%%GRASS_INST_DIR%%/man/man1/r.le.patch.1
%%GRASS_INST_DIR%%/man/man1/r.le.pixel.1
%%GRASS_INST_DIR%%/man/man1/r.le.setup.1
%%GRASS_INST_DIR%%/man/man1/r.le.trace.1
+%%GRASS_INST_DIR%%/man/man1/r.li.1
+%%GRASS_INST_DIR%%/man/man1/r.li.cwed.1
+%%GRASS_INST_DIR%%/man/man1/r.li.daemon.1
+%%GRASS_INST_DIR%%/man/man1/r.li.dominance.1
+%%GRASS_INST_DIR%%/man/man1/r.li.edgedensity.1
+%%GRASS_INST_DIR%%/man/man1/r.li.mpa.1
+%%GRASS_INST_DIR%%/man/man1/r.li.mps.1
+%%GRASS_INST_DIR%%/man/man1/r.li.padcv.1
+%%GRASS_INST_DIR%%/man/man1/r.li.padrange.1
+%%GRASS_INST_DIR%%/man/man1/r.li.padsd.1
+%%GRASS_INST_DIR%%/man/man1/r.li.patchdensity.1
+%%GRASS_INST_DIR%%/man/man1/r.li.patchnum.1
+%%GRASS_INST_DIR%%/man/man1/r.li.richness.1
+%%GRASS_INST_DIR%%/man/man1/r.li.setup.1
+%%GRASS_INST_DIR%%/man/man1/r.li.shannon.1
+%%GRASS_INST_DIR%%/man/man1/r.li.shape.1
+%%GRASS_INST_DIR%%/man/man1/r.li.simpson.1
%%GRASS_INST_DIR%%/man/man1/r.los.1
%%GRASS_INST_DIR%%/man/man1/r.mapcalc.1
+%%GRASS_INST_DIR%%/man/man1/r3.mapcalc.1
%%GRASS_INST_DIR%%/man/man1/r.mapcalculator.1
+%%GRASS_INST_DIR%%/man/man1/r3.mapcalculator.1
%%GRASS_INST_DIR%%/man/man1/r.mask.1
+%%GRASS_INST_DIR%%/man/man1/r3.mask.1
%%GRASS_INST_DIR%%/man/man1/r.median.1
%%GRASS_INST_DIR%%/man/man1/r.mfilter.1
+%%GRASS_INST_DIR%%/man/man1/r.mfilter.fp.1
+%%GRASS_INST_DIR%%/man/man1/r3.mkdspf.1
%%GRASS_INST_DIR%%/man/man1/r.mode.1
%%GRASS_INST_DIR%%/man/man1/r.neighbors.1
%%GRASS_INST_DIR%%/man/man1/r.null.1
+%%GRASS_INST_DIR%%/man/man1/r3.null.1
%%GRASS_INST_DIR%%/man/man1/r.out.arc.1
%%GRASS_INST_DIR%%/man/man1/r.out.ascii.1
+%%GRASS_INST_DIR%%/man/man1/r3.out.ascii.1
%%GRASS_INST_DIR%%/man/man1/r.out.bin.1
%%GRASS_INST_DIR%%/man/man1/r.out.gdal.1
+%%GRASS_INST_DIR%%/man/man1/r.out.gdal.sh.1
%%GRASS_INST_DIR%%/man/man1/r.out.gridatb.1
%%GRASS_INST_DIR%%/man/man1/r.out.mat.1
%%GRASS_INST_DIR%%/man/man1/r.out.mpeg.1
@@ -1925,14 +2753,18 @@ bin/grass%%VER%%-gem
%%GRASS_INST_DIR%%/man/man1/r.out.ppm.1
%%GRASS_INST_DIR%%/man/man1/r.out.ppm3.1
%%GRASS_INST_DIR%%/man/man1/r.out.tiff.1
+%%GRASS_INST_DIR%%/man/man1/r3.out.v5d.1
%%GRASS_INST_DIR%%/man/man1/r.out.vrml.1
+%%GRASS_INST_DIR%%/man/man1/r3.out.vtk.1
%%GRASS_INST_DIR%%/man/man1/r.out.vtk.1
+%%GRASS_INST_DIR%%/man/man1/r.out.xyz.1
%%GRASS_INST_DIR%%/man/man1/r.param.scale.1
%%GRASS_INST_DIR%%/man/man1/r.patch.1
%%GRASS_INST_DIR%%/man/man1/r.plane.1
%%GRASS_INST_DIR%%/man/man1/r.profile.1
%%GRASS_INST_DIR%%/man/man1/r.proj.1
%%GRASS_INST_DIR%%/man/man1/r.quant.1
+%%GRASS_INST_DIR%%/man/man1/r.quantile.1
%%GRASS_INST_DIR%%/man/man1/r.random.1
%%GRASS_INST_DIR%%/man/man1/r.random.cells.1
%%GRASS_INST_DIR%%/man/man1/r.random.surface.1
@@ -1942,8 +2774,10 @@ bin/grass%%VER%%-gem
%%GRASS_INST_DIR%%/man/man1/r.region.1
%%GRASS_INST_DIR%%/man/man1/r.regression.line.1
%%GRASS_INST_DIR%%/man/man1/r.report.1
-%%GRASS_INST_DIR%%/man/man1/r.resamp.rst.1
+%%GRASS_INST_DIR%%/man/man1/r.resamp.interp.1
%%GRASS_INST_DIR%%/man/man1/r.resample.1
+%%GRASS_INST_DIR%%/man/man1/r.resamp.rst.1
+%%GRASS_INST_DIR%%/man/man1/r.resamp.stats.1
%%GRASS_INST_DIR%%/man/man1/r.rescale.1
%%GRASS_INST_DIR%%/man/man1/r.rescale.eq.1
%%GRASS_INST_DIR%%/man/man1/r.ros.1
@@ -1956,10 +2790,12 @@ bin/grass%%VER%%-gem
%%GRASS_INST_DIR%%/man/man1/r.spreadpath.1
%%GRASS_INST_DIR%%/man/man1/r.statistics.1
%%GRASS_INST_DIR%%/man/man1/r.stats.1
+%%GRASS_INST_DIR%%/man/man1/r3.stats.1
%%GRASS_INST_DIR%%/man/man1/r.sum.1
%%GRASS_INST_DIR%%/man/man1/r.sun.1
%%GRASS_INST_DIR%%/man/man1/r.sunmask.1
%%GRASS_INST_DIR%%/man/man1/r.support.1
+%%GRASS_INST_DIR%%/man/man1/r.support.stats.1
%%GRASS_INST_DIR%%/man/man1/r.surf.area.1
%%GRASS_INST_DIR%%/man/man1/r.surf.contour.1
%%GRASS_INST_DIR%%/man/man1/r.surf.fractal.1
@@ -1972,68 +2808,68 @@ bin/grass%%VER%%-gem
%%GRASS_INST_DIR%%/man/man1/r.thin.1
%%GRASS_INST_DIR%%/man/man1/r.tileset.1
%%GRASS_INST_DIR%%/man/man1/r.timestamp.1
+%%GRASS_INST_DIR%%/man/man1/r3.timestamp.1
+%%GRASS_INST_DIR%%/man/man1/r.topidx.1
+%%GRASS_INST_DIR%%/man/man1/r.topmodel.1
+%%GRASS_INST_DIR%%/man/man1/r3.to.rast.1
%%GRASS_INST_DIR%%/man/man1/r.to.rast3.1
%%GRASS_INST_DIR%%/man/man1/r.to.rast3elev.1
%%GRASS_INST_DIR%%/man/man1/r.to.vect.1
-%%GRASS_INST_DIR%%/man/man1/r.topidx.1
-%%GRASS_INST_DIR%%/man/man1/r.topmodel.1
%%GRASS_INST_DIR%%/man/man1/r.transect.1
%%GRASS_INST_DIR%%/man/man1/r.univar.1
+%%GRASS_INST_DIR%%/man/man1/r3.univar.1
%%GRASS_INST_DIR%%/man/man1/r.univar.sh.1
%%GRASS_INST_DIR%%/man/man1/r.volume.1
%%GRASS_INST_DIR%%/man/man1/r.walk.1
%%GRASS_INST_DIR%%/man/man1/r.water.outlet.1
%%GRASS_INST_DIR%%/man/man1/r.watershed.1
+%%GRASS_INST_DIR%%/man/man1/r.watershed.ram.1
+%%GRASS_INST_DIR%%/man/man1/r.watershed.seg.1
%%GRASS_INST_DIR%%/man/man1/r.what.1
-%%GRASS_INST_DIR%%/man/man1/r3.cross.rast.1
-%%GRASS_INST_DIR%%/man/man1/r3.in.ascii.1
-%%GRASS_INST_DIR%%/man/man1/r3.in.v5d.1
-%%GRASS_INST_DIR%%/man/man1/r3.info.1
-%%GRASS_INST_DIR%%/man/man1/r3.mapcalc.1
-%%GRASS_INST_DIR%%/man/man1/r3.mapcalculator.1
-%%GRASS_INST_DIR%%/man/man1/r3.mask.1
-%%GRASS_INST_DIR%%/man/man1/r3.mkdspf.1
-%%GRASS_INST_DIR%%/man/man1/r3.null.1
-%%GRASS_INST_DIR%%/man/man1/r3.out.ascii.1
-%%GRASS_INST_DIR%%/man/man1/r3.out.v5d.1
-%%GRASS_INST_DIR%%/man/man1/r3.out.vtk.1
-%%GRASS_INST_DIR%%/man/man1/r3.timestamp.1
-%%GRASS_INST_DIR%%/man/man1/r3.to.rast.1
-%%GRASS_INST_DIR%%/man/man1/ram.1
-%%GRASS_INST_DIR%%/man/man1/raster3dintro.1
-%%GRASS_INST_DIR%%/man/man1/rasterintro.1
-%%GRASS_INST_DIR%%/man/man1/seg.1
+%%GRASS_INST_DIR%%/man/man1/r.what.color.1
%%GRASS_INST_DIR%%/man/man1/sql.1
+%%GRASS_INST_DIR%%/man/man1/variables.1
%%GRASS_INST_DIR%%/man/man1/v.buffer.1
%%GRASS_INST_DIR%%/man/man1/v.build.1
%%GRASS_INST_DIR%%/man/man1/v.build.all.1
%%GRASS_INST_DIR%%/man/man1/v.build.polylines.1
%%GRASS_INST_DIR%%/man/man1/v.category.1
%%GRASS_INST_DIR%%/man/man1/v.centroids.1
+%%GRASS_INST_DIR%%/man/man1/v.class.1
%%GRASS_INST_DIR%%/man/man1/v.clean.1
+%%GRASS_INST_DIR%%/man/man1/v.colors.1
%%GRASS_INST_DIR%%/man/man1/v.convert.1
%%GRASS_INST_DIR%%/man/man1/v.convert.all.1
%%GRASS_INST_DIR%%/man/man1/v.db.addcol.1
%%GRASS_INST_DIR%%/man/man1/v.db.addtable.1
%%GRASS_INST_DIR%%/man/man1/v.db.connect.1
+%%GRASS_INST_DIR%%/man/man1/v.db.dropcol.1
%%GRASS_INST_DIR%%/man/man1/v.db.droptable.1
+%%GRASS_INST_DIR%%/man/man1/v.db.join.1
%%GRASS_INST_DIR%%/man/man1/v.db.reconnect.all.1
+%%GRASS_INST_DIR%%/man/man1/v.db.renamecol.1
%%GRASS_INST_DIR%%/man/man1/v.db.select.1
+%%GRASS_INST_DIR%%/man/man1/v.db.univar.1
%%GRASS_INST_DIR%%/man/man1/v.db.update.1
%%GRASS_INST_DIR%%/man/man1/v.delaunay.1
%%GRASS_INST_DIR%%/man/man1/v.digit.1
%%GRASS_INST_DIR%%/man/man1/v.dissolve.1
%%GRASS_INST_DIR%%/man/man1/v.distance.1
%%GRASS_INST_DIR%%/man/man1/v.drape.1
+%%GRASS_INST_DIR%%/man/man1/vectorintro.1
+%%GRASS_INST_DIR%%/man/man1/v.edit.1
%%GRASS_INST_DIR%%/man/man1/v.external.1
%%GRASS_INST_DIR%%/man/man1/v.extract.1
%%GRASS_INST_DIR%%/man/man1/v.extrude.1
+%%GRASS_INST_DIR%%/man/man1/v.generalize.1
%%GRASS_INST_DIR%%/man/man1/v.hull.1
%%GRASS_INST_DIR%%/man/man1/v.in.ascii.1
%%GRASS_INST_DIR%%/man/man1/v.in.db.1
%%GRASS_INST_DIR%%/man/man1/v.in.dxf.1
%%GRASS_INST_DIR%%/man/man1/v.in.e00.1
+%%GRASS_INST_DIR%%/man/man1/v.info.1
%%GRASS_INST_DIR%%/man/man1/v.in.garmin.1
+%%GRASS_INST_DIR%%/man/man1/v.in.geonames.1
%%GRASS_INST_DIR%%/man/man1/v.in.gns.1
%%GRASS_INST_DIR%%/man/man1/v.in.gpsbabel.1
%%GRASS_INST_DIR%%/man/man1/v.in.mapgen.1
@@ -2041,10 +2877,11 @@ bin/grass%%VER%%-gem
%%GRASS_INST_DIR%%/man/man1/v.in.region.1
%%GRASS_INST_DIR%%/man/man1/v.in.sites.1
%%GRASS_INST_DIR%%/man/man1/v.in.sites.all.1
-%%GRASS_INST_DIR%%/man/man1/v.info.1
+%%GRASS_INST_DIR%%/man/man1/v.in.wfs.1
%%GRASS_INST_DIR%%/man/man1/v.kcv.1
%%GRASS_INST_DIR%%/man/man1/v.kernel.1
%%GRASS_INST_DIR%%/man/man1/v.label.1
+%%GRASS_INST_DIR%%/man/man1/v.label.sa.1
%%GRASS_INST_DIR%%/man/man1/v.lidar.correction.1
%%GRASS_INST_DIR%%/man/man1/v.lidar.edgedetection.1
%%GRASS_INST_DIR%%/man/man1/v.lidar.growing.1
@@ -2060,13 +2897,16 @@ bin/grass%%VER%%-gem
%%GRASS_INST_DIR%%/man/man1/v.net.path.1
%%GRASS_INST_DIR%%/man/man1/v.net.salesman.1
%%GRASS_INST_DIR%%/man/man1/v.net.steiner.1
+%%GRASS_INST_DIR%%/man/man1/v.net.visibility.1
%%GRASS_INST_DIR%%/man/man1/v.normal.1
%%GRASS_INST_DIR%%/man/man1/v.out.ascii.1
%%GRASS_INST_DIR%%/man/man1/v.out.dxf.1
+%%GRASS_INST_DIR%%/man/man1/v.out.gpsbabel.1
+%%GRASS_INST_DIR%%/man/man1/v.outlier.1
%%GRASS_INST_DIR%%/man/man1/v.out.ogr.1
%%GRASS_INST_DIR%%/man/man1/v.out.pov.1
+%%GRASS_INST_DIR%%/man/man1/v.out.svg.1
%%GRASS_INST_DIR%%/man/man1/v.out.vtk.1
-%%GRASS_INST_DIR%%/man/man1/v.outlier.1
%%GRASS_INST_DIR%%/man/man1/v.overlay.1
%%GRASS_INST_DIR%%/man/man1/v.parallel.1
%%GRASS_INST_DIR%%/man/man1/v.patch.1
@@ -2081,9 +2921,11 @@ bin/grass%%VER%%-gem
%%GRASS_INST_DIR%%/man/man1/v.segment.1
%%GRASS_INST_DIR%%/man/man1/v.select.1
%%GRASS_INST_DIR%%/man/man1/v.split.1
+%%GRASS_INST_DIR%%/man/man1/v.support.1
%%GRASS_INST_DIR%%/man/man1/v.surf.bspline.1
%%GRASS_INST_DIR%%/man/man1/v.surf.idw.1
%%GRASS_INST_DIR%%/man/man1/v.surf.rst.1
+%%GRASS_INST_DIR%%/man/man1/v.to.3d.1
%%GRASS_INST_DIR%%/man/man1/v.to.db.1
%%GRASS_INST_DIR%%/man/man1/v.to.points.1
%%GRASS_INST_DIR%%/man/man1/v.to.rast.1
@@ -2097,28 +2939,40 @@ bin/grass%%VER%%-gem
%%GRASS_INST_DIR%%/man/man1/v.what.1
%%GRASS_INST_DIR%%/man/man1/v.what.rast.1
%%GRASS_INST_DIR%%/man/man1/v.what.vect.1
-%%GRASS_INST_DIR%%/man/man1/variables.1
-%%GRASS_INST_DIR%%/man/man1/vectorintro.1
+%%GRASS_INST_DIR%%/man/man1/wxGUI.1
+%%GRASS_INST_DIR%%/man/man1/wxGUI.Attribute_Table_Manager.1
+%%GRASS_INST_DIR%%/man/man1/wxGUI.Icons.1
+%%GRASS_INST_DIR%%/man/man1/wxGUI.Nviz.1
+%%GRASS_INST_DIR%%/man/man1/wxGUI.Vector_Digitizing_Tool.1
%%GRASS_INST_DIR%%/man/man1/xdriver.1
+%%GRASS_INST_DIR%%/scripts/db.dropcol
+%%GRASS_INST_DIR%%/scripts/db.droptable
+%%GRASS_INST_DIR%%/scripts/db.in.ogr
+%%GRASS_INST_DIR%%/scripts/db.out.ogr
+%%GRASS_INST_DIR%%/scripts/db.test
%%GRASS_INST_DIR%%/scripts/d.correlate
+%%GRASS_INST_DIR%%/scripts/d.font.freetype
%%GRASS_INST_DIR%%/scripts/d.m
%%GRASS_INST_DIR%%/scripts/d.monsize
%%GRASS_INST_DIR%%/scripts/d.mvmon
%%GRASS_INST_DIR%%/scripts/d.out.file
%%GRASS_INST_DIR%%/scripts/d.out.gpsdrive
%%GRASS_INST_DIR%%/scripts/d.out.png
+%%GRASS_INST_DIR%%/scripts/d.paint.labels
%%GRASS_INST_DIR%%/scripts/d.polar
+%%GRASS_INST_DIR%%/scripts/d.rast.edit
%%GRASS_INST_DIR%%/scripts/d.rast.leg
%%GRASS_INST_DIR%%/scripts/d.redraw
%%GRASS_INST_DIR%%/scripts/d.resize
+%%GRASS_INST_DIR%%/scripts/d.shadedmap
%%GRASS_INST_DIR%%/scripts/d.slide.show
%%GRASS_INST_DIR%%/scripts/d.split
+%%GRASS_INST_DIR%%/scripts/d.split.frame
+%%GRASS_INST_DIR%%/scripts/d.text.freetype
%%GRASS_INST_DIR%%/scripts/d.vect.thematic
-%%GRASS_INST_DIR%%/scripts/db.test
-%%GRASS_INST_DIR%%/scripts/g.manual
-%%GRASS_INST_DIR%%/scripts/g.mlist
-%%GRASS_INST_DIR%%/scripts/g.mremove
+%%GRASS_INST_DIR%%/scripts/g.extension
%%GRASS_INST_DIR%%/scripts/gis.m
+%%GRASS_INST_DIR%%/scripts/g.manual
%%GRASS_INST_DIR%%/scripts/i.fusion.brovey
%%GRASS_INST_DIR%%/scripts/i.image.mosaic
%%GRASS_INST_DIR%%/scripts/i.in.spotvgt
@@ -2126,137 +2980,182 @@ bin/grass%%VER%%-gem
%%GRASS_INST_DIR%%/scripts/i.oif
%%GRASS_INST_DIR%%/scripts/i.spectral
%%GRASS_INST_DIR%%/scripts/i.tasscap
+%%GRASS_INST_DIR%%/scripts/mkftcap
%%GRASS_INST_DIR%%/scripts/m.proj
+%%GRASS_INST_DIR%%/scripts/p.out.vrml
%%GRASS_INST_DIR%%/scripts/r.blend
+%%GRASS_INST_DIR%%/scripts/r.cats
+%%GRASS_INST_DIR%%/scripts/r.colors.stddev
%%GRASS_INST_DIR%%/scripts/r.fillnulls
%%GRASS_INST_DIR%%/scripts/r.in.aster
%%GRASS_INST_DIR%%/scripts/r.in.srtm
%%GRASS_INST_DIR%%/scripts/r.in.wms
+%%GRASS_INST_DIR%%/scripts/r.li.setup
%%GRASS_INST_DIR%%/scripts/r.mapcalculator
+%%GRASS_INST_DIR%%/scripts/r3.mapcalculator
%%GRASS_INST_DIR%%/scripts/r.mask
-%%GRASS_INST_DIR%%/scripts/r.out.gdal
+%%GRASS_INST_DIR%%/scripts/r.out.gdal.sh
+%%GRASS_INST_DIR%%/scripts/r.out.xyz
%%GRASS_INST_DIR%%/scripts/r.plane
%%GRASS_INST_DIR%%/scripts/r.reclass.area
%%GRASS_INST_DIR%%/scripts/r.regression.line
%%GRASS_INST_DIR%%/scripts/r.shaded.relief
%%GRASS_INST_DIR%%/scripts/r.tileset
%%GRASS_INST_DIR%%/scripts/r.univar.sh
-%%GRASS_INST_DIR%%/scripts/r3.mapcalculator
%%GRASS_INST_DIR%%/scripts/v.build.all
%%GRASS_INST_DIR%%/scripts/v.centroids
+%%GRASS_INST_DIR%%/scripts/v.colors
%%GRASS_INST_DIR%%/scripts/v.convert.all
%%GRASS_INST_DIR%%/scripts/v.db.addcol
%%GRASS_INST_DIR%%/scripts/v.db.addtable
+%%GRASS_INST_DIR%%/scripts/v.db.dropcol
%%GRASS_INST_DIR%%/scripts/v.db.droptable
+%%GRASS_INST_DIR%%/scripts/v.db.join
%%GRASS_INST_DIR%%/scripts/v.db.reconnect.all
+%%GRASS_INST_DIR%%/scripts/v.db.renamecol
+%%GRASS_INST_DIR%%/scripts/v.db.univar
%%GRASS_INST_DIR%%/scripts/v.db.update
%%GRASS_INST_DIR%%/scripts/v.dissolve
%%GRASS_INST_DIR%%/scripts/v.in.e00
%%GRASS_INST_DIR%%/scripts/v.in.garmin
+%%GRASS_INST_DIR%%/scripts/v.in.geonames
%%GRASS_INST_DIR%%/scripts/v.in.gns
%%GRASS_INST_DIR%%/scripts/v.in.gpsbabel
%%GRASS_INST_DIR%%/scripts/v.in.mapgen
%%GRASS_INST_DIR%%/scripts/v.in.sites.all
+%%GRASS_INST_DIR%%/scripts/v.in.wfs
+%%GRASS_INST_DIR%%/scripts/v.out.gpsbabel
%%GRASS_INST_DIR%%/scripts/v.rast.stats
%%GRASS_INST_DIR%%/scripts/v.report
%%GRASS_INST_DIR%%/scripts/v.univar.sh
%%GRASS_INST_DIR%%/scripts/v.what.vect
-@dirrm %%GRASS_INST_DIR%%/scripts
-@dirrm %%GRASS_INST_DIR%%/man/man1
-@dirrm %%GRASS_INST_DIR%%/man
-@dirrm %%GRASS_INST_DIR%%/locale/zh/LC_MESSAGES
-@dirrm %%GRASS_INST_DIR%%/locale/zh
-@dirrm %%GRASS_INST_DIR%%/locale/vi/LC_MESSAGES
-@dirrm %%GRASS_INST_DIR%%/locale/vi
-@dirrm %%GRASS_INST_DIR%%/locale/tr/LC_MESSAGES
-@dirrm %%GRASS_INST_DIR%%/locale/tr
-@dirrm %%GRASS_INST_DIR%%/locale/sl/LC_MESSAGES
-@dirrm %%GRASS_INST_DIR%%/locale/sl
-@dirrm %%GRASS_INST_DIR%%/locale/ru/LC_MESSAGES
-@dirrm %%GRASS_INST_DIR%%/locale/ru
-@dirrm %%GRASS_INST_DIR%%/locale/pt_br/LC_MESSAGES
-@dirrm %%GRASS_INST_DIR%%/locale/pt_br
-@dirrm %%GRASS_INST_DIR%%/locale/pl/LC_MESSAGES
-@dirrm %%GRASS_INST_DIR%%/locale/pl
-@dirrm %%GRASS_INST_DIR%%/locale/mr/LC_MESSAGES
-@dirrm %%GRASS_INST_DIR%%/locale/mr
-@dirrm %%GRASS_INST_DIR%%/locale/lv/LC_MESSAGES
-@dirrm %%GRASS_INST_DIR%%/locale/lv
-@dirrm %%GRASS_INST_DIR%%/locale/ko/LC_MESSAGES
-@dirrm %%GRASS_INST_DIR%%/locale/ko
-@dirrm %%GRASS_INST_DIR%%/locale/ja/LC_MESSAGES
-@dirrm %%GRASS_INST_DIR%%/locale/ja
-@dirrm %%GRASS_INST_DIR%%/locale/it/LC_MESSAGES
-@dirrm %%GRASS_INST_DIR%%/locale/it
-@dirrm %%GRASS_INST_DIR%%/locale/hi/LC_MESSAGES
-@dirrm %%GRASS_INST_DIR%%/locale/hi
-@dirrm %%GRASS_INST_DIR%%/locale/fr/LC_MESSAGES
-@dirrm %%GRASS_INST_DIR%%/locale/fr
-@dirrm %%GRASS_INST_DIR%%/locale/es/LC_MESSAGES
-@dirrm %%GRASS_INST_DIR%%/locale/es
-@dirrm %%GRASS_INST_DIR%%/locale/de/LC_MESSAGES
-@dirrm %%GRASS_INST_DIR%%/locale/de
-@dirrm %%GRASS_INST_DIR%%/locale/cs/LC_MESSAGES
-@dirrm %%GRASS_INST_DIR%%/locale/cs
-@dirrm %%GRASS_INST_DIR%%/locale/ar/LC_MESSAGES
-@dirrm %%GRASS_INST_DIR%%/locale/ar
-@dirrm %%GRASS_INST_DIR%%/locale/am/LC_MESSAGES
-@dirrm %%GRASS_INST_DIR%%/locale/am
-@dirrm %%GRASS_INST_DIR%%/locale
-@dirrm %%GRASS_INST_DIR%%/lib
-@dirrm %%GRASS_INST_DIR%%/include/grass/vect
-@dirrm %%GRASS_INST_DIR%%/include/grass/rtree
+%%GRASS_INST_DIR%%/tools/mkhtml.sh
+bin/gem64
+bin/grass64
+@dirrm %%GRASS_INST_DIR%%/bin
+@dirrm %%GRASS_INST_DIR%%/fonts
@dirrm %%GRASS_INST_DIR%%/include/grass/dgl
+@dirrm %%GRASS_INST_DIR%%/include/grass/iostream
+@dirrm %%GRASS_INST_DIR%%/include/grass/rtree
+@dirrm %%GRASS_INST_DIR%%/include/grass/vect
@dirrm %%GRASS_INST_DIR%%/include/grass
+@dirrm %%GRASS_INST_DIR%%/include/Make
@dirrm %%GRASS_INST_DIR%%/include
-@dirrm %%GRASS_INST_DIR%%/fonts
-@dirrm %%GRASS_INST_DIR%%/etc/water
-@dirrm %%GRASS_INST_DIR%%/etc/v.digit
-@dirrm %%GRASS_INST_DIR%%/etc/symbol/extra
-@dirrm %%GRASS_INST_DIR%%/etc/symbol/demo
-@dirrm %%GRASS_INST_DIR%%/etc/symbol/basic
-@dirrm %%GRASS_INST_DIR%%/etc/symbol
-@dirrm %%GRASS_INST_DIR%%/etc/support
-@dirrm %%GRASS_INST_DIR%%/etc/r.in.wms
-@dirrm %%GRASS_INST_DIR%%/etc/paint/patterns
-@dirrm %%GRASS_INST_DIR%%/etc/paint
-@dirrm %%GRASS_INST_DIR%%/etc/ogr_csv
-@dirrm %%GRASS_INST_DIR%%/etc/nviz2.2/scripts
+@dirrm %%GRASS_INST_DIR%%/docs/html/icons/grass/vdigit
+@dirrm %%GRASS_INST_DIR%%/docs/html/icons/grass
+@dirrm %%GRASS_INST_DIR%%/docs/html/icons/silk
+@dirrm %%GRASS_INST_DIR%%/docs/html/icons/grass2
+@dirrm %%GRASS_INST_DIR%%/docs/html/icons
+@dirrm %%GRASS_INST_DIR%%/docs/html/nviz/img/nv
+@dirrm %%GRASS_INST_DIR%%/docs/html/nviz/img
+@dirrm %%GRASS_INST_DIR%%/docs/html/nviz/nvimg/panel
+@dirrm %%GRASS_INST_DIR%%/docs/html/nviz/nvimg/work
+@dirrm %%GRASS_INST_DIR%%/docs/html/nviz/nvimg
+@dirrm %%GRASS_INST_DIR%%/docs/html/nviz
+@dirrm %%GRASS_INST_DIR%%/docs/html
+@dirrm %%GRASS_INST_DIR%%/docs
+@dirrm %%GRASS_INST_DIR%%/driver/db
+@dirrm %%GRASS_INST_DIR%%/driver
+@dirrm %%GRASS_INST_DIR%%/etc/colors
+@dirrm %%GRASS_INST_DIR%%/etc/gtcltk
+@dirrm %%GRASS_INST_DIR%%/etc/form
+@dirrm %%GRASS_INST_DIR%%/etc/nad
+@dirrm %%GRASS_INST_DIR%%/etc/db.test
+@dirrm %%GRASS_INST_DIR%%/etc/dm/script
+@dirrm %%GRASS_INST_DIR%%/etc/dm
+@dirrm %%GRASS_INST_DIR%%/etc/gem/skeleton
+@dirrm %%GRASS_INST_DIR%%/etc/gem
+@dirrm %%GRASS_INST_DIR%%/etc/msgs
@dirrm %%GRASS_INST_DIR%%/etc/nviz2.2/bitmaps/flythrough
@dirrm %%GRASS_INST_DIR%%/etc/nviz2.2/bitmaps
+@dirrm %%GRASS_INST_DIR%%/etc/nviz2.2/scripts
@dirrm %%GRASS_INST_DIR%%/etc/nviz2.2
-@dirrm %%GRASS_INST_DIR%%/etc/nad
-@dirrm %%GRASS_INST_DIR%%/etc/msgs
+@dirrm %%GRASS_INST_DIR%%/etc/r.li.setup
+@dirrm %%GRASS_INST_DIR%%/etc/d.polar
+@dirrm %%GRASS_INST_DIR%%/etc/paint/decorations
+@dirrm %%GRASS_INST_DIR%%/etc/paint/patterns
+@dirrm %%GRASS_INST_DIR%%/etc/paint
+@dirrm %%GRASS_INST_DIR%%/etc/gm
@dirrm %%GRASS_INST_DIR%%/etc/lister
-@dirrm %%GRASS_INST_DIR%%/etc/i.oif
-@dirrm %%GRASS_INST_DIR%%/etc/gui/menus
+@dirrm %%GRASS_INST_DIR%%/etc/python/grass/script
+@dirrm %%GRASS_INST_DIR%%/etc/python/grass
+@dirrm %%GRASS_INST_DIR%%/etc/python
+@dirrm %%GRASS_INST_DIR%%/etc/gui/scripts
+@dirrm %%GRASS_INST_DIR%%/etc/gui/images
+@dirrm %%GRASS_INST_DIR%%/etc/gui/icons/grass2
+@dirrm %%GRASS_INST_DIR%%/etc/gui/icons/silk
+@dirrm %%GRASS_INST_DIR%%/etc/gui/icons/grass/vdigit
+@dirrm %%GRASS_INST_DIR%%/etc/gui/icons/grass
@dirrm %%GRASS_INST_DIR%%/etc/gui/icons
@dirrm %%GRASS_INST_DIR%%/etc/gui
-@dirrm %%GRASS_INST_DIR%%/etc/gtcltk
-@dirrm %%GRASS_INST_DIR%%/etc/gm/script
-@dirrm %%GRASS_INST_DIR%%/etc/gm
-@dirrm %%GRASS_INST_DIR%%/etc/gem/skeleton
-@dirrm %%GRASS_INST_DIR%%/etc/gem
-@dirrm %%GRASS_INST_DIR%%/etc/form
-@dirrm %%GRASS_INST_DIR%%/etc/dm/script
-@dirrm %%GRASS_INST_DIR%%/etc/dm
-@dirrm %%GRASS_INST_DIR%%/etc/db.test
-@dirrm %%GRASS_INST_DIR%%/etc/d.polar
-@dirrm %%GRASS_INST_DIR%%/etc/colors
+@dirrm %%GRASS_INST_DIR%%/etc/ogr_csv
+@dirrm %%GRASS_INST_DIR%%/etc/v.digit
+@dirrm %%GRASS_INST_DIR%%/etc/r.in.wms
+@dirrm %%GRASS_INST_DIR%%/etc/i.oif
+@dirrm %%GRASS_INST_DIR%%/etc/symbol/geology
+@dirrm %%GRASS_INST_DIR%%/etc/symbol/extra
+@dirrm %%GRASS_INST_DIR%%/etc/symbol/basic
+@dirrm %%GRASS_INST_DIR%%/etc/symbol/demo
+@dirrm %%GRASS_INST_DIR%%/etc/symbol
+@dirrm %%GRASS_INST_DIR%%/etc/wxpython/xml
+@dirrm %%GRASS_INST_DIR%%/etc/wxpython/scripts
+@dirrm %%GRASS_INST_DIR%%/etc/wxpython/images
+@dirrm %%GRASS_INST_DIR%%/etc/wxpython/icons/silk
+@dirrm %%GRASS_INST_DIR%%/etc/wxpython/icons
+@dirrm %%GRASS_INST_DIR%%/etc/wxpython/gui_modules
+@dirrm %%GRASS_INST_DIR%%/etc/wxpython/compat
+@dirrm %%GRASS_INST_DIR%%/etc/wxpython
@dirrm %%GRASS_INST_DIR%%/etc
-@dirrm %%GRASS_INST_DIR%%/driver/db
-@dirrm %%GRASS_INST_DIR%%/driver
-@dirrm %%GRASS_INST_DIR%%/docs/html/nviz/nvimg/work
-@dirrm %%GRASS_INST_DIR%%/docs/html/nviz/nvimg/panel
-@dirrm %%GRASS_INST_DIR%%/docs/html/nviz/nvimg
-@dirrm %%GRASS_INST_DIR%%/docs/html/nviz/img/nv
-@dirrm %%GRASS_INST_DIR%%/docs/html/nviz/img
-@dirrm %%GRASS_INST_DIR%%/docs/html/nviz
-@dirrm %%GRASS_INST_DIR%%/docs/html/icons
-@dirrm %%GRASS_INST_DIR%%/docs/html
-@dirrm %%GRASS_INST_DIR%%/docs
-@dirrm %%GRASS_INST_DIR%%/bwidget/lang
-@dirrm %%GRASS_INST_DIR%%/bwidget/images
-@dirrm %%GRASS_INST_DIR%%/bwidget
-@dirrm %%GRASS_INST_DIR%%/bin
+@dirrm %%GRASS_INST_DIR%%/lib
+@dirrm %%GRASS_INST_DIR%%/locale/ar/LC_MESSAGES
+@dirrm %%GRASS_INST_DIR%%/locale/ar
+@dirrm %%GRASS_INST_DIR%%/locale/cs/LC_MESSAGES
+@dirrm %%GRASS_INST_DIR%%/locale/cs
+@dirrm %%GRASS_INST_DIR%%/locale/de/LC_MESSAGES
+@dirrm %%GRASS_INST_DIR%%/locale/de
+@dirrm %%GRASS_INST_DIR%%/locale/el/LC_MESSAGES
+@dirrm %%GRASS_INST_DIR%%/locale/el
+@dirrm %%GRASS_INST_DIR%%/locale/es/LC_MESSAGES
+@dirrm %%GRASS_INST_DIR%%/locale/es
+@dirrm %%GRASS_INST_DIR%%/locale/fr/LC_MESSAGES
+@dirrm %%GRASS_INST_DIR%%/locale/fr
+@dirrm %%GRASS_INST_DIR%%/locale/hi/LC_MESSAGES
+@dirrm %%GRASS_INST_DIR%%/locale/hi
+@dirrm %%GRASS_INST_DIR%%/locale/id/LC_MESSAGES
+@dirrm %%GRASS_INST_DIR%%/locale/id
+@dirrm %%GRASS_INST_DIR%%/locale/it/LC_MESSAGES
+@dirrm %%GRASS_INST_DIR%%/locale/it
+@dirrm %%GRASS_INST_DIR%%/locale/ja/LC_MESSAGES
+@dirrm %%GRASS_INST_DIR%%/locale/ja
+@dirrm %%GRASS_INST_DIR%%/locale/ko/LC_MESSAGES
+@dirrm %%GRASS_INST_DIR%%/locale/ko
+@dirrm %%GRASS_INST_DIR%%/locale/lv/LC_MESSAGES
+@dirrm %%GRASS_INST_DIR%%/locale/lv
+@dirrm %%GRASS_INST_DIR%%/locale/mr/LC_MESSAGES
+@dirrm %%GRASS_INST_DIR%%/locale/mr
+@dirrm %%GRASS_INST_DIR%%/locale/ml/LC_MESSAGES
+@dirrm %%GRASS_INST_DIR%%/locale/ml
+@dirrm %%GRASS_INST_DIR%%/locale/pl/LC_MESSAGES
+@dirrm %%GRASS_INST_DIR%%/locale/pl
+@dirrm %%GRASS_INST_DIR%%/locale/pt/LC_MESSAGES
+@dirrm %%GRASS_INST_DIR%%/locale/pt
+@dirrm %%GRASS_INST_DIR%%/locale/pt_br/LC_MESSAGES
+@dirrm %%GRASS_INST_DIR%%/locale/pt_br
+@dirrm %%GRASS_INST_DIR%%/locale/ru/LC_MESSAGES
+@dirrm %%GRASS_INST_DIR%%/locale/ru
+@dirrm %%GRASS_INST_DIR%%/locale/sl/LC_MESSAGES
+@dirrm %%GRASS_INST_DIR%%/locale/sl
+@dirrm %%GRASS_INST_DIR%%/locale/th/LC_MESSAGES
+@dirrm %%GRASS_INST_DIR%%/locale/th
+@dirrm %%GRASS_INST_DIR%%/locale/tr/LC_MESSAGES
+@dirrm %%GRASS_INST_DIR%%/locale/tr
+@dirrm %%GRASS_INST_DIR%%/locale/vi/LC_MESSAGES
+@dirrm %%GRASS_INST_DIR%%/locale/vi
+@dirrm %%GRASS_INST_DIR%%/locale/zh/LC_MESSAGES
+@dirrm %%GRASS_INST_DIR%%/locale/zh
+@dirrm %%GRASS_INST_DIR%%/locale
+@dirrm %%GRASS_INST_DIR%%/man/man1
+@dirrm %%GRASS_INST_DIR%%/man
+@dirrm %%GRASS_INST_DIR%%/scripts
+@dirrm %%GRASS_INST_DIR%%/tools
@dirrm %%GRASS_INST_DIR%%