1 | # $Id$ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | PortGroup python27 1.0 |
---|
5 | |
---|
6 | name py27-pip |
---|
7 | version 0.7.2 |
---|
8 | categories python www |
---|
9 | platforms darwin |
---|
10 | maintainers arthurk openmaintainer |
---|
11 | homepage http://pip.openplans.org/ |
---|
12 | description An easy_install replacement |
---|
13 | long_description pip is a replacement for easy_install. It uses mostly the \ |
---|
14 | same techniques for finding packages, so packages that \ |
---|
15 | were made easy_installable should be pip-installable as \ |
---|
16 | well. |
---|
17 | |
---|
18 | master_sites http://pypi.python.org/packages/source/p/pip/ |
---|
19 | distname pip-${version} |
---|
20 | checksums md5 cfe73090aaa0d3b0c104179a627859d1 \ |
---|
21 | sha1 3843101cd594e28468763a21d1f94a4a5a2cbc06 \ |
---|
22 | rmd160 2736c4e1f1a21c3fe53b3b23eb438cbd3d68c8a5 |
---|
23 | |
---|
24 | depends_lib-append port:py27-distribute |
---|
25 | |
---|
26 | post-destroot { |
---|
27 | xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name} |
---|
28 | xinstall -m 644 -W ${worksrcpath}/docs index.txt news.txt \ |
---|
29 | requirement-format.txt license.txt configuration.txt \ |
---|
30 | ${destroot}${prefix}/share/doc/${name} |
---|
31 | } |
---|
32 | |
---|
33 | livecheck.type regex |
---|
34 | livecheck.url http://pypi.python.org/pypi/pip |
---|
35 | livecheck.regex pip (0\.\[0-9\]+\.\[0-9\]+) |
---|