OpenACS Documentation : Workflow : Installation and Getting Started Guide
You can install GraphViz anywhere you want. A good
place is in /usr/local. Here's the commands that can be
used to install this on a Linux system. You probably need to be root to do
this.
$ su - $ cd /usr/local $ wget http://www.research.att.com/sw/tools/graphviz/gviz1.5.linux.i386.tgz (substitute the URL for your operating system, if not Linux) $ tar xvfz gviz1.5.linux.i386.tgz $ ln -s gv1.5 graphviz $ cd bin $ ln -s /usr/local/graphviz/bin/dot dot
Note: on Debian, you can do: apt-get install graphviz
On Linux, you can install the RPM fonts:
$ su - $ wget ftp://rpmfind.net/linux/contrib/noarch/noarch/webfonts-1-3.noarch.rpm $ rpm -ivh webfonts-1-3.noarch.rpm $ cp /usr/X11R6/lib/X11/fonts/webfonts/*.ttf /usr/local/lib/fonts/You don't have to copy over all the fonts. For the standard installation, you only need
arial.ttf,
arialb.ttf, and times.ttf. You may also symlink
them if you prefer. But the above will work.
If you have a recent version of Solaris, you can probably find the
fonts in /usr/openwin/lib/X11/font/TrueType/. The names
are not what GraphViz expects, though, so you should create links with
the appropriate names in /usr/local/lib/fonts/:
$ su - $ ln -s /usr/openwin/lib/X11/font/TrueType/Arial.ttf /usr/local/lib/fonts/arial.ttf $ ln -s /usr/openwin/lib/X11/font/TrueType/Arial-Bold.ttf /usr/local/lib/fonts/arialb.ttf $ ln -s /usr/openwin/lib/X11/font/TrueType/TimesNewRoman.ttf /usr/local/lib/fonts/times.ttf
If neither of these options works for you and you have a Windows machine handy, you can download the Microsoft fonts:
c:\windows\fonts or
c:\winnt\fonts.
arial.ttf and arialb.ttf onto your
server Unix machine, into /usr/local/lib/fonts. If you
want, you can download, install and copy over additional font files.
/admin/site-map on your
webserver.
graphviz_dot_path parameter points to the dot
binary that you just installed e.g., /usr/local/bin/dot,
and the tmp_path parameter should point to some directory
where temporary files can be stored e.g., /var/tmp.
/workflow/, click on admin, and study the
sample processes included.
| Last Modified: $Date: 2002/02/11 07:45:52 $ |