diff options
author | obrien <obrien@FreeBSD.org> | 2003-11-02 07:41:22 +0800 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2003-11-02 07:41:22 +0800 |
commit | 237eb82dc811af007b19390e47b6a1fc856e65b2 (patch) | |
tree | b65eed5624b2eb1d56669c7d794b4d214f98c8b1 /editors | |
parent | b950f42759600e13c3e27b174e5b0745fb54b52f (diff) | |
download | freebsd-ports-gnome-237eb82dc811af007b19390e47b6a1fc856e65b2.tar.gz freebsd-ports-gnome-237eb82dc811af007b19390e47b6a1fc856e65b2.tar.zst freebsd-ports-gnome-237eb82dc811af007b19390e47b6a1fc856e65b2.zip |
Don't instally {ex,view}.1 links.
Reported by: Alex Vasylenko <lxv@omut.org>
Diffstat (limited to 'editors')
-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) |