1 | # $Id: $ |
---|
2 | PortSystem 1.0 |
---|
3 | PortGroup python24 1.0 |
---|
4 | name mercurial |
---|
5 | version 0.8.1 |
---|
6 | categories devel python |
---|
7 | maintainers deric@caveo.se |
---|
8 | description A fast, lightweight, distributed SCM system written in \ |
---|
9 | Python. |
---|
10 | long_description Mercurial is a next-generation SCM system. Mercurial can \ |
---|
11 | serve repositories via the builtin webserver or via a \ |
---|
12 | supplied cgiscript. As a distributed SCM Mercurial \ |
---|
13 | supports disconnected operation and easy branching. \ |
---|
14 | Support for pushing changes via SSH or as a series of \ |
---|
15 | emails. Pulling changes is supported over SSH and HTTP. \ |
---|
16 | Very good patch management via the Mq extension. Uses \ |
---|
17 | Apples' FileMerge as an external merging application if \ |
---|
18 | available. Mercurial also has very good performance \ |
---|
19 | characteristics with large repositories. |
---|
20 | |
---|
21 | homepage http://www.selenic.com/mercurial/ |
---|
22 | master_sites http://www.selenic.com/mercurial/release/ |
---|
23 | checksums md5 ffa37810cf9c48608f5172a622bef2f5 |
---|
24 | #sha1 7d71b6d0f73ec8b90d774b5251e69023e1ca7857 |
---|
25 | #rmd160 0dca740eb32297813489162f9564ba349747be35 |
---|
26 | |
---|
27 | post-destroot { |
---|
28 | xinstall -m 644 -W ${worksrcpath} doc/hg.1 \ |
---|
29 | ${destroot}${prefix}/share/man/man1 |
---|
30 | xinstall -m 644 -W ${worksrcpath} doc/hgmerge.1 \ |
---|
31 | ${destroot}${prefix}/share/man/man1 |
---|
32 | xinstall -m 644 -W ${worksrcpath} doc/hgrc.5 \ |
---|
33 | ${destroot}${prefix}/share/man/man5 |
---|
34 | } |
---|