Ticket #8271: Portfile

File Portfile, 1.6 KB (added by deric@…, 18 years ago)

the portfile

Line 
1# $Id: $
2PortSystem          1.0
3PortGroup           python24 1.0
4name                mercurial
5version             0.8.1
6categories          devel python
7maintainers         deric@caveo.se
8description         A fast, lightweight, distributed SCM system written in \
9                    Python.
10long_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                   
21homepage            http://www.selenic.com/mercurial/
22master_sites        http://www.selenic.com/mercurial/release/
23checksums           md5 ffa37810cf9c48608f5172a622bef2f5
24                    #sha1 7d71b6d0f73ec8b90d774b5251e69023e1ca7857
25                    #rmd160 0dca740eb32297813489162f9564ba349747be35
26
27post-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}