1 | # $Id: Portfile 20387 2006-11-03 00:16:46Z blair@macports.org $ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | |
---|
5 | PortGroup python25 1.0 |
---|
6 | name py25-serial |
---|
7 | version 2.2 |
---|
8 | categories-append comms |
---|
9 | platforms darwin |
---|
10 | maintainers opendarwin.nospam@vercruesse.de |
---|
11 | description Python Serial Port Extension |
---|
12 | long_description This module incapsulates the access for the serial port. \ |
---|
13 | It provides backends for standard Python running on Windows, \ |
---|
14 | Linux, BSD (possibly any POSIX compliant system) and Jython. \ |
---|
15 | The module named "serial" automatically selects the appropriate \ |
---|
16 | backend. |
---|
17 | homepage http://pyserial.sourceforge.net/ |
---|
18 | master_sites sourceforge:pyserial |
---|
19 | distname pyserial-${version} |
---|
20 | use_zip yes |
---|
21 | checksums md5 14e774b7b6e5aa52820f0590d3b8c4d9 \ |
---|
22 | sha1 e2fdf7f22ec930497d96b2177c057dacfdcce887 \ |
---|
23 | rmd160 5c743d5c0c5bd2b86738897efaf46404fef4f3a1 |
---|
24 | |
---|
25 | post-destroot { |
---|
26 | xinstall -m 644 -W ${worksrcpath} CHANGES.txt LICENSE.txt README.txt \ |
---|
27 | ${destroot}${prefix}/share/doc/${name} |
---|
28 | xinstall -m 644 -W ${worksrcpath}/examples enhancedserial.py miniterm.py \ |
---|
29 | scan.py tcp_serial_redirect.py test.py test_advanced.py \ |
---|
30 | wxSerialConfigDialog.py wxSerialConfigDialog.wxg \ |
---|
31 | wxTerminal.py wxTerminal.wxg \ |
---|
32 | ${destroot}${prefix}/share/doc/${name}/examples |
---|
33 | } |
---|