Adding graphviz-2.24 to the port tree.

Build scripts could use some love by someone with more autotools knowledge.
This commit is contained in:
Chris Roberts
2009-10-31 05:24:25 +00:00
parent 59838ad932
commit ff69f00663
3 changed files with 86 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
DESCRIPTION="graphviz - Open Source Graph Visualization Software."
HOMEPAGE="http://www.graphviz.org/"
SRC_URI="http://www.graphviz.org/pub/graphviz/stable/SOURCES/graphviz-2.24.0.tar.gz"
REVISION="1"
STATUS_HAIKU="stable"
DEPEND=""
BUILD {
cd graphviz-2.24.0
cp /boot/common/share/libtool/config/config.guess config
cp /boot/common/share/libtool/config/config.guess lib/gd/config
cp /boot/common/share/libtool/config/config.guess libltdl
cp /boot/common/share/libtool/config/config.sub config
cp /boot/common/share/libtool/config/config.sub lib/gd/config
cp /boot/common/share/libtool/config/config.sub libltdl
autoconf
./configure --prefix=/boot/common --disable-shared --enable-static CFLAGS="-O0" LDFLAGS="-L/boot/common/lib -liconv"
make
}
INSTALL {
cd graphviz-2.24.0
make install
cd /boot/common/bin
ln -s dot_static dot
}