Ticket #20384: Portfile.2

File Portfile.2, 1.3 KB (added by easye, 15 years ago)

py26-hgsvn Portfile for hgsvn 0.1.7

Line 
1# $Id: Portfile 50980 2009-05-14 19:41:55Z and.damore@macports.org $
2
3PortSystem        1.0
4PortGroup         python26 1.0
5
6name                    py26-hgsvn
7version                 0.1.7
8revision                0
9categories              python devel
10platforms               darwin
11maintainers             saispo
12homepage                http://pypi.python.org/pypi/hgsvn
13description             hgsvn is a set of scripts for Subversion and Mercurial
14long_description                This set of scripts allows to work locally on \
15                                                Subversion-managed projects using the Mercurial \
16                                                distributed version control system.
17
18master_sites            http://pypi.python.org/packages/source/h/hgsvn
19distname                hgsvn-${version}
20checksums               md5     aaa4ef4124ac388832cddc85c1866236 \
21                        sha1    e53a631786a011569d7cfd6677d0bb7f681a9b15 \
22                        rmd160  840f3c14461dbddf4ecbe4ac27053c18e2a56579
23
24depends_lib-append      port:py26-setuptools
25
26post-destroot   {
27        xinstall -m 644 -W ${worksrcpath} AUTHORS.txt COPYING.txt README.txt TODO.txt  \
28                ${destroot}${prefix}/share/doc/${name}
29        foreach bin [glob -tails -directory ${destroot}${python.prefix}/bin *] {
30                ln -s ${python.prefix}/bin/${bin} ${destroot}${prefix}/bin/${bin}
31        }
32}
33