Ticket #12924: Portfile

File Portfile, 1.4 KB (added by roger.hoover@…, 17 years ago)
Line 
1
2PortSystem              1.0
3PortGroup               python24 1.0
4name                    py-supervisor
5version                 3.0a3
6maintainers             nomaintainer@macports.org
7description             Process manager for UNIX-like OSs
8long_description        The supervisor is a client/server system that allows its users to control a number of processes on UNIX-like operating systems
9
10platforms               darwin
11
12homepage                http://www.plope.com/software/supervisor2/
13master_sites            http://www.plope.com/software/supervisor2/
14distname                supervisor-${version}
15
16depends_lib-append      port:py-setuptools \
17                        port:py-elementtree \
18                        port:py-meld3 \
19                        port:py-medusa
20
21checksums               md5 e6533646e83aede64d2855c0f11f964c
22
23post-destroot   {
24        eval file delete -force [glob ${destroot}/${prefix}/doc/*]
25        file delete -force ${destroot}/${prefix}/doc
26        xinstall -m 644 ${worksrcpath}/README.txt ${destroot}${prefix}/share/doc/${name}
27        xinstall -m 644 ${worksrcpath}/CHANGES.txt ${destroot}${prefix}/share/doc/${name}
28        xinstall -m 644 ${worksrcpath}/COPYRIGHT.txt ${destroot}${prefix}/share/doc/${name}
29        xinstall -m 644 ${worksrcpath}/LICENSES.txt ${destroot}${prefix}/share/doc/${name}
30        xinstall -m 644 ${worksrcpath}/TODO.txt ${destroot}${prefix}/share/doc/${name}
31        xinstall -m 644 ${worksrcpath}/UPGRADING.txt ${destroot}${prefix}/share/doc/${name}
32        xinstall -m 644 ${worksrcpath}/sample.conf ${destroot}${prefix}/share/doc/${name}
33}