diff options
author | Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2014-02-18 21:30:04 +0000 |
---|---|---|
committer | Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2014-02-18 21:30:04 +0000 |
commit | 7436b0f6bbf09f72a5038e18de00cc0f7a21f268 (patch) | |
tree | 4513dd0d3ba1dc135c9484924b72c594f4a04bc9 /editors/vim/files/patch-01 | |
parent | - Add PYTHON option (diff) |
- Use USES=iconv unconditionally
- Remove cumbersome do-patch:
- Use do-patch: in bsd.port.mk
- Mark 064, 087 and 147 as BADPATCHES
- 064 does not apply cleanly (in bsd.port.mk way on FreeBSD 9.x or older)
- 087 contains patch for src/ops.c which must be applied after 064
- 147 contains patch for src/version.c which must be applied after 087
- Apply BADPATCHES in post-patch:
- Fix keymap installation for vim-lite
- Install keymap in vim source
- Install vietnamese_viscii.vim correctly
- Do not install GUI binary executables and manpages when GUI options are off
- Allow build with python 3.x
- Merge options to Makefile
- Use PORTDATA
- Convert to new options helper
- Use CONFLICTS_INSTALL instead of CONFLICTS
- Use REINPLACE_CMD instead of patch file
- Support STAGEDIR
- Pet portlint
- Cleanup Makefile
- Fix PLIST
- Cosmetic change
- Bump PORTREVISION for dependency and package change
Notes
Notes:
svn path=/head/; revision=344966
Diffstat (limited to 'editors/vim/files/patch-01')
-rw-r--r-- | editors/vim/files/patch-01 | 77 |
1 files changed, 0 insertions, 77 deletions
diff --git a/editors/vim/files/patch-01 b/editors/vim/files/patch-01 deleted file mode 100644 index 546c96742891..000000000000 --- a/editors/vim/files/patch-01 +++ /dev/null @@ -1,77 +0,0 @@ ---- Makefile.orig Sun Jun 1 06:18:29 2003 -+++ Makefile Sat Nov 1 15:39:09 2003 -@@ -256,7 +256,7 @@ - #DO NOT CHANGE the next line, we need it for configure to find the compiler - #instead of using the default from the "make" program. - #Use a line further down to change the value for CC. --CC= -+#CC= - - # Change and use these defines if configure cannot find your Motif stuff. - # Unfortunately there is no "standard" location for Motif. {{{ -@@ -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. - # Change this to your desire and do 'make config' afterwards - -@@ -1829,3 +1830,3 @@ install: $(GUI_INSTALL) - --install_normal: installvim installtools $(INSTALL_LANGS) install-icons -+install_normal: installvim installtools $(INSTALL_LANGS) # install-icons - -@@ -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) - - $(DEST_BIN)/$(VIEWTARGET): -- cd $(DEST_BIN); ln -s $(VIMTARGET) $(VIEWTARGET) -+ #cd $(DEST_BIN); ln -sf $(VIMTARGET) $(VIEWTARGET) - - $(DEST_BIN)/$(GVIMTARGET): -- cd $(DEST_BIN); ln -s $(VIMTARGET) $(GVIMTARGET) -+ cd $(DEST_BIN); ln -sf $(VIMTARGET) $(GVIMTARGET) - - $(DEST_BIN)/$(GVIEWTARGET): -- cd $(DEST_BIN); ln -s $(VIMTARGET) $(GVIEWTARGET) -+ cd $(DEST_BIN); ln -sf $(VIMTARGET) $(GVIEWTARGET) - - $(DEST_BIN)/$(RVIMTARGET): -- cd $(DEST_BIN); ln -s $(VIMTARGET) $(RVIMTARGET) -+ cd $(DEST_BIN); ln -sf $(VIMTARGET) $(RVIMTARGET) - - $(DEST_BIN)/$(RVIEWTARGET): -- cd $(DEST_BIN); ln -s $(VIMTARGET) $(RVIEWTARGET) -+ cd $(DEST_BIN); ln -sf $(VIMTARGET) $(RVIEWTARGET) - - $(DEST_BIN)/$(RGVIMTARGET): -- cd $(DEST_BIN); ln -s $(VIMTARGET) $(RGVIMTARGET) -+ cd $(DEST_BIN); ln -sf $(VIMTARGET) $(RGVIMTARGET) - - $(DEST_BIN)/$(RGVIEWTARGET): -- cd $(DEST_BIN); ln -s $(VIMTARGET) $(RGVIEWTARGET) -+ cd $(DEST_BIN); ln -sf $(VIMTARGET) $(RGVIEWTARGET) - - $(DEST_BIN)/$(VIMDIFFTARGET): -- cd $(DEST_BIN); ln -s $(VIMTARGET) $(VIMDIFFTARGET) -+ cd $(DEST_BIN); ln -sf $(VIMTARGET) $(VIMDIFFTARGET) - - $(DEST_BIN)/$(GVIMDIFFTARGET): -- cd $(DEST_BIN); ln -s $(VIMTARGET) $(GVIMDIFFTARGET) -+ cd $(DEST_BIN); ln -sf $(VIMTARGET) $(GVIMDIFFTARGET) - - $(DEST_BIN)/$(EVIMTARGET): -- cd $(DEST_BIN); ln -s $(VIMTARGET) $(EVIMTARGET) -+ cd $(DEST_BIN); ln -sf $(VIMTARGET) $(EVIMTARGET) - - $(DEST_BIN)/$(EVIEWTARGET): -- cd $(DEST_BIN); ln -s $(VIMTARGET) $(EVIEWTARGET) -+ cd $(DEST_BIN); ln -sf $(VIMTARGET) $(EVIEWTARGET) - - # 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. |