summaryrefslogtreecommitdiff
path: root/editors
diff options
context:
space:
mode:
authorDavid E. O'Brien <obrien@FreeBSD.org>2001-04-26 15:11:36 +0000
committerDavid E. O'Brien <obrien@FreeBSD.org>2001-04-26 15:11:36 +0000
commit3ba0c841781e54e8314c3fb830341b3832aaab1d (patch)
tree3a9ec42f9bc3d87a0b401fe42230e51a2e65c3bb /editors
parentUpdate Vim 5.7 to patchlevel 30. (diff)
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.
Notes
Notes: svn path=/head/; revision=41922
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