Ticket #11964: Portfile

File Portfile, 1.1 KB (added by tom@…, 17 years ago)

Updated portfile for py-roundup-1.3.3

Line 
1# $Id: Portfile,v 1.1 2007/01/30 00:34:18 tomwiebe Exp $
2
3PortSystem                      1.0
4PortGroup                       python24 1.0
5name                            py-roundup
6version                         1.3.3
7categories-append       www
8maintainers                     nomaintainer@macports.org
9description                     Issue-tracking system
10long_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
18platforms                       darwin
19
20homepage                        http://roundup.sf.net/
21master_sites            http://cheeseshop.python.org/packages/source/r/roundup/
22distname                        roundup-${version}
23
24checksums               sha1 76242a43974e33ec1fcc711cf3bdd91c18aa46fe
25
26
27pre-build {
28        reinplace "s|man/man1|share/man/man1|" ${worksrcpath}/setup.py
29}
30
31post-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