diff options
author | Dirk Meyer <dinoex@FreeBSD.org> | 2016-10-20 20:49:40 +0000 |
---|---|---|
committer | Dirk Meyer <dinoex@FreeBSD.org> | 2016-10-20 20:49:40 +0000 |
commit | c5198c75db32b2bb9b3127cdd0d2e228c08d55b6 (patch) | |
tree | d0eb537e6a848246465e9d3a9edd2c8a10cb2a55 /graphics/graphviz | |
parent | f3216e871e20729ce9e740925eab07afc790cfde (diff) | |
download | ports-c5198c75db32b2bb9b3127cdd0d2e228c08d55b6.tar.gz ports-c5198c75db32b2bb9b3127cdd0d2e228c08d55b6.zip |
Notes
Diffstat (limited to 'graphics/graphviz')
-rw-r--r-- | graphics/graphviz/files/patch-plugin_xlib_vimdot.sh | 20 |
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 + } |