Ticket #28867: Portfile

File Portfile, 1.1 KB (added by me@…, 13 years ago)
Line 
1# $Id: Portfile 30249 2007-10-23 02:12:47Z jmpp@macports.org $
2
3PortSystem 1.0
4PortGroup python26 1.0
5
6name                    py26-xlib
7version                 0.12
8revision                1
9categories              python x11
10platforms               darwin
11maintainers             nomaintainer
12description             python module for the X protocol
13long_description        The Python X Library is intended to be a fully \
14                                functional X client library for Python programs. It is \
15                                written entirely in Python. This is possible to do \
16                                since X client programs communicate with the X server \
17                                via the X protocol. The communication takes place over \
18                                TCP/IP, Unix sockets, DECnet or any other suitable \
19                                streaming network protocol.
20
21homepage                http://python-xlib.sourceforge.net/
22master_sites    sourceforge:python-xlib
23distname                python-xlib-${version}
24checksums               md5 83b294f34876c06b1a7697227249cb83
25
26post-destroot   {
27        xinstall -m 644 -W ${worksrcpath} COPYING NEWS README TODO \
28                ${destroot}${prefix}/share/doc/${name}
29        xinstall -m 644 -W ${worksrcpath}/examples draw-proto.py draw.py \
30                profilex.py shapewin.py threadtest.py \
31                ${destroot}${prefix}/share/doc/${name}/examples
32}