1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 |
---|
2 | # $Id: Portfile 65908 2010-04-02 22:28:17Z jmr@macports.org $ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup python26 1.0 |
---|
6 | |
---|
7 | name py26-virtualenv |
---|
8 | version 1.4.9 |
---|
9 | categories-append devel |
---|
10 | platforms darwin |
---|
11 | maintainers akitada openmaintainer |
---|
12 | homepage http://pypi.python.org/pypi/virtualenv |
---|
13 | description Virtual Python Environment builder |
---|
14 | long_description virtualenv is a tool to create isolated Python \ |
---|
15 | environments. |
---|
16 | |
---|
17 | master_sites http://pypi.python.org/packages/source/v/virtualenv/ |
---|
18 | distname virtualenv-${version} |
---|
19 | checksums md5 c49067cab242b5ff8c7b681a5a99533a \ |
---|
20 | sha1 e1e22f500641b3b9a67804305904ea56ebece0d6 \ |
---|
21 | rmd160 7435600029211ab786e11590d5ca62ba368ecb6d |
---|
22 | |
---|
23 | post-destroot { |
---|
24 | xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name} |
---|
25 | foreach f [glob -directory ${worksrcpath}/docs *] { |
---|
26 | copy $f ${destroot}${prefix}/share/doc/${name}/[file tail $f] |
---|
27 | } |
---|
28 | } |
---|
29 | |
---|
30 | depends_lib-append port:py26-distribute |
---|
31 | |
---|
32 | livecheck.type regex |
---|
33 | livecheck.url http://pypi.python.org/pypi/virtualenv |
---|
34 | livecheck.regex virtualenv (1\.\[0-9\]+\.\[0-9\]+) |
---|