1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 |
---|
2 | # $Id$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | |
---|
6 | name mpvim |
---|
7 | version 0.1.0 |
---|
8 | categories-append editors |
---|
9 | platforms darwin |
---|
10 | maintainers gwmail.gwu.edu:egall openmaintainer |
---|
11 | license BSD |
---|
12 | supported_archs noarch |
---|
13 | |
---|
14 | description ${name} adds MacPorts support to vim. |
---|
15 | long_description ${description} This currently includes syntax coloring for \ |
---|
16 | Portfiles and running lint from vim. |
---|
17 | homepage http://svn.macports.org/repository/macports/contrib/mpvim |
---|
18 | |
---|
19 | livecheck.type none |
---|
20 | |
---|
21 | fetch.type svn |
---|
22 | svn.url https://svn.macports.org/repository/macports/contrib/mpvim |
---|
23 | svn.revision 102168 |
---|
24 | |
---|
25 | depends_run-append path:bin/vim:vim |
---|
26 | |
---|
27 | worksrcdir ${name} |
---|
28 | |
---|
29 | configure { |
---|
30 | reinplace "s|~/.vim|${destroot}${prefix}/share/vim/vimfiles|g" ${worksrcpath}/Makefile |
---|
31 | } |
---|
32 | |
---|
33 | build {} |
---|
34 | |
---|
35 | destroot { |
---|
36 | system -W ${worksrcpath} "make install" |
---|
37 | } |
---|