Ticket #28771: Portfile

File Portfile, 1.3 KB (added by seut (Sebastian Utz), 13 years ago)
Line 
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
4PortSystem          1.0
5PortGroup           python26 1.0
6
7name                py26-be
8set real_name       be
9version             1.0.0
10categories-append   devel
11platforms           darwin
12license             GNU GPLv2
13
14maintainers         rtme.net:su openmaintainer
15
16description         A distributed bugtracker”, designed to complement distributed revision control systems.
17long_description    \
18    Bugs Everywhere (BE) is a bugtracker built on distributed \
19    version control. \
20    It works with Arch, Bazaar, Darcs, Git, and Mercurial at the moment, \
21    but is easily extensible. It can also function with no VCS at all.
22
23homepage            http://bugseverywhere.org/
24master_sites        http://download.bugseverywhere.org/releases/
25distname            ${real_name}-${version}
26
27checksums           md5     fd2786d564cbbe305f9c6b3b154ed617 \
28                    sha1    60607dbb160123a5c1e95a974496657688cfd956 \
29                    rmd160  3f2306c75fb731c58fbc99d5f844e38281476454
30
31depends_lib  port:py26-yaml
32
33
34livecheck.type      regex
35livecheck.url       ${homepage}
36livecheck.regex     "${real_name}-(\\d+(?:\\.\\d+)*)${extract.suffix}"
37
38post-destroot {
39   ln -s ${prefix}/bin/be-2.6 ${prefix}/bin/be
40}