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 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup python26 1.0 |
---|
6 | |
---|
7 | name py26-be |
---|
8 | set real_name be |
---|
9 | version 1.0.0 |
---|
10 | categories-append devel |
---|
11 | platforms darwin |
---|
12 | license GNU GPLv2 |
---|
13 | |
---|
14 | maintainers rtme.net:su openmaintainer |
---|
15 | |
---|
16 | description A “distributed bugtracker”, designed to complement distributed revision control systems. |
---|
17 | long_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 | |
---|
23 | homepage http://bugseverywhere.org/ |
---|
24 | master_sites http://download.bugseverywhere.org/releases/ |
---|
25 | distname ${real_name}-${version} |
---|
26 | |
---|
27 | checksums md5 fd2786d564cbbe305f9c6b3b154ed617 \ |
---|
28 | sha1 60607dbb160123a5c1e95a974496657688cfd956 \ |
---|
29 | rmd160 3f2306c75fb731c58fbc99d5f844e38281476454 |
---|
30 | |
---|
31 | depends_lib port:py26-yaml |
---|
32 | |
---|
33 | |
---|
34 | livecheck.type regex |
---|
35 | livecheck.url ${homepage} |
---|
36 | livecheck.regex "${real_name}-(\\d+(?:\\.\\d+)*)${extract.suffix}" |
---|
37 | |
---|
38 | post-destroot { |
---|
39 | ln -s ${prefix}/bin/be-2.6 ${prefix}/bin/be |
---|
40 | } |
---|