Ticket #3162: Portfile

File Portfile, 1.0 KB (added by erickt@…, 19 years ago)

Portfile exhibiting this problem

Line 
1PortSystem      1.0
2
3name                    py-pyqt3
4version                 3.14.1
5categories              python devel
6maintainers             erickt@dslextreme.com
7description             PyQt is a set of Python bindings for the Qt toolkit
8long_description        PyQt is a set of Python bindings for the Qt toolkit
9homepage                http://www.yzis.org/
10platforms               darwin
11
12distname        PyQt-mac-gpl-${version}
13checksums md5   07acbab4428be3f164a444ff8edc1159
14homepage        http://www.riverbankcomputing.co.uk/PyQt/
15master_sites    http://www.river-bank.demon.co.uk/download/PyQt/
16
17depends_lib     port:python24 \
18                port:py-sip
19                                       
20configure.cmd           "echo yes | ${prefix}/bin/python2.4 configure.py"
21configure.pre_args
22
23post-destroot {
24        xinstall -m 755 -d ${destroot}/${prefix}/share/doc
25        file copy ${worksrcpath}/doc ${destroot}/${prefix}/share/doc/${name}
26        file copy ${worksrcpath}/examples2 ${destroot}/${prefix}/share/doc/${name}
27        file copy ${worksrcpath}/examples3 ${destroot}/${prefix}/share/doc/${name}
28        xinstall -m 644 -W ${worksrcpath} \
29                ChangeLog LICENSE NEWS README README.AIX README.MacOSX \
30                README.SunOS THANKS \
31                ${destroot}${prefix}/share/doc/${name}
32}