![]() Home Overview FAQ Documentation Download Mailing List Geomview For Windows? Support Users Development Bug Reporting Contributing Contact Us Sponsors
|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Update REQ 5217]: unix problem with geomview
THE PROBLEM IS RESOLVED.
Thanks to all who helped.
I tried Stuart's suggestion but got no useful information:
In[1]:=
<< Geomview.m
-- Geomview graphics initialized --
In[2]:=
Options[Geomview]
Out[2]=
{DisplayHost -> , MachType -> sgi,
GeomviewCommand -> geomview}
Any how I followed the clue to look in OOGL.m.
and made the change from this:
$GeomviewPath = "geomview";
$GeomRoot = ".";
(* DO NOT CHANGE ANYTHING BELOW HERE *)
to this:
$GeomviewPath = "/LocalApps/geomview";
$GeomRoot = ".";
(* DO NOT CHANGE ANYTHING BELOW HERE *)
And now it works.
Finally.
of course that doesn't explain why all this was needed.
So for what it might be worth, here is the info that I gathered
before I did this. Note: id not not really want to put the binaries
into /LocalApps, but I wanted to make sure it was on my path.
% cd /LocalLibrary
% ls -l
total 2
drwxr-xr-x 3 root 1024 Sep 7 20:13 Images
drwxr-xr-x 2 root 1024 Sep 8 16:02 Mathematica
% cd /LocalApps
% ls -l
total 15234
-rw-r--r-- 1 root 35370 Dec 2 18:02 CHANGES
-rw-r--r-- 1 root 1717 Jan 28 1993 COPYING
drwxr-xr-x 13 root 1024 Jan 31 17:04 Geomview.app
drwxrwxrwx 2 root 1024 Jan 31 13:41 Geomview.pkg
-rw-r--r-- 1 root 264 Nov 16 1993 IMPORTANT_READ_THIS
-rw-rw-r-- 1 root 5735 Dec 14 18:10 INSTALL
-rw-r--r-- 1 root 10933 Dec 12 07:30 README
-rw-rw-r-- 1 root 1273 Nov 16 1993 REGISTER
drwxr-sr-x 3 root 1024 Jul 15 1994 UserInstaller.app
-rwxr-xr-x 1 root 688128 Jan 31 13:47 anytooff
-rwxr-xr-x 1 root 704512 Jan 31 13:47 anytoucd
-rwxr-xr-x 1 root 671744 Jan 31 13:47 bdy
-rwxr-xr-x 1 root 712704 Jan 31 13:47 clip
drwxr-sr-x 6 root 1024 Jul 15 1994 co-Xist.app
drwxr-sr-x 3 root 1024 Jul 15 1994 co-XistLinker.app
-rwxr-xr-x 1 root 734 Jan 31 13:47 geomstuff
-rwxr-xr-x 1 root 59 Jan 31 13:47 geomview
-rw-r--r-- 1 root 10250240 Jan 23 11:25 geomview-1.5.0-next.tar
-rwxr-xr-x 1 root 59 Jan 31 13:47 gv
-rwxr-xr-x 1 root 73728 Jan 31 13:47 math2oogl
-rwxr-xr-x 1 root 1024 Jan 31 13:47 medit2gv
-rwxr-xr-x 1 root 671744 Jan 31 13:47 offconsol
-rwxr-xr-x 1 root 851968 Jan 31 13:47 oogl2rib
-rwxr-xr-x 1 root 98304 Jan 31 13:47 polymerge
-rwxr-xr-x 1 root 57344 Jan 31 13:47 togeomview
-rwxr-xr-x 1 root 679936 Jan 31 13:47 ucdtooff
% cat geomview
#! /bin/sh
exec /LocalApps/Geomview.app/Geomview ${1+"$@"}
% cat gv
#! /bin/sh
exec /LocalApps/Geomview.app/Geomview ${1+"$@"}
% cat /LocalApps/Geomview.app/CONFIG.gv
(progn
#
# $GEOMVIEW_DIR refers to the Geomview.app directory.
#
# In its default location in the source tree, GEOMROOT should
point
# five directories above the geomview/next/Geomview.app wrapper:
( setenv GEOMROOT '/LocalApps/Geomview.app')
# The above setting is edited appropriately during 'make install'.
# Now indicate the root of the tree of data files.
$GEOMROOT/data is their
# default location; edit this line if you move the data files
elsewhere:
( setenv GEOMVIEW_DATA $GEOMROOT/data )
#
# In any case, CONFIG.gv should include something like the
following,
# to set the search paths for the above.
#
# this is previous version
#( set-load-path ( $GEOMVIEW_DATA/geom $GEOMVIEW_DATA
# /NetDisk3/Prof_Roseman/geomview/geom . ) )
( set-load-path ( $GEOMVIEW_DATA/geom
/NetDisk3/Prof_Roseman/geomview/geom . ) )
( set-emodule-path ( $GEOMROOT/modules/next ) )
# Some external modules expect $GEOMDATA to point to the data
tree.
( setenv GEOMDATA $GEOMVIEW_DATA )
#
# Normally the main init file (read before the user's own
~/.geomview)
# lives in "Geomview.app/geomview.gv"; this could be overridden by
e.g.:
#
# ( setenv GEOMVIEW_SYSTEM_INITFILE $GEOMVIEW_DATA/.geomview )
#
# CONFIG.gv is intended for configuring pathnames only; other
initialization
# should be done in the file specified by
GEOMVIEW_SYSTEM_INITFILE.
# This is the minimal initialization file.
# Change only pathnames here.
)
% cat /LocalApps/Geomview.app/geomview
#! /bin/sh
exec /LocalApps/Geomview.app/Geomview ${1+"$@"}
% cat /LocalApps/Geomview.app/install.log
GEOMROOT=/LocalApps/Geomview.app
BINDIR=/LocalApps
MANDIR=/usr/man
MACHTYPE=next
MMAPACKAGEDIR=NextApps/Mathematica22.app/Library/Mathematica/Packages
Removed previously existing /LocalApps/bdy
Installed bin/next/bdy in /LocalApps
Installed bin/next/clip in /LocalApps
Removed previously existing /LocalApps/math2oogl
Installed bin/next/math2oogl in /LocalApps
Removed previously existing /LocalApps/oogl2rib
Installed bin/next/oogl2rib in /LocalApps
Removed previously existing /LocalApps/anytooff
Installed bin/next/anytooff in /LocalApps
Removed previously existing /LocalApps/offconsol
Installed bin/next/offconsol in /LocalApps
Removed previously existing /LocalApps/polymerge
Installed bin/next/polymerge in /LocalApps
Removed previously existing /LocalApps/anytoucd
Installed bin/next/anytoucd in /LocalApps
Removed previously existing /LocalApps/ucdtooff
Installed bin/next/ucdtooff in /LocalApps
Removed previously existing /LocalApps/geomview
Installed bin/next/geomview in /LocalApps
Removed previously existing /LocalApps/togeomview
Installed bin/next/togeomview in /LocalApps
Removed previously existing /LocalApps/geomstuff
Installed bin/next/geomstuff in /LocalApps
Removed previously existing /LocalApps/medit2gv
Installed bin/next/medit2gv in /LocalApps
Installed bin/next/gv in /LocalApps
Edited "geomview" to set GEOMROOT=/LocalApps/Geomview.app.
Removed previously existing /LocalApps/geomview
Installed geomview in /LocalApps
Installed man/man1/addbbox.1 in /usr/man/man1
Removed previously existing /usr/man/man1/anytooff.1
Installed man/man1/anytooff.1 in /usr/man/man1
Removed previously existing /usr/man/man1/anytoucd.1
Installed man/man1/anytoucd.1 in /usr/man/man1
Removed previously existing /usr/man/man1/bdy.1
Installed man/man1/bdy.1 in /usr/man/man1
Installed man/man1/clip.1 in /usr/man/man1
Removed previously existing /usr/man/man1/crayola.1
Installed man/man1/crayola.1 in /usr/man/man1
Removed previously existing /usr/man/man1/geomstuff.1
Installed man/man1/geomstuff.1 in /usr/man/man1
Removed previously existing /usr/man/man1/geomview.1
Installed man/man1/geomview.1 in /usr/man/man1
Installed man/man1/medit2gv.1 in /usr/man/man1
Removed previously existing /usr/man/man1/nose.1
Installed man/man1/nose.1 in /usr/man/man1
Removed previously existing /usr/man/man1/offconsol.1
Installed man/man1/offconsol.1 in /usr/man/man1
Removed previously existing /usr/man/man1/polymerge.1
Installed man/man1/polymerge.1 in /usr/man/man1
Installed man/man1/pssnap.1 in /usr/man/man1
Removed previously existing /usr/man/man1/togeomview.1
Installed man/man1/togeomview.1 in /usr/man/man1
Removed previously existing /usr/man/man1/ucdtooff.1
Installed man/man1/ucdtooff.1 in /usr/man/man1
Removed previously existing /usr/man/man1/warp.1
Installed man/man1/warp.1 in /usr/man/man1
Installed man/cat1/addbbox.1 in /usr/man/cat1
Removed previously existing /usr/man/cat1/anytooff.1
Installed man/cat1/anytooff.1 in /usr/man/cat1
Removed previously existing /usr/man/cat1/anytoucd.1
Installed man/cat1/anytoucd.1 in /usr/man/cat1
Removed previously existing /usr/man/cat1/bdy.1
Installed man/cat1/bdy.1 in /usr/man/cat1
Installed man/cat1/clip.1 in /usr/man/cat1
Removed previously existing /usr/man/cat1/crayola.1
Installed man/cat1/crayola.1 in /usr/man/cat1
Removed previously existing /usr/man/cat1/geomstuff.1
Installed man/cat1/geomstuff.1 in /usr/man/cat1
Removed previously existing /usr/man/cat1/geomview.1
Installed man/cat1/geomview.1 in /usr/man/cat1
Installed man/cat1/medit2gv.1 in /usr/man/cat1
Removed previously existing /usr/man/cat1/nose.1
Installed man/cat1/nose.1 in /usr/man/cat1
Removed previously existing /usr/man/cat1/offconsol.1
Installed man/cat1/offconsol.1 in /usr/man/cat1
Removed previously existing /usr/man/cat1/polymerge.1
Installed man/cat1/polymerge.1 in /usr/man/cat1
Installed man/cat1/pssnap.1 in /usr/man/cat1
Removed previously existing /usr/man/cat1/togeomview.1
Installed man/cat1/togeomview.1 in /usr/man/cat1
Removed previously existing /usr/man/cat1/ucdtooff.1
Installed man/cat1/ucdtooff.1 in /usr/man/cat1
Removed previously existing /usr/man/cat1/warp.1
Installed man/cat1/warp.1 in /usr/man/cat1
Removed previously existing /usr/man/man5/oogl.5
Installed man/man5/oogl.5 in /usr/man/man5
Installed man/man5/discgrp.5 in /usr/man/man5
Removed previously existing /usr/man/man5/geomview.5
Installed man/man5/geomview.5 in /usr/man/man5
Removed previously existing /usr/man/cat5/oogl.5
Installed man/cat5/oogl.5 in /usr/man/cat5
Installed man/cat5/discgrp.5 in /usr/man/cat5
Removed previously existing /usr/man/cat5/geomview.5
Installed man/cat5/geomview.5 in /usr/man/cat5
Installed mathematica/OOGL.m in
NextApps/Mathematica22.app/Library/Mathematica/Packages
Installed mathematica/Geomview.m in
NextApps/Mathematica22.app/Library/Mathematica/Packages
Installed mathematica/BezierPlot.m in
NextApps/Mathematica22.app/Library/Mathematica/Packages
The Maple-to-Geomview package is in /LocalApps/Geomview.app/maple
(not installed elsewhere).
Geomview installation complete.
% echo $PATH
.:/usr/local/bin:/usr/ucb:/bin:/usr/bin:/Net/Pen3/NetDisk3/Prof_Rosema
n/Apps:/LocalApps:/NextApps
%
|
||
|
Home | Overview | FAQ | Documentation | Support | Download | Mailing List Windows? | Development | Bug Reporting | Contributing | Contact Us | Sponsors |
|||
|
site hosted by |
|||