1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; truncate-lines: t; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:et:sw=4:ts=4:sts=4 |
---|
2 | # $Id$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup python 1.0 |
---|
6 | |
---|
7 | name py-ipy |
---|
8 | version 0.75 |
---|
9 | revision 2 |
---|
10 | |
---|
11 | categories python devel net |
---|
12 | maintainers vmunix.org:torstenb \ |
---|
13 | openmaintainer |
---|
14 | description python module for handling IPv4 and IPv6 addresses and networks |
---|
15 | long_description IPy is a Python module for handling IPv4 and IPv6 \ |
---|
16 | addresses and networks in a fashion similar to perl's \ |
---|
17 | Net::IP and friends. The IP class allows a comfortable \ |
---|
18 | parsing and handling for most notations in use for \ |
---|
19 | IPv4 and IPv6 addresses and networks. |
---|
20 | |
---|
21 | platforms darwin |
---|
22 | license BSD |
---|
23 | |
---|
24 | homepage https://github.com/haypo/python-ipy |
---|
25 | master_sites http://pypi.python.org/packages/source/I/IPy/ |
---|
26 | |
---|
27 | distname IPy-${version} |
---|
28 | |
---|
29 | python.versions 25 26 27 |
---|
30 | python.default_version 27 |
---|
31 | |
---|
32 | |
---|
33 | checksums rmd160 f31b64d62d77a37b5fb66bb6bf047258426c7bed \ |
---|
34 | sha256 0fa14af4792cc0b6f61cb5a1cd8fbdf7ddbaa6864ef82681021b750e9e6b2b61 |
---|
35 | |
---|
36 | post-destroot { |
---|
37 | if {${name} != ${subport}} { |
---|
38 | set docdir ${prefix}/share/doc/${subport} |
---|
39 | xinstall -m 644 ${worksrcpath}/README ${destroot}${docdir} |
---|
40 | } |
---|
41 | } |
---|