1 | # $Id: Portfile,v 1.1 2007/01/30 00:34:18 tomwiebe Exp $ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | PortGroup python24 1.0 |
---|
5 | name py-roundup |
---|
6 | version 1.3.3 |
---|
7 | categories-append www |
---|
8 | maintainers nomaintainer@macports.org |
---|
9 | description Issue-tracking system |
---|
10 | long_description \ |
---|
11 | Roundup is a simple-to-use and -install issue-tracking system with \ |
---|
12 | command-line, web and e-mail interfaces. It is based on the winning \ |
---|
13 | design from Ka-Ping Yee in the Software Carpentry "Track" design \ |
---|
14 | competition. \ |
---|
15 | Note: Ping is not responsible for this project. The contact for this \ |
---|
16 | project is richard@users.sourceforge.net. |
---|
17 | |
---|
18 | platforms darwin |
---|
19 | |
---|
20 | homepage http://roundup.sf.net/ |
---|
21 | master_sites http://cheeseshop.python.org/packages/source/r/roundup/ |
---|
22 | distname roundup-${version} |
---|
23 | |
---|
24 | checksums sha1 76242a43974e33ec1fcc711cf3bdd91c18aa46fe |
---|
25 | |
---|
26 | |
---|
27 | pre-build { |
---|
28 | reinplace "s|man/man1|share/man/man1|" ${worksrcpath}/setup.py |
---|
29 | } |
---|
30 | |
---|
31 | post-destroot { |
---|
32 | xinstall -m 755 -d ${destroot}/${prefix}/share/doc/${name} |
---|
33 | eval file copy [glob ${worksrcpath}/doc/*] \ |
---|
34 | ${destroot}/${prefix}/share/doc/${name} |
---|
35 | eval reinplace "s|${destroot}${prefix}|${prefix}|g" \ |
---|
36 | [glob ${destroot}/${prefix}/bin/*] |
---|
37 | } |
---|
38 | |
---|