From 2bd47ab87eda16e1ed6c0bd377c0187fc8791fcc Mon Sep 17 00:00:00 2001 From: Heinz Wiesinger Date: Mon, 21 Mar 2011 21:32:23 +0100 Subject: graphics/graphviz: More proper php support. Signed-off-by: Heinz Wiesinger --- graphics/graphviz/doinst.sh | 15 +++++++++++++++ graphics/graphviz/graphviz.SlackBuild | 8 +++++++- graphics/graphviz/graphviz.ini | 12 ++++++++++++ 3 files changed, 34 insertions(+), 1 deletion(-) create mode 100644 graphics/graphviz/graphviz.ini (limited to 'graphics/graphviz') diff --git a/graphics/graphviz/doinst.sh b/graphics/graphviz/doinst.sh index 24af708a0e..3eeed5b0f0 100644 --- a/graphics/graphviz/doinst.sh +++ b/graphics/graphviz/doinst.sh @@ -1,3 +1,18 @@ +config() { + NEW="$1" + OLD="$(dirname $NEW)/$(basename $NEW .new)" + # If there's no config file by that name, mv it over: + if [ ! -r $OLD ]; then + mv $NEW $OLD + elif [ "$(cat $OLD|md5sum)" = "$(cat $NEW|md5sum)" ]; then + # toss the redundant copy + rm $NEW + fi + # Otherwise, we leave the .new copy for the admin to consider... +} + +config etc/php/graphviz.ini.new + # Configure plugins # (writes /usr/lib*/graphviz/config6 with available plugin information) chroot . /usr/bin/dot -c diff --git a/graphics/graphviz/graphviz.SlackBuild b/graphics/graphviz/graphviz.SlackBuild index 64b22ddf13..26f0b53991 100644 --- a/graphics/graphviz/graphviz.SlackBuild +++ b/graphics/graphviz/graphviz.SlackBuild @@ -4,10 +4,11 @@ # Written by Audrius Kažukauskas # Modified by Robby Workman +# Modified by Heinz Wiesinger PRGNAM=graphviz VERSION=${VERSION:-2.26.3} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then @@ -61,6 +62,11 @@ CXXFLAGS="$SLKCFLAGS" \ make make install-strip DESTDIR=$PKG +# Move php bindings to proper location and install config file +mv $PKG/usr/lib$LIBDIRSUFFIX/php/modules \ + $PKG/usr/lib$LIBDIRSUFFIX/php/extensions +install -D -m 644 $CWD/graphviz.ini $PKG/etc/php/graphviz.ini.new + find $PKG/usr/man -type f -exec gzip -9 {} \; for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done diff --git a/graphics/graphviz/graphviz.ini b/graphics/graphviz/graphviz.ini new file mode 100644 index 0000000000..6561f21010 --- /dev/null +++ b/graphics/graphviz/graphviz.ini @@ -0,0 +1,12 @@ +; Enable graphviz extension module +; extension=gv.so + +; Graphviz' own documentation mentions a "gv.php" file that should +; be included. This file is however not necessary, it is just a +; wrapper class around functions that are already available after +; loading the extension, just leave out the "gv::" prefix. +; In case you still prefer to use the wrapper class you have to +; include it using its absolute path: +; -- cgit v1.2.3-65-gdbad