diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 2003-11-01 23:41:22 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 2003-11-01 23:41:22 +0000 |
commit | 221c4a5253ed4bb32ce8b5dc353a40c5e1dc3138 (patch) | |
tree | 87995c90d04d46990e0b89edea8800a80083f701 | |
parent | f31caf8e1f4612eeb393858b7d842ff7282bcff8 (diff) |
Notes
-rw-r--r-- | editors/vim/files/patch-01 | 34 |
1 files changed, 25 insertions, 9 deletions
diff --git a/editors/vim/files/patch-01 b/editors/vim/files/patch-01 index 5ad164430b91..db40ea3bd222 100644 --- a/editors/vim/files/patch-01 +++ b/editors/vim/files/patch-01 @@ -1,15 +1,25 @@ ---- Makefile.orig Sun Mar 24 02:41:30 2002 -+++ Makefile Mon Jun 10 17:18:07 2002 -@@ -282,2 +282,3 @@ +--- Makefile.orig Sun Jun 1 06:18:29 2003 ++++ Makefile Sat Nov 1 15:39:09 2003 +@@ -288,6 +288,7 @@ + # of make, will buid Vim. + # CONFIGURE - configure arguments {{{1 +CONF_ARGS = --prefix=$(PREFIX) # You can give a lot of options to configure. -@@ -1651,3 +1652,3 @@ + # Change this to your desire and do 'make config' afterwards + +@@ -1733,7 +1734,7 @@ + INSTALL_DATA=$(INSTALL_DATA) FILEMOD=$(FILEMOD) install; \ + fi if test -d $(LANGSOURCE); then \ - $(INSTALL_DATA) $(LANGSOURCE)/README.txt $(LANGSOURCE)/*.vim $(DEST_LANG); \ + $(INSTALL_DATA) $(LANGSOURCE)/*.vim $(DEST_LANG); \ - chmod $(FILEMOD) $(DEST_LANG)/*.vim; \ -@@ -1712,36 +1713,36 @@ + chmod $(FILEMOD) $(DEST_LANG)/README.txt $(DEST_LANG)/*.vim; \ + fi + if test -d $(KMAPSOURCE); then \ +@@ -1794,40 +1795,40 @@ + installgvimdiff: $(DEST_BIN)/$(GVIMDIFFTARGET) + $(DEST_BIN)/$(EXTARGET): - cd $(DEST_BIN); ln -s $(VIMTARGET) $(EXTARGET) + #cd $(DEST_BIN); ln -sf $(VIMTARGET) $(EXTARGET) @@ -58,14 +68,18 @@ - cd $(DEST_BIN); ln -s $(VIMTARGET) $(EVIEWTARGET) + cd $(DEST_BIN); ln -sf $(VIMTARGET) $(EVIEWTARGET) -@@ -1763,30 +1764,30 @@ + # create links for the manual pages with various names to vim. This is only + # done when the links (or manpages with the same name) don't exist yet. +@@ -1845,34 +1846,34 @@ + $(DEST_MAN)/$(EVIEWNAME).1 + $(DEST_MAN)/$(EXNAME).1: - cd $(DEST_MAN); ln -s $(VIMNAME).1 $(EXNAME).1 -+ cd $(DEST_MAN); ln -sf $(VIMNAME).1 $(EXNAME).1 ++ #cd $(DEST_MAN); ln -sf $(VIMNAME).1 $(EXNAME).1 $(DEST_MAN)/$(VIEWNAME).1: - cd $(DEST_MAN); ln -s $(VIMNAME).1 $(VIEWNAME).1 -+ cd $(DEST_MAN); ln -sf $(VIMNAME).1 $(VIEWNAME).1 ++ #cd $(DEST_MAN); ln -sf $(VIMNAME).1 $(VIEWNAME).1 $(DEST_MAN)/$(GVIMNAME).1: - cd $(DEST_MAN); ln -s $(VIMNAME).1 $(GVIMNAME).1 @@ -99,3 +113,5 @@ - cd $(DEST_MAN); ln -s $(EVIMNAME).1 $(EVIEWNAME).1 + cd $(DEST_MAN); ln -sf $(EVIMNAME).1 $(EVIEWNAME).1 + uninstall: uninstall_runtime + -rm -f $(DEST_BIN)/$(VIMTARGET) |