From owner-svn-ports-all@freebsd.org Thu Oct 20 20:49:41 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9694BC1BAAB; Thu, 20 Oct 2016 20:49:41 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6552E173; Thu, 20 Oct 2016 20:49:41 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u9KKneoT086984; Thu, 20 Oct 2016 20:49:40 GMT (envelope-from dinoex@FreeBSD.org) Received: (from dinoex@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u9KKnelY086983; Thu, 20 Oct 2016 20:49:40 GMT (envelope-from dinoex@FreeBSD.org) Message-Id: <201610202049.u9KKnelY086983@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dinoex set sender to dinoex@FreeBSD.org using -f From: Dirk Meyer Date: Thu, 20 Oct 2016 20:49:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r424356 - head/graphics/graphviz/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Oct 2016 20:49:41 -0000 Author: dinoex Date: Thu Oct 20 20:49:40 2016 New Revision: 424356 URL: https://svnweb.freebsd.org/changeset/ports/424356 Log: - fix path to vimdot Submitted by: Jonathan Anderson Added: head/graphics/graphviz/files/patch-plugin_xlib_vimdot.sh (contents, props changed) Added: head/graphics/graphviz/files/patch-plugin_xlib_vimdot.sh ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/graphviz/files/patch-plugin_xlib_vimdot.sh Thu Oct 20 20:49:40 2016 (r424356) @@ -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 + }