summaryrefslogtreecommitdiff
path: root/graphics
diff options
context:
space:
mode:
authorDirk Meyer <dinoex@FreeBSD.org>2016-10-20 20:49:40 +0000
committerDirk Meyer <dinoex@FreeBSD.org>2016-10-20 20:49:40 +0000
commitc5198c75db32b2bb9b3127cdd0d2e228c08d55b6 (patch)
treed0eb537e6a848246465e9d3a9edd2c8a10cb2a55 /graphics
parentdatabases/percona-pam-for-mysql: Fix build (diff)
- fix path to vimdot
Submitted by: Jonathan Anderson
Notes
Notes: svn path=/head/; revision=424356
Diffstat (limited to 'graphics')
-rw-r--r--graphics/graphviz/files/patch-plugin_xlib_vimdot.sh20
1 files changed, 20 insertions, 0 deletions
diff --git a/graphics/graphviz/files/patch-plugin_xlib_vimdot.sh b/graphics/graphviz/files/patch-plugin_xlib_vimdot.sh
new file mode 100644
index 000000000000..76d8843b6cde
--- /dev/null
+++ b/graphics/graphviz/files/patch-plugin_xlib_vimdot.sh
@@ -0,0 +1,20 @@
+--- plugin/xlib/vimdot.sh.orig 2016-09-26 23:00:07 UTC
++++ plugin/xlib/vimdot.sh
+@@ -3,7 +3,7 @@
+
+ error() { echo "$0: $*" >&2; exit 1; }
+
+-editor="/usr/bin/vim"
++editor="/usr/local/bin/vim"
+
+ if ! test -x "$editor"; then error "the \"$editor\" editor not found or not executable"; fi
+
+@@ -23,7 +23,7 @@ digraph G {
+
+ vim [href="http://www.vim.org/"]
+ dot [href="http://www.graphviz.org/"]
+- vimdot [href="file:///usr/bin/vimdot"]
++ vimdot [href="file:///usr/local/bin/vimdot"]
+
+ {vim dot} -> vimdot
+ }