• R/O
  • HTTP
  • SSH
  • HTTPS

MacPorts: Commit

My MacPorts


Commit MetaInfo

Revision2cb3188845d5665f4a0d03db5585e10847e32cce (tree)
Time2009-07-10 06:58:30
AuthorKazuki Sakamoto <sakamoto@splh...>
CommiterKazuki Sakamoto

Log Message

vimproc

Change Summary

Incremental Difference

--- a/PortIndex
+++ b/PortIndex
@@ -10,6 +10,8 @@ macvim 824
1010 variants {perl python ruby tcl cscope standalone gdb universal} variant_desc {perl {Enable Perl scripting} python {Enable Python scripting} ruby {Enable Ruby scripting} tcl {Enable Tcl scripting} cscope {Enable source code browsing with cscope} standalone {Enable standalonize} gdb {Enable GDB integration} universal {Build for multiple architectures}} portdir editors/macvim description {MacVim is a port of the text editor Vim to Mac OS X.} homepage http://code.google.com/p/macvim-kaoriya/ epoch 0 platforms darwin name macvim depends_lib {port:cmigemo port:gettext port:libiconv port:ncurses} maintainers nomaintainer long_description {MacVim supports multiple windows with tabbed editing and a host of other features. MacVim brings you the full power of Vim to Mac OS X.} version 20090620 categories editors revision 0
1111 vim-app 901
1212 variants {xim perl python ruby tcl cscope darwin_ppc gdb aqua cocoa universal} depends_build {bin:gnutar:gnutar bin:grep:grep bin:7za:p7zip} variant_desc {xim {Build with support for X Input Method} perl {Enable Perl scripting} python {Enable Python scripting} ruby {Enable Ruby scripting} tcl {Enable Tcl scripting} cscope {Enable source code browsing with cscope} gdb {Enable GDB integration} universal {Build for multiple architectures}} portdir editors/vim-app description {Vim.app is a GUI version of the famous editor vim.} homepage http://www.vim.org/ epoch 0 platforms darwin name vim-app depends_lib {port:ncurses port:gettext port:libiconv port:ctags} maintainers nomaintainer long_description {This port provides Vim.app, a GUI version of the famous editor vim. Vim is a highly configurable text editor built to enable efficient text editing.} categories editors version 7.2.147 revision 2
13+vimproc 365
14+variants universal variant_desc {universal {Build for multiple architectures}} portdir editors/vimproc description {Interactive command execution in Vim.} homepage http://github.com/Shougo/vimproc/ epoch 0 platforms darwin name vimproc maintainers nomaintainer long_description {Interactive command execution in Vim.} version 20090707 categories editors revision 0
1315 zsh-devel 1123
1416 variants {darwin_8 mp_completion pcre doc examples cjk universal} variant_desc {darwin_8 {Platform variant, do not select manually} mp_completion {Install port(1) completion file} pcre {Add regular expressions support in builtin functions through PCRE} doc {Install extra documentation} examples {Install configuration examples} cjk {Add East Asian Ambiguous characters support} universal {Build for multiple architectures}} portdir shells/zsh-devel description {Zsh is a UNIX command interpreter (shell)} homepage http://www.zsh.org/ epoch 0 platforms darwin name zsh-devel depends_lib {port:libiconv port:ncursesw port:gdbm} maintainers {nox openmaintainer} long_description {Zsh is a UNIX command interpreter (shell) which of the standard shells most resembles the Korn shell (ksh), although it is not completely compatible. It includes enhancements of many types, notably in the command-line editor, options for customising its behaviour, filename globbing, features to make C-shell (csh) users feel more at home and extra features drawn from tcsh (another `custom' shell).} version 4.3.10 categories shells revision 0
1517 cmigemo 503
--- a/Readme.txt
+++ b/Readme.txt
@@ -1,7 +1,8 @@
11 cmigemo @1.3c_8+universal+utf8 (active)
2- ctags-objc-ja @20090508_0 (active)
2+ ctags-objc-ja @20090508_0+universal (active)
33 fmdiff @7819_0 (active)
44 gettext @0.17_4+universal (active)
55 iTerm @0.9.6_20090614 (active)
66 macvim @20090620_0+cscope+gdb+perl+python+ruby+standalone+universal (active)
7+ vimproc @20090707_0+universal (active)
78 zsh-devel @4.3.10_0+cjk+mp_completion+pcre (active)
--- /dev/null
+++ b/editors/vimproc/Portfile
@@ -0,0 +1,40 @@
1+# $Id$
2+PortSystem 1.0
3+
4+name vimproc
5+version 20090707
6+revision 0
7+categories editors
8+maintainers nomaintainer
9+description Interactive command execution in Vim.
10+long_description \
11+ Interactive command execution in Vim.
12+homepage http://github.com/Shougo/vimproc/
13+platforms darwin
14+
15+set gittag 63e5adf31d21cfb23d5f5ab5941432975fe44cc1
16+distname ${name}-${gittag}
17+use_zip yes
18+checksums ${distname}.zip sha1 cdc34de3e43bccc8f6e92951a1d346897b3f1254
19+master_sites "http://github.com/Shougo/vimproc/zipball/${gittag}?"
20+use_configure no
21+build.cmd make -f make_mac.mak
22+
23+post-extract {
24+ system "mv ${workpath}/Shougo-vimproc-* ${workpath}/${distname}"
25+}
26+
27+post-patch {
28+ reinplace -E "s/^(CFLAGS.*)\$/\\1 -mmacosx-version-min=10.4/" \
29+ ${worksrcpath}/make_mac.mak
30+}
31+
32+destroot {
33+ set dstdir ${destroot}${prefix}/share/vimproc/autoload
34+ xinstall -d -m 0755 ${dstdir}
35+ xinstall -m 0755 ${worksrcpath}/autoload/proc.so ${dstdir}
36+ xinstall -m 0644 ${worksrcpath}/autoload/proc.vim ${dstdir}
37+}
38+
39+default_variants +universal
40+variant universal {}
Show on old repository browser