diff --git a/dports/editors/MacVim/Portfile b/dports/editors/MacVim/Portfile
index 031410a..9f84d02 100644
a
|
b
|
PortSystem 1.0 |
4 | 4 | |
5 | 5 | name MacVim |
6 | 6 | set vim_version 7.2 |
7 | | set snapshot 44 |
8 | | set gitcommit baf35cf73329e4676833ab9022c97f310d0134c8 |
| 7 | set snapshot 45 |
| 8 | set gitcommit be6cce8f38600c1e8965c6c284608e98702651c3 |
9 | 9 | version ${vim_version}.snapshot${snapshot} |
10 | | revision 1 |
| 10 | revision 0 |
11 | 11 | categories editors |
12 | 12 | platforms darwin |
13 | 13 | maintainers raimue |
… |
… |
long_description \ |
18 | 18 | homepage http://code.google.com/p/macvim |
19 | 19 | |
20 | 20 | master_sites "http://repo.or.cz/w/MacVim.git?a=snapshot;h=${gitcommit};sf=zip;foo=" |
21 | | checksums md5 141291d39fe951931b318c34aa49f42f \ |
22 | | sha1 ea77f47d098017357e3e3d2c7aee9e498e6751a8 \ |
23 | | rmd160 63ac0431d43ce6c72b6ec53b7c032b0d60c1ff16 |
| 21 | checksums md5 1b557bb42bd55663b61b4e2461af9fd9 \ |
| 22 | sha1 8dce64bb66553503b4a18075ee1eee2cbbbb46d5 \ |
| 23 | rmd160 b6e84f0499ce055e904c74d22e6be2f4ed58b1a5 |
24 | 24 | use_zip yes |
25 | 25 | worksrcdir ${name} |
26 | 26 | |
… |
… |
post-build { |
59 | 59 | destroot { |
60 | 60 | copy ${worksrcpath}/src/MacVim/build/Release/MacVim.app ${destroot}${applications_dir} |
61 | 61 | copy ${worksrcpath}/src/MacVim/mvim ${destroot}${prefix}/bin |
| 62 | |
| 63 | # Create MacVim vimdiff, view, ex equivalents |
| 64 | ln ${destroot}${prefix}/bin/mvim ${destroot}${prefix}/bin/mvimdiff |
| 65 | ln ${destroot}${prefix}/bin/mvim ${destroot}${prefix}/bin/mview |
| 66 | # Link as mvimex as bin/mex conflicts with texlive |
| 67 | ln ${destroot}${prefix}/bin/mvim ${destroot}${prefix}/bin/mvimex |
62 | 68 | } |
63 | 69 | |
64 | 70 | test.run yes |