aboutsummaryrefslogtreecommitdiffstats
path: root/editors
diff options
context:
space:
mode:
authorobrien <obrien@FreeBSD.org>2001-04-26 23:11:36 +0800
committerobrien <obrien@FreeBSD.org>2001-04-26 23:11:36 +0800
commitcd30416c6ff3eb774414690cb8ed419af1abbaff (patch)
treee66dc211c817e5e482cc438c8b3f869fdc5efee6 /editors
parent4ab06828d8388115cc311669a1eda28242c02774 (diff)
downloadfreebsd-ports-gnome-cd30416c6ff3eb774414690cb8ed419af1abbaff.tar.gz
freebsd-ports-gnome-cd30416c6ff3eb774414690cb8ed419af1abbaff.tar.zst
freebsd-ports-gnome-cd30416c6ff3eb774414690cb8ed419af1abbaff.zip
Make sure all the possible "vim" links that can exist, do.
For example, the Vim Makefile will not create the "rgvim" link in the non-GUI case, but since we share the PLIST among all the various vim ports, we have to be consistent.
Diffstat (limited to 'editors')
-rw-r--r--editors/vim5/Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/editors/vim5/Makefile b/editors/vim5/Makefile
index ed7ae73108ee..ca4462d9acbb 100644
--- a/editors/vim5/Makefile
+++ b/editors/vim5/Makefile
@@ -87,6 +87,10 @@ pre-build:
post-install:
[ -e ${PREFIX}/bin/gvim ] || (cd ${PREFIX}/bin ; ${LN} -s vim gvim)
+ # below needed for `vim-lite' port
+ test -e ${PREFIX}/bin/rgvim || (cd ${PREFIX}/bin ; ${LN} -s vim rgvim)
+ test -e ${PREFIX}/bin/gview || (cd ${PREFIX}/bin ; ${LN} -s vim gview)
+ test -e ${PREFIX}/bin/rgview || (cd ${PREFIX}/bin ; ${LN} -s vim rgview)
@${RM} -f ${PREFIX}/man/man1/etags.1
@${MV} ${PREFIX}/man/man1/ctags.1 ${PREFIX}/man/man1/ectags.1