Hello folks,
On Thu, Dec 07, 2006 at 01:02:41AM -0500, Mark Phillips wrote:
> Anyway, it's fine with me if someone wants to change the names of these
> files. The simplest thing would be to just drop the initial '.'. That
> would involve changing each external module and/or its Makefile, and
> changing the part of Geomview that looks for the files, which is in the file
> src/bin/geomview/commonworldio.c.
I have made these changes, and two additional ones, so that no
dot-files are installed.
The additional changes are:
(1) data/.geomview renamed to data/geomview This file is installed
into ${datadir} and read at startup, so geomview.sh also changes.
(2) data/NDview/scripts/.ndview renamed to
data/NDview/scripts/ndview This file is also installed under
${datadir}, and read by src/bin/NDview/NDview, which is therefore
also changed.
Lots of documentation files also updated.
I'm attaching the patch for comments. I'd like to commit this in the
coming days, unless there are strong objections.
Cheers,
-Steve
? data/geomview
? data/NDview/scripts/ndview
Index: geomview.sh
===================================================================
RCS file: /cvsroot/geomview/geomview/geomview.sh,v
retrieving revision 1.8
diff -u -b -B -r1.8 geomview.sh
--- geomview.sh 23 Aug 2006 22:21:00 -0000 1.8
+++ geomview.sh 28 Dec 2006 05:33:45 -0000
@@ -44,7 +44,7 @@
: ${GEOMVIEW_LOAD_PATH=.:${GEOMDATA}/geom:${GEOMDATA}}
: ${GEOMVIEW_EMODULE_PATH=%MODULESDIR%}
-: ${GEOMVIEW_SYSTEM_INITFILE=${GEOMDATA}/.geomview}
+: ${GEOMVIEW_SYSTEM_INITFILE=${GEOMDATA}/geomview}
export GEOMROOT GEOMVIEW_GVX GEOMVIEW_LOAD_PATH GEOMDATA \
GEOMVIEW_EMODULE_PATH GEOMVIEW_SYSTEM_INITFILE
Index: mkmodulesdir
===================================================================
RCS file: /cvsroot/geomview/geomview/mkmodulesdir,v
retrieving revision 1.1
diff -u -b -B -r1.1 mkmodulesdir
--- mkmodulesdir 22 Aug 2000 21:06:39 -0000 1.1
+++ mkmodulesdir 28 Dec 2006 05:33:45 -0000
@@ -12,9 +12,9 @@
fi
cat > $MODULES/README <<EOF
-This directory holds (or will hold) a collection of .geomview-* files
+This directory holds (or will hold) a collection of geomview-* files
which tell geomview where to find external modules. The Makefile for
-each module puts its corresponding .geomview-* file into this directory
+each module puts its corresponding geomview-* file into this directory
after successfully building the module.
If this directory is empty (other than for this README file), it just
Index: data/Makefile.am
===================================================================
RCS file: /cvsroot/geomview/geomview/data/Makefile.am,v
retrieving revision 1.7
diff -u -b -B -r1.7 Makefile.am
--- data/Makefile.am 30 Jul 2006 14:34:31 -0000 1.7
+++ data/Makefile.am 28 Dec 2006 05:33:45 -0000
@@ -72,7 +72,7 @@
shaders/hplastic.sl \
shaders/hplastic.slo
-ndview_scripts = NDview/scripts/.ndview NDview/scripts/4d.2bigwins \
+ndview_scripts = NDview/scripts/ndview NDview/scripts/4d.2bigwins \
NDview/scripts/4d.3wins NDview/scripts/4d.4wins NDview/scripts/4d.cplx \
NDview/scripts/4d.earthcolor NDview/scripts/4d.wildcolor \
NDview/scripts/4d.xyw NDview/scripts/4d.xyz NDview/scripts/4d.xzw \
@@ -120,7 +120,7 @@
NDview/cplxview/scripts/4d.cplx
nobase_geomdata_DATA = \
- .geomview \
+ geomview \
cmap.fmap \
geom/HingeCube \
geom/HingeDiamond \
Index: data/NDview/text/prefabhelp.txt
===================================================================
RCS file: /cvsroot/geomview/geomview/data/NDview/text/prefabhelp.txt,v
retrieving revision 1.1
diff -u -b -B -r1.1 prefabhelp.txt
--- data/NDview/text/prefabhelp.txt 30 Jul 2006 03:41:16 -0000 1.1
+++ data/NDview/text/prefabhelp.txt 28 Dec 2006 05:33:45 -0000
@@ -56,7 +56,7 @@
The contents of the browsers are determined by
1) a default file in the Geomview default data
-directory under the name NDview/scripts/.ndview
+directory under the name NDview/scripts/ndview
2) a file named .ndview in you home directory
2) a file named .ndview in the current directory
Index: doc/geomview.1
===================================================================
RCS file: /cvsroot/geomview/geomview/doc/geomview.1,v
retrieving revision 1.2
diff -u -b -B -r1.2 geomview.1
--- doc/geomview.1 27 Jul 2006 12:29:38 -0000 1.2
+++ doc/geomview.1 28 Dec 2006 05:33:45 -0000
@@ -121,7 +121,7 @@
-noinit
Read no initialization files. By default, geomview
- reads the system-wide ".geomview" file, followed by
+ reads the system-wide "geomview" file, followed by
those in $HOME/.geomview and ./.geomview.
@@ -166,7 +166,7 @@
STARTUP FILES
Immediately upon starting up geomview reads and executes
- the commands in the system-wide .geomview file in the "da-
+ the commands in the system-wide geomview file in the "da-
ta" subdirectory of the geomview directory. Then, if
there is a file named .geomview in the current directory,
it executes the commands in that file. If no in the us-
@@ -207,7 +207,7 @@
for modules. In the geomview distribution tree this is
the "bin/$MACHTYPE" subdirectory. A module consists of
two files: the executable program, and a "module init
- file", which is a whose name is ".geomview-" followed by
+ file", which is a whose name is "geomview-" followed by
the module name. The module init file tells geomview how
to run that program. Be sure to always keep these two
files together; geomview needs both of them in order to
@@ -339,7 +339,7 @@
geomview(5) - geomview command language reference
FILES
- data/.geomview - default initialization file in geomview
+ data/geomview - default initialization file in geomview
command language
data/geom - sample data files
Index: doc/geomview.5
===================================================================
RCS file: /cvsroot/geomview/geomview/doc/geomview.5,v
retrieving revision 1.2
diff -u -b -B -r1.2 geomview.5
--- doc/geomview.5 3 Oct 2006 14:33:09 -0000 1.2
+++ doc/geomview.5 28 Dec 2006 05:33:45 -0000
@@ -941,9 +941,9 @@
`(rehash-emodule-path)'
Rebuilds the application (external module) browser by reading
- all .geomview-* files in all directories on the emodule-path.
+ all geomview-* files in all directories on the emodule-path.
Primarily intended for internal use; any applications defined
- by (emodule-define ...) commands outside of the .geomview-*
+ by (emodule-define ...) commands outside of the geomview-*
files on the emodule-path will be lost. Does not sort the
entries in the brower; see (emodule-sort) for that.
@@ -1008,7 +1008,7 @@
`(set-emodule-path (PATH1 ... PATHN))'
Sets the search path for external modules. The PATHi should
be pathnames of directories containing, for each module, the
- module's executable file and a .geomview-<modulename> file
+ module's executable file and a geomview-<modulename> file
which contains an (emodule-define ...) command for that
module. This command implicitly calls (rehash-emodule-path)
to rebuild the application brower from the new path setting.
Index: doc/geomview.5.man
===================================================================
RCS file: /cvsroot/geomview/geomview/doc/geomview.5.man,v
retrieving revision 1.2
diff -u -b -B -r1.2 geomview.5.man
--- doc/geomview.5.man 3 Oct 2006 14:33:09 -0000 1.2
+++ doc/geomview.5.man 28 Dec 2006 05:33:46 -0000
@@ -941,9 +941,9 @@
`(rehash-emodule-path)'
Rebuilds the application (external module) browser by reading
- all .geomview-* files in all directories on the emodule-path.
+ all geomview-* files in all directories on the emodule-path.
Primarily intended for internal use; any applications defined
- by (emodule-define ...) commands outside of the .geomview-*
+ by (emodule-define ...) commands outside of the geomview-*
files on the emodule-path will be lost. Does not sort the
entries in the brower; see (emodule-sort) for that.
@@ -1008,7 +1008,7 @@
`(set-emodule-path (PATH1 ... PATHN))'
Sets the search path for external modules. The PATHi should
be pathnames of directories containing, for each module, the
- module's executable file and a .geomview-<modulename> file
+ module's executable file and a geomview-<modulename> file
which contains an (emodule-define ...) command for that
module. This command implicitly calls (rehash-emodule-path)
to rebuild the application brower from the new path setting.
Index: doc/geomview.texi
===================================================================
RCS file: /cvsroot/geomview/geomview/doc/geomview.texi,v
retrieving revision 1.15
diff -u -b -B -r1.15 geomview.texi
--- doc/geomview.texi 15 Nov 2006 20:15:41 -0000 1.15
+++ doc/geomview.texi 28 Dec 2006 05:33:47 -0000
@@ -4385,7 +4385,7 @@
@chapter Customization: @file{.geomview} files
When Geomview is started, it loads and executes commands in a
-system-wide startup file named @file{.geomview}. This file is in the
+system-wide startup file named @file{geomview}. This file is in the
@file{data} subdirectory of the Geomview distribution directory
and
contains gcl commands to configure Geomview in a way
@@ -5680,7 +5680,7 @@
@table @asis
@item 1.
-Create a file called @[EMAIL PROTECTED] where
+Create a file called @[EMAIL PROTECTED] where
@[EMAIL PROTECTED] is the name of the module. This file should contain
a single line which is an @code{emodule-define} command for that module:
@example
@@ -5693,7 +5693,7 @@
$path searched by the shell.
@item 2.
-Put a copy of the @[EMAIL PROTECTED] and the module
+Put a copy of the @[EMAIL PROTECTED] and the module
executable itself in Geomview's @file{modules/<CPU>} directory,
where @file{<CPU>} is your system type.
@@ -5702,7 +5702,7 @@
After these steps, the new module should appear, in alphabetical
position, in the @emph{Modules} browser of Geomview's @emph{Main}
panel next time Geomview is run. The reason this works is that when
-Geomview is invoked it processes all the @file{.geomview-*} files in its
+Geomview is invoked it processes all the @file{geomview-*} files in its
@file{modules} directory. It also remembers the pathname of this
directory and prepends that path to the $path of the shell in which it
invokes such a module.
@@ -6643,9 +6643,9 @@
@findex rehash-emodule-path
@item (rehash-emodule-path)
Rebuilds the application (external module) browser by reading
-all .geomview-* files in all directories on the emodule-path.
+all geomview-* files in all directories on the emodule-path.
Primarily intended for internal use; any applications defined
-by (emodule-define ...) commands outside of the .geomview-*
+by (emodule-define ...) commands outside of the geomview-*
files on the emodule-path will be lost. Does not sort the
entries in the brower; see (emodule-sort) for that.
@@ -6706,7 +6706,7 @@
@item (set-emodule-path (PATH1 ... PATHN))
Sets the search path for external modules. The PATHi should
be pathnames of directories containing, for each module, the
-module's executable file and a .geomview-<modulename> file
+module's executable file and a geomview-<modulename> file
which contains an (emodule-define ...) command for that
module. This command implicitly calls (rehash-emodule-path)
to rebuild the application brower from the new path setting.
Index: doc/version.texi
===================================================================
RCS file: /cvsroot/geomview/geomview/doc/version.texi,v
retrieving revision 1.14
diff -u -b -B -r1.14 version.texi
--- doc/version.texi 11 Dec 2006 04:20:12 -0000 1.14
+++ doc/version.texi 28 Dec 2006 05:33:47 -0000
@@ -1,4 +1,4 @@
[EMAIL PROTECTED] UPDATED 15 November 2006
[EMAIL PROTECTED] UPDATED-MONTH November 2006
[EMAIL PROTECTED] UPDATED 27 December 2006
[EMAIL PROTECTED] UPDATED-MONTH December 2006
@set EDITION 1.8.2-rc10
@set VERSION 1.8.2-rc10
Index: src/bin/NDview/.cvsignore
===================================================================
RCS file: /cvsroot/geomview/geomview/src/bin/NDview/.cvsignore,v
retrieving revision 1.5
diff -u -b -B -r1.5 .cvsignore
--- src/bin/NDview/.cvsignore 15 Oct 2006 12:48:01 -0000 1.5
+++ src/bin/NDview/.cvsignore 28 Dec 2006 05:33:47 -0000
@@ -1,6 +1,6 @@
.deps
-.geomview-nddemo
-.geomview-ndview
+geomview-nddemo
+geomview-ndview
.libs
Makefile
Makefile.in
Index: src/bin/NDview/Makefile.am
===================================================================
RCS file: /cvsroot/geomview/geomview/src/bin/NDview/Makefile.am,v
retrieving revision 1.9
diff -u -b -B -r1.9 Makefile.am
--- src/bin/NDview/Makefile.am 6 Oct 2006 07:59:18 -0000 1.9
+++ src/bin/NDview/Makefile.am 28 Dec 2006 05:33:47 -0000
@@ -15,7 +15,7 @@
module_tcldir = $(moduledir)/tcl
module_tcl_DATA = NDview NDdemo
-module_DATA = .geomview-ndview .geomview-nddemo
+module_DATA = geomview-ndview geomview-nddemo
ndviewdir = $(geomdatadir)/NDview
ndview_scriptsdir = $(ndviewdir)/scripts
@@ -23,24 +23,24 @@
ndview_geomdemodir = $(ndview_geomdir)/demo
ndview_textdir = $(ndviewdir)/text
-.geomview-ndview: Makefile
- echo '(emodule-define "NDview" "ndview
$$GEOMVIEW_EMODULE_PATH/tcl/NDview")' > .geomview-ndview
+geomview-ndview: Makefile
+ echo '(emodule-define "NDview" "ndview
$$GEOMVIEW_EMODULE_PATH/tcl/NDview")' > geomview-ndview
-.geomview-nddemo: Makefile
- echo '(emodule-define "NDdemo" "ndview
$$GEOMVIEW_EMODULE_PATH/tcl/NDdemo")' > .geomview-nddemo
+geomview-nddemo: Makefile
+ echo '(emodule-define "NDdemo" "ndview
$$GEOMVIEW_EMODULE_PATH/tcl/NDdemo")' > geomview-nddemo
-$(top_builddir)/modules/.geomview-ndview: Makefile
+$(top_builddir)/modules/geomview-ndview: Makefile
$(top_srcdir)/mkmodulesdir $(top_builddir)
echo '(emodule-define "NDview" "$(subdir)/ndview $(realpath
$(srcdir))/NDview")' > $@
-$(top_builddir)/modules/.geomview-nddemo: Makefile
+$(top_builddir)/modules/geomview-nddemo: Makefile
$(top_srcdir)/mkmodulesdir $(top_builddir)
echo '(emodule-define "NDdemo" "$(subdir)/ndview $(realpath
$(srcdir))/$(srcdir)/NDdemo")' > $@
-all-local: $(top_builddir)/modules/.geomview-ndview
$(top_builddir)/modules/.geomview-nddemo
+all-local: $(top_builddir)/modules/geomview-ndview
$(top_builddir)/modules/geomview-nddemo
CLEANFILES = \
- $(top_builddir)/modules/.geomview-ndview \
- $(top_builddir)/modules/.geomview-nddemo \
+ $(top_builddir)/modules/geomview-ndview \
+ $(top_builddir)/modules/geomview-nddemo \
$(module_DATA)
Index: src/bin/NDview/NDview
===================================================================
RCS file: /cvsroot/geomview/geomview/src/bin/NDview/NDview,v
retrieving revision 1.5
diff -u -b -B -r1.5 NDview
--- src/bin/NDview/NDview 29 Oct 2006 21:49:18 -0000 1.5
+++ src/bin/NDview/NDview 28 Dec 2006 05:33:47 -0000
@@ -175,7 +175,7 @@
frame .prefab
- readndview "$ndroot/scripts/.ndview"
+ readndview "$ndroot/scripts/ndview"
readndview "$env(HOME)/.ndview"
readndview ".ndview"
Index: src/bin/animate/.cvsignore
===================================================================
RCS file: /cvsroot/geomview/geomview/src/bin/animate/.cvsignore,v
retrieving revision 1.3
diff -u -b -B -r1.3 .cvsignore
--- src/bin/animate/.cvsignore 14 Jul 2006 09:57:52 -0000 1.3
+++ src/bin/animate/.cvsignore 28 Dec 2006 05:33:47 -0000
@@ -1,4 +1,4 @@
-.geomview-animate
+geomview-animate
.libs
Makefile Makefile.in .deps
animate
Index: src/bin/animate/Makefile.am
===================================================================
RCS file: /cvsroot/geomview/geomview/src/bin/animate/Makefile.am,v
retrieving revision 1.9
diff -u -b -B -r1.9 Makefile.am
--- src/bin/animate/Makefile.am 1 Aug 2006 15:51:32 -0000 1.9
+++ src/bin/animate/Makefile.am 28 Dec 2006 05:33:47 -0000
@@ -12,18 +12,18 @@
animate_LDADD = $(OOGLLIB) $(MOTIFUILIB) $(MOTIFLIBS) $(XMULIBS) $(XLIBS)
#animate_LDFLAGS = -rpath $(libdir)
-module_DATA = .geomview-animate
+module_DATA = geomview-animate
-.geomview-animate:
- echo '(emodule-define "Animator" "animate")' > .geomview-animate
+geomview-animate:
+ echo '(emodule-define "Animator" "animate")' > geomview-animate
# Populate local "modules" directory, allowing animate to run in the build dir.
-all-local: $(top_builddir)/modules/.geomview-animate
+all-local: $(top_builddir)/modules/geomview-animate
-$(top_builddir)/modules/.geomview-animate: Makefile
+$(top_builddir)/modules/geomview-animate: Makefile
$(top_srcdir)/mkmodulesdir $(top_builddir)
echo '(emodule-define "Animator" "$(subdir)/animate")' > $@
-CLEANFILES = $(top_builddir)/modules/.geomview-animate $(module_DATA)
+CLEANFILES = $(top_builddir)/modules/geomview-animate $(module_DATA)
Index: src/bin/clipboard/.cvsignore
===================================================================
RCS file: /cvsroot/geomview/geomview/src/bin/clipboard/.cvsignore,v
retrieving revision 1.5
diff -u -b -B -r1.5 .cvsignore
--- src/bin/clipboard/.cvsignore 15 Oct 2006 12:48:01 -0000 1.5
+++ src/bin/clipboard/.cvsignore 28 Dec 2006 05:33:47 -0000
@@ -1,5 +1,5 @@
.deps
-.geomview-clipboard
+geomview-clipboard
.libs
Makefile
Makefile.in
Index: src/bin/clipboard/Makefile.am
===================================================================
RCS file: /cvsroot/geomview/geomview/src/bin/clipboard/Makefile.am,v
retrieving revision 1.3
diff -u -b -B -r1.3 Makefile.am
--- src/bin/clipboard/Makefile.am 1 Aug 2006 15:51:32 -0000 1.3
+++ src/bin/clipboard/Makefile.am 28 Dec 2006 05:33:48 -0000
@@ -9,16 +9,16 @@
clipboard_DEPENDENCIES = $(OOGLLIB)
#clipboard_LDFLAGS = -rpath $(libdir)
-module_DATA = .geomview-clipboard
+module_DATA = geomview-clipboard
-.geomview-clipboard: Makefile
- echo '(emodule-define "Clipboard" "clipboard")' > .geomview-clipboard
+geomview-clipboard: Makefile
+ echo '(emodule-define "Clipboard" "clipboard")' > geomview-clipboard
-all-local: $(top_builddir)/modules/.geomview-clipboard
+all-local: $(top_builddir)/modules/geomview-clipboard
-$(top_builddir)/modules/.geomview-clipboard: Makefile
+$(top_builddir)/modules/geomview-clipboard: Makefile
$(top_srcdir)/mkmodulesdir $(top_builddir)
echo '(emodule-define "Clipboard" "$(subdir)/clipboard")' > $@
-CLEANFILES = $(top_builddir)/modules/.geomview-clipboard $(module_DATA)
+CLEANFILES = $(top_builddir)/modules/geomview-clipboard $(module_DATA)
Index: src/bin/cplxview/.cvsignore
===================================================================
RCS file: /cvsroot/geomview/geomview/src/bin/cplxview/.cvsignore,v
retrieving revision 1.3
diff -u -b -B -r1.3 .cvsignore
--- src/bin/cplxview/.cvsignore 7 Aug 2006 08:39:29 -0000 1.3
+++ src/bin/cplxview/.cvsignore 28 Dec 2006 05:33:48 -0000
@@ -1,6 +1,6 @@
*.la
*.lo
-.geomview-cplxview
+geomview-cplxview
.libs
.libs
Makefile Makefile.in .deps
Index: src/bin/cplxview/Makefile.am
===================================================================
RCS file: /cvsroot/geomview/geomview/src/bin/cplxview/Makefile.am,v
retrieving revision 1.9
diff -u -b -B -r1.9 Makefile.am
--- src/bin/cplxview/Makefile.am 1 Aug 2006 15:51:32 -0000 1.9
+++ src/bin/cplxview/Makefile.am 28 Dec 2006 05:33:48 -0000
@@ -13,15 +13,15 @@
cplxview_DEPENDENCIES = $(OOGLLIB)
#cplxview_LDFLAGS = -rpath $(libdir)
-module_DATA = .geomview-cplxview
+module_DATA = geomview-cplxview
-.geomview-cplxview: Makefile
- echo '(emodule-define "Cplxview" "cplxview")' > .geomview-cplxview
+geomview-cplxview: Makefile
+ echo '(emodule-define "Cplxview" "cplxview")' > geomview-cplxview
-all-local: $(top_builddir)/modules/.geomview-cplxview
+all-local: $(top_builddir)/modules/geomview-cplxview
-$(top_builddir)/modules/.geomview-cplxview: Makefile
+$(top_builddir)/modules/geomview-cplxview: Makefile
$(top_srcdir)/mkmodulesdir $(top_builddir)
echo '(emodule-define "Cplxview" "$(subdir)/cplxview")' > $@
-CLEANFILES = $(top_builddir)/modules/.geomview-cplxview $(module_DATA)
+CLEANFILES = $(top_builddir)/modules/geomview-cplxview $(module_DATA)
Index: src/bin/crayola/.cvsignore
===================================================================
RCS file: /cvsroot/geomview/geomview/src/bin/crayola/.cvsignore,v
retrieving revision 1.1
diff -u -b -B -r1.1 .cvsignore
--- src/bin/crayola/.cvsignore 27 Jul 2006 23:49:18 -0000 1.1
+++ src/bin/crayola/.cvsignore 28 Dec 2006 05:33:48 -0000
@@ -1,5 +1,5 @@
.deps
-.geomview-crayola
+geomview-crayola
.libs
Makefile
Makefile.in
Index: src/bin/crayola/Makefile.am
===================================================================
RCS file: /cvsroot/geomview/geomview/src/bin/crayola/Makefile.am,v
retrieving revision 1.3
diff -u -b -B -r1.3 Makefile.am
--- src/bin/crayola/Makefile.am 1 Aug 2006 15:51:32 -0000 1.3
+++ src/bin/crayola/Makefile.am 28 Dec 2006 05:33:48 -0000
@@ -17,15 +17,15 @@
module_tcldir = $(moduledir)/tcl
module_tcl_DATA = Crayola
-module_DATA = .geomview-crayola
+module_DATA = geomview-crayola
-.geomview-crayola: Makefile
- echo '(emodule-define "Crayola" "crayola
$$GEOMVIEW_EMODULE_PATH/tcl/Crayola")' > .geomview-crayola
+geomview-crayola: Makefile
+ echo '(emodule-define "Crayola" "crayola
$$GEOMVIEW_EMODULE_PATH/tcl/Crayola")' > geomview-crayola
-all-local: $(top_builddir)/modules/.geomview-crayola
+all-local: $(top_builddir)/modules/geomview-crayola
-$(top_builddir)/modules/.geomview-crayola: Makefile
+$(top_builddir)/modules/geomview-crayola: Makefile
$(top_srcdir)/mkmodulesdir $(top_builddir)
echo '(emodule-define "Crayola" "$(subdir)/crayola $(subdir)/Crayola")'
> $@
-CLEANFILES = $(module_DATA) $(top_builddir)/modules/.geomview-crayola
+CLEANFILES = $(module_DATA) $(top_builddir)/modules/geomview-crayola
Index: src/bin/example/.cvsignore
===================================================================
RCS file: /cvsroot/geomview/geomview/src/bin/example/.cvsignore,v
retrieving revision 1.3
diff -u -b -B -r1.3 .cvsignore
--- src/bin/example/.cvsignore 14 Jul 2006 09:57:52 -0000 1.3
+++ src/bin/example/.cvsignore 28 Dec 2006 05:33:48 -0000
@@ -1,5 +1,5 @@
-.geomview-example
+geomview-example
.libs
Makefile Makefile.in .deps
example
Index: src/bin/example/Makefile.am
===================================================================
RCS file: /cvsroot/geomview/geomview/src/bin/example/Makefile.am,v
retrieving revision 1.11
diff -u -b -B -r1.11 Makefile.am
--- src/bin/example/Makefile.am 1 Aug 2006 15:51:32 -0000 1.11
+++ src/bin/example/Makefile.am 28 Dec 2006 05:33:48 -0000
@@ -9,15 +9,15 @@
example_DEPENDENCIES = $(OOGLLIB)
#example_LDFLAGS = -rpath $(libdir)
-module_DATA = .geomview-example
+module_DATA = geomview-example
-.geomview-example:
- echo '(emodule-define "Example" "example")' > .geomview-example
+geomview-example:
+ echo '(emodule-define "Example" "example")' > geomview-example
-all-local: $(top_builddir)/modules/.geomview-example
+all-local: $(top_builddir)/modules/geomview-example
-$(top_builddir)/modules/.geomview-example: Makefile
+$(top_builddir)/modules/geomview-example: Makefile
$(top_srcdir)/mkmodulesdir $(top_builddir)
echo '(emodule-define "Example" "$(subdir)/example")' > $@
-CLEANFILES = $(module_DATA) $(top_builddir)/modules/.geomview-example
\ No newline at end of file
+CLEANFILES = $(module_DATA) $(top_builddir)/modules/geomview-example
\ No newline at end of file
Index: src/bin/flythrough/.cvsignore
===================================================================
RCS file: /cvsroot/geomview/geomview/src/bin/flythrough/.cvsignore,v
retrieving revision 1.3
diff -u -b -B -r1.3 .cvsignore
--- src/bin/flythrough/.cvsignore 7 Aug 2006 08:39:29 -0000 1.3
+++ src/bin/flythrough/.cvsignore 28 Dec 2006 05:33:48 -0000
@@ -1,6 +1,6 @@
*.la
*.lo
-.geomview-flythrough
+geomview-flythrough
.libs
.libs
Makefile Makefile.in .deps
Index: src/bin/flythrough/Makefile.am
===================================================================
RCS file: /cvsroot/geomview/geomview/src/bin/flythrough/Makefile.am,v
retrieving revision 1.9
diff -u -b -B -r1.9 Makefile.am
--- src/bin/flythrough/Makefile.am 1 Aug 2006 15:51:33 -0000 1.9
+++ src/bin/flythrough/Makefile.am 28 Dec 2006 05:33:48 -0000
@@ -13,15 +13,15 @@
flythrough_DEPENDENCIES = $(OOGLLIB)
#flythrough_LDFLAGS = -rpath $(libdir)
-module_DATA = .geomview-flythrough
+module_DATA = geomview-flythrough
-.geomview-flythrough:
- echo '(emodule-define "Flythrough" "flythrough")' > .geomview-flythrough
+geomview-flythrough:
+ echo '(emodule-define "Flythrough" "flythrough")' > geomview-flythrough
-all-local: $(top_builddir)/modules/.geomview-flythrough
+all-local: $(top_builddir)/modules/geomview-flythrough
-$(top_builddir)/modules/.geomview-flythrough: Makefile
+$(top_builddir)/modules/geomview-flythrough: Makefile
$(top_srcdir)/mkmodulesdir $(top_builddir)
echo '(emodule-define "Flythrough" "$(subdir)/flythrough")' > $@
-CLEANFILES = $(module_DATA) $(top_builddir)/modules/.geomview-flythrough
\ No newline at end of file
+CLEANFILES = $(module_DATA) $(top_builddir)/modules/geomview-flythrough
\ No newline at end of file
Index: src/bin/geomutil/bdy/.cvsignore
===================================================================
RCS file: /cvsroot/geomview/geomview/src/bin/geomutil/bdy/.cvsignore,v
retrieving revision 1.3
diff -u -b -B -r1.3 .cvsignore
--- src/bin/geomutil/bdy/.cvsignore 14 Jul 2006 09:57:53 -0000 1.3
+++ src/bin/geomutil/bdy/.cvsignore 28 Dec 2006 05:33:48 -0000
@@ -1,4 +1,4 @@
-.geomview-drawbdy
+geomview-drawbdy
.libs
Makefile Makefile.in .deps
bdy drawbdy
Index: src/bin/geomutil/bdy/Makefile.am
===================================================================
RCS file: /cvsroot/geomview/geomview/src/bin/geomutil/bdy/Makefile.am,v
retrieving revision 1.7
diff -u -b -B -r1.7 Makefile.am
--- src/bin/geomutil/bdy/Makefile.am 1 Aug 2006 15:51:35 -0000 1.7
+++ src/bin/geomutil/bdy/Makefile.am 28 Dec 2006 05:33:48 -0000
@@ -12,7 +12,7 @@
#bdy_LDFLAGS = -rpath $(libdir)
module_SCRIPTS = drawbdy
-module_DATA = .geomview-drawbdy
+module_DATA = geomview-drawbdy
CLEANFILES = drawbdy
@@ -21,15 +21,15 @@
< $(srcdir)/drawbdy.sh > drawbdy
chmod +x drawbdy
-.geomview-drawbdy:
- echo '(emodule-define "Draw Boundary" "drawbdy")' > .geomview-drawbdy
+geomview-drawbdy:
+ echo '(emodule-define "Draw Boundary" "drawbdy")' > geomview-drawbdy
all-local:
$(top_srcdir)/mkmodulesdir $(top_builddir)
- echo '(emodule-define "Draw Boundary" "$(subdir)/drawbdy")' >
$(top_builddir)/modules/.geomview-drawbdy
+ echo '(emodule-define "Draw Boundary" "$(subdir)/drawbdy")' >
$(top_builddir)/modules/geomview-drawbdy
# install-geomview-dotfile: drawbdy
# $(top_builddir)/mkmodulesdir $(top_builddir)
-# echo '(emodule-define "Draw Boundary" "$(subdir)/drawbdy")' >
$(top_builddir)/modules/.geomview-drawbdy
+# echo '(emodule-define "Draw Boundary" "$(subdir)/drawbdy")' >
$(top_builddir)/modules/geomview-drawbdy
-DISTCLEANFILES = .geomview-drawbdy
\ No newline at end of file
+DISTCLEANFILES = geomview-drawbdy
\ No newline at end of file
Index: src/bin/geomview/geomview.1
===================================================================
RCS file: /cvsroot/geomview/geomview/src/bin/geomview/geomview.1,v
retrieving revision 1.2
diff -u -b -B -r1.2 geomview.1
--- src/bin/geomview/geomview.1 27 Jul 2006 12:29:38 -0000 1.2
+++ src/bin/geomview/geomview.1 28 Dec 2006 05:33:48 -0000
@@ -107,7 +107,7 @@
.TP
-noinit
Read no initialization files. By default, geomview reads the system-wide
-".geomview" file, followed by those in $HOME/.geomview and ./.geomview.
+"geomview" file, followed by those in $HOME/.geomview and ./.geomview.
.TP
-e \fImodulename\fP
Start an external module; \fImodulename\fP is the name associated
@@ -136,7 +136,7 @@
.SH STARTUP FILES
Immediately upon starting up geomview reads and executes the commands
-in the system-wide .geomview file in the "data" subdirectory of the
+in the system-wide geomview file in the "data" subdirectory of the
geomview directory. Then, if there is a file named .geomview in the
current directory, it executes the commands in that file. If no
.geomview file exists in the current directory, geomview looks for one
@@ -162,7 +162,7 @@
Geomview looks for external modules in a special directory for
modules. In the geomview distribution tree this is the "bin/$MACHTYPE"
subdirectory. A module consists of two files: the executable program,
-and a "module init file", which is a whose name is ".geomview-"
+and a "module init file", which is a whose name is "geomview-"
followed by the module name. The module init file tells geomview how
to run that program. Be sure to always keep these two files together;
geomview needs both of them in order to run the module. To install a
@@ -180,8 +180,8 @@
.SH EXTERNAL MODULE INIT FILES
An external module init file is the file that tells geomview how
-to run that module. Its name must be ".geomview-" followed by
-the name of the module, e.g. ".geomview-foo". It should
+to run that module. Its name must be "geomview-" followed by
+the name of the module, e.g. "geomview-foo". It should
contain geomview commands; typically it will contain a single
emodule-define command which enters the module into geomview's
application browser:
@@ -270,7 +270,7 @@
.SH "FILES"
.in +5
.ti -5
-data/.geomview \- default initialization file in geomview command language
+data/geomview \- default initialization file in geomview command language
.in -5
.br
.geomview or $HOME/.geomview \- second initialization file
Index: src/bin/geomview/common/comm.c
===================================================================
RCS file: /cvsroot/geomview/geomview/src/bin/geomview/common/comm.c,v
retrieving revision 1.16
diff -u -b -B -r1.16 comm.c
--- src/bin/geomview/common/comm.c 29 Oct 2006 21:47:14 -0000 1.16
+++ src/bin/geomview/common/comm.c 28 Dec 2006 05:33:48 -0000
@@ -584,7 +584,7 @@
/*
* NeXT applications need to know the absolute paths of their executables.
- * If we got an emodule definition from a ``.geomview-X'' file in directory Y,
+ * If we got an emodule definition from a ``geomview-X'' file in directory Y,
* and the definition begins with the name of a file living in Y,
* then prepend the directory name to the shell command.
* The strcspn() is an attempt to grab the first word of a shell command.
Index: src/bin/geomview/common/worldio.c
===================================================================
RCS file: /cvsroot/geomview/geomview/src/bin/geomview/common/worldio.c,v
retrieving revision 1.11
diff -u -b -B -r1.11 worldio.c
--- src/bin/geomview/common/worldio.c 29 Oct 2006 21:38:45 -0000 1.11
+++ src/bin/geomview/common/worldio.c 28 Dec 2006 05:33:48 -0000
@@ -519,7 +519,7 @@
"(set-emodule-path (PATH1 ... PATHN))\n\
Sets the search path for external modules. The PATHi should\n\
be pathnames of directories containing, for each module, the\n\
- module's executable file and a .geomview-<modulename> file\n\
+ module's executable file and a geomview-<modulename> file\n\
which contains an (emodule-define ...) command for that\n\
module. This command implicitly calls (rehash-emodule-path)\n\
to rebuild the application brower from the new path setting.\n\
@@ -544,9 +544,9 @@
LDEFINE(rehash_emodule_path, LLIST,
"(rehash-emodule-path)\n\
Rebuilds the application (external module) browser by reading\n\
- all .geomview-* files in all directories on the emodule-path.\n\
+ all geomview-* files in all directories on the emodule-path.\n\
Primarily intended for internal use; any applications defined\n\
- by (emodule-define ...) commands outside of the .geomview-*\n\
+ by (emodule-define ...) commands outside of the geomview-*\n\
files on the emodule-path will be lost. Does not sort the\n\
entries in the brower; see (emodule-sort) for that.")
{
@@ -557,7 +557,7 @@
gv_emodule_clear();
for (i=0; i<emodule_path_count; ++i) {
- sprintf(pat, "%s/.geomview-*", emodule_path[i]);
+ sprintf(pat, "%s/geomview-*", emodule_path[i]);
fp = files = ooglglob(pat);
while (fp && *fp) {
if (access(*fp, R_OK) == 0) {
Index: src/bin/geomview/x11/gvmain.c
===================================================================
RCS file: /cvsroot/geomview/geomview/src/bin/geomview/x11/gvmain.c,v
retrieving revision 1.7
diff -u -b -B -r1.7 gvmain.c
--- src/bin/geomview/x11/gvmain.c 28 Jul 2006 18:14:34 -0000 1.7
+++ src/bin/geomview/x11/gvmain.c 28 Dec 2006 05:33:48 -0000
@@ -181,7 +181,7 @@
\"Applications\" browser on the main panel).\n\
\n\
GEOMVIEW_SYSTEM_INITFILE\n\
- pathname of a system-wide initialization file (.geomview)\n\
+ pathname of a system-wide initialization file (geomview)\n\
to read upon startup\n");
}
Index: src/bin/ginsu/.cvsignore
===================================================================
RCS file: /cvsroot/geomview/geomview/src/bin/ginsu/.cvsignore,v
retrieving revision 1.3
diff -u -b -B -r1.3 .cvsignore
--- src/bin/ginsu/.cvsignore 7 Aug 2006 08:39:29 -0000 1.3
+++ src/bin/ginsu/.cvsignore 28 Dec 2006 05:33:48 -0000
@@ -1,6 +1,6 @@
*.la
*.lo
-.geomview-ginsu
+geomview-ginsu
.libs
.libs
Makefile Makefile.in .deps
Index: src/bin/ginsu/Makefile.am
===================================================================
RCS file: /cvsroot/geomview/geomview/src/bin/ginsu/Makefile.am,v
retrieving revision 1.8
diff -u -b -B -r1.8 Makefile.am
--- src/bin/ginsu/Makefile.am 1 Aug 2006 15:51:35 -0000 1.8
+++ src/bin/ginsu/Makefile.am 28 Dec 2006 05:33:48 -0000
@@ -13,15 +13,15 @@
ginsu_DEPENDENCIES = $(OOGLLIB)
#ginsu_LDFLAGS = -rpath $(libdir)
-module_DATA = .geomview-ginsu
+module_DATA = geomview-ginsu
-.geomview-ginsu:
- echo '(emodule-define "Ginsu" "ginsu")' > .geomview-ginsu
+geomview-ginsu:
+ echo '(emodule-define "Ginsu" "ginsu")' > geomview-ginsu
-all-local: $(top_builddir)/modules/.geomview-ginsu
+all-local: $(top_builddir)/modules/geomview-ginsu
-$(top_builddir)/modules/.geomview-ginsu: Makefile
+$(top_builddir)/modules/geomview-ginsu: Makefile
$(top_srcdir)/mkmodulesdir $(top_builddir)
echo '(emodule-define "Ginsu" "$(subdir)/ginsu")' > $@
-CLEANFILES = $(module_DATA) $(top_builddir)/modules/.geomview-ginsu
\ No newline at end of file
+CLEANFILES = $(module_DATA) $(top_builddir)/modules/geomview-ginsu
\ No newline at end of file
Index: src/bin/graffiti/.cvsignore
===================================================================
RCS file: /cvsroot/geomview/geomview/src/bin/graffiti/.cvsignore,v
retrieving revision 1.3
diff -u -b -B -r1.3 .cvsignore
--- src/bin/graffiti/.cvsignore 7 Aug 2006 08:39:29 -0000 1.3
+++ src/bin/graffiti/.cvsignore 28 Dec 2006 05:33:48 -0000
@@ -1,7 +1,7 @@
*.la
*.lo
-.geomview-graffiti
+geomview-graffiti
.libs
.libs
Makefile Makefile.in .deps
Index: src/bin/graffiti/Makefile.am
===================================================================
RCS file: /cvsroot/geomview/geomview/src/bin/graffiti/Makefile.am,v
retrieving revision 1.9
diff -u -b -B -r1.9 Makefile.am
--- src/bin/graffiti/Makefile.am 1 Aug 2006 15:51:35 -0000 1.9
+++ src/bin/graffiti/Makefile.am 28 Dec 2006 05:33:48 -0000
@@ -13,15 +13,15 @@
graffiti_DEPENDENCIES = $(OOGLLIB)
#graffiti_LDFLAGS = -rpath $(libdir)
-module_DATA = .geomview-graffiti
+module_DATA = geomview-graffiti
-.geomview-graffiti:
- echo '(emodule-define "Graffiti" "graffiti")' > .geomview-graffiti
+geomview-graffiti:
+ echo '(emodule-define "Graffiti" "graffiti")' > geomview-graffiti
-all-local: $(top_builddir)/modules/.geomview-graffiti
+all-local: $(top_builddir)/modules/geomview-graffiti
-$(top_builddir)/modules/.geomview-graffiti: Makefile
+$(top_builddir)/modules/geomview-graffiti: Makefile
$(top_srcdir)/mkmodulesdir $(top_builddir)
echo '(emodule-define "Graffiti" "$(subdir)/graffiti")' > $@
-CLEANFILES = $(top_builddir)/modules/.geomview-graffiti $(module_DATA)
+CLEANFILES = $(top_builddir)/modules/geomview-graffiti $(module_DATA)
Index: src/bin/gvclock/.cvsignore
===================================================================
RCS file: /cvsroot/geomview/geomview/src/bin/gvclock/.cvsignore,v
retrieving revision 1.1
diff -u -b -B -r1.1 .cvsignore
--- src/bin/gvclock/.cvsignore 27 Jul 2006 23:49:19 -0000 1.1
+++ src/bin/gvclock/.cvsignore 28 Dec 2006 05:33:48 -0000
@@ -1,4 +1,4 @@
-.geomview-gvclock
+geomview-gvclock
Makefile
Makefile.in
gvclock
Index: src/bin/gvclock/Makefile.am
===================================================================
RCS file: /cvsroot/geomview/geomview/src/bin/gvclock/Makefile.am,v
retrieving revision 1.4
diff -u -b -B -r1.4 Makefile.am
--- src/bin/gvclock/Makefile.am 13 Oct 2006 22:20:29 -0000 1.4
+++ src/bin/gvclock/Makefile.am 28 Dec 2006 05:33:48 -0000
@@ -1,8 +1,8 @@
module_SCRIPTS = gvclock
-module_DATA = .geomview-gvclock
+module_DATA = geomview-gvclock
-.geomview-gvclock:
+geomview-gvclock:
echo '(emodule-define "Clock" "gvclock")' > $@
# handled by configure
@@ -10,14 +10,14 @@
# sed -e 's,[EMAIL PROTECTED]@],$(AWK),g' < $< > $@
# chmod +x gvclock
-all-local: $(top_builddir)/modules/.geomview-gvclock
+all-local: $(top_builddir)/modules/geomview-gvclock
-$(top_builddir)/modules/.geomview-gvclock: Makefile gvclock
+$(top_builddir)/modules/geomview-gvclock: Makefile gvclock
$(top_srcdir)/mkmodulesdir $(top_builddir)
echo '(emodule-define "Clock" "$(subdir)/gvclock")' > $@
chmod +x gvclock
CLEANFILES = \
- $(top_builddir)/modules/.geomview-gvclock \
+ $(top_builddir)/modules/geomview-gvclock \
$(module_DATA) \
$(module_SCRIPTS)
Index: src/bin/hinge/.cvsignore
===================================================================
RCS file: /cvsroot/geomview/geomview/src/bin/hinge/.cvsignore,v
retrieving revision 1.3
diff -u -b -B -r1.3 .cvsignore
--- src/bin/hinge/.cvsignore 7 Aug 2006 08:39:29 -0000 1.3
+++ src/bin/hinge/.cvsignore 28 Dec 2006 05:33:48 -0000
@@ -1,6 +1,6 @@
*.la
*.lo
-.geomview-hinge
+geomview-hinge
.libs
.libs
Makefile Makefile.in .deps
Index: src/bin/hinge/Makefile.am
===================================================================
RCS file: /cvsroot/geomview/geomview/src/bin/hinge/Makefile.am,v
retrieving revision 1.9
diff -u -b -B -r1.9 Makefile.am
--- src/bin/hinge/Makefile.am 1 Aug 2006 15:51:35 -0000 1.9
+++ src/bin/hinge/Makefile.am 28 Dec 2006 05:33:48 -0000
@@ -16,15 +16,15 @@
hinge_DEPENDENCIES = $(OOGLLIB)
#hinge_LDFLAGS = -rpath $(libdir)
-module_DATA = .geomview-hinge
+module_DATA = geomview-hinge
-.geomview-hinge: Makefile
- echo '(emodule-define "Hinge" "hinge")' > .geomview-hinge
+geomview-hinge: Makefile
+ echo '(emodule-define "Hinge" "hinge")' > geomview-hinge
-all-local: $(top_builddir)/modules/.geomview-hinge
+all-local: $(top_builddir)/modules/geomview-hinge
-$(top_builddir)/modules/.geomview-hinge: Makefile
+$(top_builddir)/modules/geomview-hinge: Makefile
$(top_srcdir)/mkmodulesdir $(top_builddir)
echo '(emodule-define "Hinge" "$(subdir)/hinge")' > $@
-CLEANFILES = $(top_builddir)/modules/.geomview-hinge $(module_DATA)
+CLEANFILES = $(top_builddir)/modules/geomview-hinge $(module_DATA)
Index: src/bin/labeler/.cvsignore
===================================================================
RCS file: /cvsroot/geomview/geomview/src/bin/labeler/.cvsignore,v
retrieving revision 1.1
diff -u -b -B -r1.1 .cvsignore
--- src/bin/labeler/.cvsignore 27 Jul 2006 23:49:19 -0000 1.1
+++ src/bin/labeler/.cvsignore 28 Dec 2006 05:33:48 -0000
@@ -1,5 +1,5 @@
.deps
-.geomview-labeler
+geomview-labeler
.libs
Makefile
Makefile.in
Index: src/bin/labeler/Makefile.am
===================================================================
RCS file: /cvsroot/geomview/geomview/src/bin/labeler/Makefile.am,v
retrieving revision 1.5
diff -u -b -B -r1.5 Makefile.am
--- src/bin/labeler/Makefile.am 15 Nov 2006 10:56:04 -0000 1.5
+++ src/bin/labeler/Makefile.am 28 Dec 2006 05:33:48 -0000
@@ -17,15 +17,15 @@
module_tcldir = $(moduledir)/tcl
module_tcl_DATA = Labeler
-module_DATA = .geomview-labeler
+module_DATA = geomview-labeler
-.geomview-labeler:
- echo '(emodule-define "Labeler" "labeler
$$GEOMVIEW_EMODULE_PATH/tcl/Labeler")' > .geomview-labeler
+geomview-labeler:
+ echo '(emodule-define "Labeler" "labeler
$$GEOMVIEW_EMODULE_PATH/tcl/Labeler")' > geomview-labeler
-all-local: $(top_builddir)/modules/.geomview-labeler
+all-local: $(top_builddir)/modules/geomview-labeler
-$(top_builddir)/modules/.geomview-labeler: Makefile
+$(top_builddir)/modules/geomview-labeler: Makefile
$(top_srcdir)/mkmodulesdir $(top_builddir)
echo '(emodule-define "Labeler" "$(subdir)/labeler $(realpath
$(srcdir))/Labeler")' > $@
-CLEANFILES = $(top_builddir)/modules/.geomview-labeler $(module_DATA)
+CLEANFILES = $(top_builddir)/modules/geomview-labeler $(module_DATA)
Index: src/bin/ndutils/.cvsignore
===================================================================
RCS file: /cvsroot/geomview/geomview/src/bin/ndutils/.cvsignore,v
retrieving revision 1.4
diff -u -b -B -r1.4 .cvsignore
--- src/bin/ndutils/.cvsignore 15 Oct 2006 12:48:01 -0000 1.4
+++ src/bin/ndutils/.cvsignore 28 Dec 2006 05:33:48 -0000
@@ -1,7 +1,7 @@
.deps
-.geomview-3d-snapshot
-.geomview-colormap
-.geomview-slicer
+geomview-3d-snapshot
+geomview-colormap
+geomview-slicer
.libs
Makefile
Makefile.in
Index: src/bin/ndutils/Makefile.am
===================================================================
RCS file: /cvsroot/geomview/geomview/src/bin/ndutils/Makefile.am,v
retrieving revision 1.4
diff -u -b -B -r1.4 Makefile.am
--- src/bin/ndutils/Makefile.am 26 Oct 2006 22:54:58 -0000 1.4
+++ src/bin/ndutils/Makefile.am 28 Dec 2006 05:33:48 -0000
@@ -21,37 +21,37 @@
module_tcldir = $(moduledir)/tcl
module_tcl_DATA = 3D-Snapshot Slicer Colormap
-module_DATA = .geomview-3d-snapshot .geomview-slicer .geomview-colormap
+module_DATA = geomview-3d-snapshot geomview-slicer geomview-colormap
-.geomview-3d-snapshot: Makefile
+geomview-3d-snapshot: Makefile
echo '(emodule-define "3D-Snapshot" "ndutils
$$GEOMVIEW_EMODULE_PATH/tcl/3D-Snapshot")' > $@
-.geomview-slicer: Makefile
+geomview-slicer: Makefile
echo '(emodule-define "Slicer" "ndutils
$$GEOMVIEW_EMODULE_PATH/tcl/Slicer")' > $@
-.geomview-colormap: Makefile
+geomview-colormap: Makefile
echo '(emodule-define "Colormap" "ndutils
$$GEOMVIEW_EMODULE_PATH/tcl/Colormap")' > $@
-$(top_builddir)/modules/.geomview-3d-snapshot: Makefile
+$(top_builddir)/modules/geomview-3d-snapshot: Makefile
$(top_srcdir)/mkmodulesdir $(top_builddir)
echo '(emodule-define "3D-Snapshot" "$(subdir)/ndutils $(realpath
$(srcdir))/3D-Snapshot")' > $@
-$(top_builddir)/modules/.geomview-slicer: Makefile
+$(top_builddir)/modules/geomview-slicer: Makefile
$(top_srcdir)/mkmodulesdir $(top_builddir)
echo '(emodule-define "Slicer" "$(subdir)/ndutils $(realpath
$(srcdir))//Slicer")' > $@
-$(top_builddir)/modules/.geomview-colormap: Makefile
+$(top_builddir)/modules/geomview-colormap: Makefile
$(top_srcdir)/mkmodulesdir $(top_builddir)
echo '(emodule-define "Colormap" "$(subdir)/ndutils $(realpath
$(srcdir))/Colormap")' > $@
all-local: \
- $(top_builddir)/modules/.geomview-3d-snapshot \
- $(top_builddir)/modules/.geomview-slicer \
- $(top_builddir)/modules/.geomview-colormap
+ $(top_builddir)/modules/geomview-3d-snapshot \
+ $(top_builddir)/modules/geomview-slicer \
+ $(top_builddir)/modules/geomview-colormap
CLEANFILES = \
- $(top_builddir)/modules/.geomview-3d-snapshot \
- $(top_builddir)/modules/.geomview-slicer \
- $(top_builddir)/modules/.geomview-colormap \
+ $(top_builddir)/modules/geomview-3d-snapshot \
+ $(top_builddir)/modules/geomview-slicer \
+ $(top_builddir)/modules/geomview-colormap \
$(module_DATA)
Index: src/bin/stereo/.cvsignore
===================================================================
RCS file: /cvsroot/geomview/geomview/src/bin/stereo/.cvsignore,v
retrieving revision 1.3
diff -u -b -B -r1.3 .cvsignore
--- src/bin/stereo/.cvsignore 7 Aug 2006 08:39:29 -0000 1.3
+++ src/bin/stereo/.cvsignore 28 Dec 2006 05:33:48 -0000
@@ -1,6 +1,6 @@
*.la
*.lo
-.geomview-stereo
+geomview-stereo
.libs
.libs
Makefile Makefile.in .deps
Index: src/bin/stereo/Makefile.am
===================================================================
RCS file: /cvsroot/geomview/geomview/src/bin/stereo/Makefile.am,v
retrieving revision 1.8
diff -u -b -B -r1.8 Makefile.am
--- src/bin/stereo/Makefile.am 1 Aug 2006 15:51:35 -0000 1.8
+++ src/bin/stereo/Makefile.am 28 Dec 2006 05:33:48 -0000
@@ -11,17 +11,17 @@
stereo_DEPENDENCIES = $(OOGLLIB)
#stereo_LDFLAGS = -rpath $(libdir)
-module_DATA = .geomview-stereo
+module_DATA = geomview-stereo
-.geomview-stereo: Makefile
- echo '(emodule-define "Stereo" "stereo")' > .geomview-stereo
+geomview-stereo: Makefile
+ echo '(emodule-define "Stereo" "stereo")' > geomview-stereo
-all-local: $(top_builddir)/modules/.geomview-stereo
+all-local: $(top_builddir)/modules/geomview-stereo
-$(top_builddir)/modules/.geomview-stereo: Makefile
+$(top_builddir)/modules/geomview-stereo: Makefile
$(top_srcdir)/mkmodulesdir $(top_builddir)
echo '(emodule-define "Stereo" "$(subdir)/stereo")' > $@
-CLEANFILES = $(top_builddir)/modules/.geomview-stereo $(module_DATA)
+CLEANFILES = $(top_builddir)/modules/geomview-stereo $(module_DATA)
Index: src/bin/sweep/.cvsignore
===================================================================
RCS file: /cvsroot/geomview/geomview/src/bin/sweep/.cvsignore,v
retrieving revision 1.3
diff -u -b -B -r1.3 .cvsignore
--- src/bin/sweep/.cvsignore 7 Aug 2006 08:39:29 -0000 1.3
+++ src/bin/sweep/.cvsignore 28 Dec 2006 05:33:48 -0000
@@ -1,6 +1,6 @@
*.la
*.lo
-.geomview-sweep
+geomview-sweep
.libs
.libs
Makefile Makefile.in .deps
Index: src/bin/sweep/Makefile.am
===================================================================
RCS file: /cvsroot/geomview/geomview/src/bin/sweep/Makefile.am,v
retrieving revision 1.9
diff -u -b -B -r1.9 Makefile.am
--- src/bin/sweep/Makefile.am 1 Aug 2006 15:51:35 -0000 1.9
+++ src/bin/sweep/Makefile.am 28 Dec 2006 05:33:48 -0000
@@ -13,17 +13,17 @@
sweep_DEPENDENCIES = $(OOGLLIB)
#sweep_LDFLAGS = -rpath $(libdir)
-module_DATA = .geomview-sweep
+module_DATA = geomview-sweep
-.geomview-sweep: Makefile
- echo '(emodule-define "Sweep" "sweep")' > .geomview-sweep
+geomview-sweep: Makefile
+ echo '(emodule-define "Sweep" "sweep")' > geomview-sweep
-all-local: $(top_builddir)/modules/.geomview-sweep
+all-local: $(top_builddir)/modules/geomview-sweep
-$(top_builddir)/modules/.geomview-sweep: Makefile
+$(top_builddir)/modules/geomview-sweep: Makefile
$(top_srcdir)/mkmodulesdir $(top_builddir)
echo '(emodule-define "Sweep" "$(subdir)/sweep")' > $@
-CLEANFILES = $(top_builddir)/modules/.geomview-sweep $(module_DATA)
+CLEANFILES = $(top_builddir)/modules/geomview-sweep $(module_DATA)
Index: src/bin/tackdown/.cvsignore
===================================================================
RCS file: /cvsroot/geomview/geomview/src/bin/tackdown/.cvsignore,v
retrieving revision 1.3
diff -u -b -B -r1.3 .cvsignore
--- src/bin/tackdown/.cvsignore 7 Aug 2006 08:39:29 -0000 1.3
+++ src/bin/tackdown/.cvsignore 28 Dec 2006 05:33:48 -0000
@@ -1,7 +1,7 @@
*.la
*.lo
-.geomview-origin
-.geomview-tackdown
+geomview-origin
+geomview-tackdown
.libs
.libs
Makefile Makefile.in .deps
Index: src/bin/tackdown/Makefile.am
===================================================================
RCS file: /cvsroot/geomview/geomview/src/bin/tackdown/Makefile.am,v
retrieving revision 1.10
diff -u -b -B -r1.10 Makefile.am
--- src/bin/tackdown/Makefile.am 1 Aug 2006 15:51:35 -0000 1.10
+++ src/bin/tackdown/Makefile.am 28 Dec 2006 05:33:48 -0000
@@ -21,28 +21,28 @@
origin_DEPENDENCIES = $(OOGLLIBS)
#origin_LDFLAGS = -rpath $(libdir)
-module_DATA = .geomview-tackdown .geomview-origin
+module_DATA = geomview-tackdown geomview-origin
-.geomview-tackdown: Makefile
- echo '(emodule-define "Tackdown" "tackdown")' > .geomview-tackdown
-.geomview-origin: Makefile
- echo '(emodule-define "Origin" "origin")' > .geomview-origin
+geomview-tackdown: Makefile
+ echo '(emodule-define "Tackdown" "tackdown")' > geomview-tackdown
+geomview-origin: Makefile
+ echo '(emodule-define "Origin" "origin")' > geomview-origin
all-local: \
- $(top_builddir)/modules/.geomview-tackdown \
- $(top_builddir)/modules/.geomview-origin
+ $(top_builddir)/modules/geomview-tackdown \
+ $(top_builddir)/modules/geomview-origin
-$(top_builddir)/modules/.geomview-tackdown: Makefile
+$(top_builddir)/modules/geomview-tackdown: Makefile
$(top_srcdir)/mkmodulesdir $(top_builddir)
echo '(emodule-define "Tackdown" "$(subdir)/tackdown")' > $@
-$(top_builddir)/modules/.geomview-origin: Makefile
+$(top_builddir)/modules/geomview-origin: Makefile
$(top_srcdir)/mkmodulesdir $(top_builddir)
echo '(emodule-define "Origin" "$(subdir)/origin")' > $@
CLEANFILES = \
- $(top_builddir)/modules/.geomview-tackdown \
- $(top_builddir)/modules/.geomview-origin \
+ $(top_builddir)/modules/geomview-tackdown \
+ $(top_builddir)/modules/geomview-origin \
$(module_DATA)
Index: src/bin/transformer/.cvsignore
===================================================================
RCS file: /cvsroot/geomview/geomview/src/bin/transformer/.cvsignore,v
retrieving revision 1.3
diff -u -b -B -r1.3 .cvsignore
--- src/bin/transformer/.cvsignore 7 Aug 2006 08:39:29 -0000 1.3
+++ src/bin/transformer/.cvsignore 28 Dec 2006 05:33:48 -0000
@@ -1,7 +1,7 @@
*.la
*.lo
-.geomview-transformer
+geomview-transformer
.libs
.libs
Makefile Makefile.in .deps
Index: src/bin/transformer/Makefile.am
===================================================================
RCS file: /cvsroot/geomview/geomview/src/bin/transformer/Makefile.am,v
retrieving revision 1.9
diff -u -b -B -r1.9 Makefile.am
--- src/bin/transformer/Makefile.am 1 Aug 2006 15:51:35 -0000 1.9
+++ src/bin/transformer/Makefile.am 28 Dec 2006 05:33:48 -0000
@@ -13,15 +13,15 @@
transformer_DEPENDENCIES = $(OOGLLIB)
#transformer_LDFLAGS = -rpath $(libdir)
-module_DATA = .geomview-transformer
+module_DATA = geomview-transformer
-.geomview-transformer:
- echo '(emodule-define "Transformer" "transformer")' >
.geomview-transformer
+geomview-transformer:
+ echo '(emodule-define "Transformer" "transformer")' >
geomview-transformer
-all-local: $(top_builddir)/modules/.geomview-transformer
+all-local: $(top_builddir)/modules/geomview-transformer
-$(top_builddir)/modules/.geomview-transformer: Makefile
+$(top_builddir)/modules/geomview-transformer: Makefile
$(top_srcdir)/mkmodulesdir $(top_builddir)
echo '(emodule-define "Transformer" "$(subdir)/transformer")' > $@
-CLEANFILES = $(top_builddir)/modules/.geomview-transformer $(module_DATA)
+CLEANFILES = $(top_builddir)/modules/geomview-transformer $(module_DATA)