Ticket #7166: Portfile

File Portfile, 884 bytes (added by erickt@…, 18 years ago)

portfile for py-pmw

Line 
1# $Id: Portfile,v 1.9 2004/12/28 06:54:54 mww Exp $
2
3PortSystem 1.0
4
5name                py-pmw
6version             1.2
7categories          python
8maintainers         erickt@opendarwin.org
9platforms           darwin freebsd
10description         Pmw is a toolkit for building high-level compound widgets in Python using the Tkinter module.
11long_description    Pmw is a toolkit for building high-level compound widgets in Python using the Tkinter module.
12
13homepage            http://pmw.sourceforge.net
14master_sites        sourceforge:pmw
15distname            Pmw.${version}
16checksums           md5 75c49c30595217c8d9376c36aa5426aa
17worksrcdir         
18
19depends_lib                                     port:python24 port:py-tkinter
20
21configure {}
22build {}
23
24destroot {
25    xinstall -m 755 -d ${destroot}${prefix}/lib/python2.4/site-packages
26    file copy ${workpath}/Pmw ${destroot}${prefix}/lib/python2.4/site-packages
27}