graphics/graphviz: Initial import
This commit is contained in:
parent
00ac088037
commit
fdb8fac77c
|
@ -0,0 +1,11 @@
|
|||
Graphviz is open source graph visualization software. It has several main
|
||||
graph layout programs. It also has web and interactive graphical interfaces,
|
||||
and auxiliary tools, libraries, and language bindings.
|
||||
|
||||
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.
|
||||
|
||||
This requires SWIG for building language bindings (available at
|
||||
SlackBuilds.org).
|
|
@ -0,0 +1,3 @@
|
|||
# Configure plugins (writes $prefix/lib/graphviz/config with available plugin
|
||||
# information)
|
||||
dot -c
|
|
@ -0,0 +1,66 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for graphviz
|
||||
|
||||
# Written by Audrius Kažukauskas
|
||||
|
||||
# Exit on most errors
|
||||
set -e
|
||||
|
||||
PRGNAM=graphviz
|
||||
VERSION=2.12
|
||||
ARCH=${ARCH:-i486}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
CWD=`pwd`
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
if [ "$ARCH" = "i486" ]; then
|
||||
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
||||
elif [ "$ARCH" = "i686" ]; then
|
||||
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||
fi
|
||||
|
||||
rm -rf $PKG $TMP/$PRGNAM-$VERSION
|
||||
mkdir -p $PKG $PKG $OUTPUT
|
||||
cd $TMP
|
||||
tar -zxvf $CWD/$PRGNAM-$VERSION.tar.gz
|
||||
cd $PRGNAM-$VERSION
|
||||
|
||||
chown -R root:root .
|
||||
chmod -R u+w,go+r-w,a-s .
|
||||
|
||||
CFLAGS="$SLKCFLAGS" \
|
||||
CXXFLAGS="$SLKCFLAGS" \
|
||||
./configure \
|
||||
--prefix=/usr \
|
||||
--with-mylibgd \
|
||||
--disable-static
|
||||
|
||||
make
|
||||
make install-strip DESTDIR=$PKG
|
||||
|
||||
if [ -d $PKG/usr/man ]; then
|
||||
( cd $PKG/usr/man
|
||||
find . -type f -exec gzip -9 {} \;
|
||||
for i in `find . -type l` ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
|
||||
)
|
||||
fi
|
||||
|
||||
# Remove empty directories of language bindings that are absent
|
||||
find $PKG/usr/lib/graphviz -depth -type d -empty -exec rmdir {} \;
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a INSTALL README* $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
mv $PKG/usr/share/$PRGNAM/doc/* $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
rmdir $PKG/usr/share/$PRGNAM/doc/
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
|
||||
mkdir -p $PKG/install
|
||||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||
cat $CWD/doinst.sh > $PKG/install/doinst.sh
|
||||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n -p $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz
|
|
@ -0,0 +1,8 @@
|
|||
PRGNAM="graphviz"
|
||||
VERSION="2.12"
|
||||
HOMEPAGE="http://graphviz.org/"
|
||||
DOWNLOAD="http://graphviz.org/pub/graphviz/ARCHIVE/graphviz-2.12.tar.gz"
|
||||
MD5SUM="e5547bc0ec47943c72f5c3e2b5dff58f"
|
||||
MAINTAINER="Audrius Kazukauskas"
|
||||
EMAIL="neobug@tornado.ktu.lt"
|
||||
APPROVED="BP{k}"
|
|
@ -0,0 +1,11 @@
|
|||
graphviz: Graphviz (Graph Visualization)
|
||||
graphviz:
|
||||
graphviz: Graphviz is open source graph visualization software. It has
|
||||
graphviz: several main graph layout programs. It also has web and
|
||||
graphviz: interactive graphical interfaces, and auxiliary tools, libraries,
|
||||
graphviz: and language bindings.
|
||||
graphviz:
|
||||
graphviz: Homepage: http://graphviz.org/
|
||||
graphviz:
|
||||
graphviz:
|
||||
graphviz:
|
Loading…
Reference in New Issue