1 | # $Id: Portfile 30249 2007-10-23 02:12:47Z jmpp@macports.org $ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | PortGroup python26 1.0 |
---|
5 | |
---|
6 | name py26-xlib |
---|
7 | version 0.12 |
---|
8 | revision 1 |
---|
9 | categories python x11 |
---|
10 | platforms darwin |
---|
11 | maintainers nomaintainer |
---|
12 | description python module for the X protocol |
---|
13 | long_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 | |
---|
21 | homepage http://python-xlib.sourceforge.net/ |
---|
22 | master_sites sourceforge:python-xlib |
---|
23 | distname python-xlib-${version} |
---|
24 | checksums md5 83b294f34876c06b1a7697227249cb83 |
---|
25 | |
---|
26 | post-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 | } |
---|