Difference between revisions of "Graphviz"
(I filled in the package description.) |
(I updated the dependencies to better match what the project's site says.) |
||
Line 22: | Line 22: | ||
== Dependencies == | == Dependencies == | ||
+ | |||
+ | === Required === | ||
+ | |||
+ | * [[Expat]] | ||
+ | |||
+ | === Recommended === | ||
+ | |||
+ | * [[Cairo]] (Required for [[Pango]]) | ||
+ | * [[FontConfig]] (Required for [[Pango]], optional for [[GD]]) | ||
+ | * [[FreeType]] (Required for [[Pango]], optional for [[GD]]) | ||
+ | * [[Glib2]] (Required for [[Pango]], optional for [[GD]]) | ||
+ | * [[libpng]] (Required for [[Cairo]], Optional for [[GD]]) | ||
+ | * [[Pango]] | ||
=== Optional === | === Optional === | ||
* [[X Window System]] | * [[X Window System]] | ||
* [[pkg-config]] | * [[pkg-config]] | ||
− | |||
− | |||
* [[libjpeg]] | * [[libjpeg]] | ||
* [[FreeType]] | * [[FreeType]] | ||
Line 34: | Line 45: | ||
* [[Tk]] | * [[Tk]] | ||
* [[Electric Fence]] | * [[Electric Fence]] | ||
+ | * [[GD]] | ||
=== Optional (Language Bindings) === | === Optional (Language Bindings) === |
Revision as of 02:50, 29 January 2007
Download Source: | http://www.graphviz.org/pub/graphviz/ARCHIVE/graphviz-2.26.3.tar.gz |
---|
Contents
Introduction to Graphviz
Graph visualization is a way of representing structural information as diagrams of abstract graphs and networks. Automatic graph drawing has many important applications in software engineering, database and web design, networking, and in visual interfaces for many other domains.
Graphviz is open source graph visualization software. It has several main graph layout programs. See the gallery for some sample layouts. It also has web and interactive graphical interfaces, and auxiliary tools, libraries, and language bindings.
The Graphviz layout programs take descriptions of graphs in a simple text language, and make diagrams in several useful formats such as images and SVG for web pages, Postscript for inclusion in PDF or other documents; or display in an interactive graph browser. (Graphviz also supports GXL, an XML dialect.)
Graphviz has many useful features for concrete diagrams, such as options for colors, fonts, tabular node layouts, line styles, hyperlinks, and custom shapes.
In practice, graphs are usually generated from an external data sources, but they can also be created and edited manually, either as raw text files or within a graphical editor. (Graphviz was not intended to be a Visio replacement, so it is probably frustrating to try to use it that way.)
Project Home Page: http://www.graphviz.org/
Dependencies
Required
Recommended
- Cairo (Required for Pango)
- FontConfig (Required for Pango, optional for GD)
- FreeType (Required for Pango, optional for GD)
- Glib2 (Required for Pango, optional for GD)
- libpng (Required for Cairo, Optional for GD)
- Pango
Optional
Optional (Language Bindings)
- SWIG (Required to build any bindings)
- Guile
- JDK
- PHP
- Python
- Ruby
- TCL
- DotGNU Portable.NET or Mono
- io
- Lua
- Objective Caml
Non-Multilib
Compile the package:
./configure --prefix=/usr && make
Install the package
make install
Multilib
32Bit
Compile the package:
CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" USE_ARCH=32 PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \ ./configure --prefix=/usr --host=$CLFS_TARGET32 && make
Install the package
make install
N32
Compile the package:
sed -i -e "/PYTHON_LIBS=/s@/lib@&32@" \ -e '/RUBY_LIBS="/s/".*"/"-lruby"/g' configure && CC="gcc ${BUILDN32}" CXX="g++ ${BUILDN32}" USE_ARCH=n32 PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" \ ./configure --prefix=/usr --libdir=/usr/lib32 && make
Install the package
make install
64Bit
Compile the package:
sed -i -e "/PYTHON_LIBS=/s@/lib@&64@" \ -e '/RUBY_LIBS="/s/".*"/"-lruby"/g' configure && CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" USE_ARCH=64 PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \ ./configure --prefix=/usr --libdir=/usr/lib64 && make
Install the package
make install