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$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup python25 1.0 |
---|
6 | |
---|
7 | # Paver doesn't support --no-user-cfg |
---|
8 | build.cmd ${python.bin} setup.py |
---|
9 | destroot.cmd ${python.bin} setup.py |
---|
10 | |
---|
11 | name py25-virtualenvwrapper |
---|
12 | version 1.12 |
---|
13 | categories python |
---|
14 | platforms darwin |
---|
15 | maintainers arthurkoziel.com:arthur openmaintainer |
---|
16 | homepage http://www.doughellmann.com/projects/virtualenvwrapper/ |
---|
17 | description Enhancements to virtualenv. |
---|
18 | long_description Extensions to Ian Bicking's virtualenv tool. |
---|
19 | |
---|
20 | master_sites http://www.doughellmann.com/downloads/ |
---|
21 | distname virtualenvwrapper-${version} |
---|
22 | checksums md5 b2225c8e8dad3113cbe1eb9ece34fee8 \ |
---|
23 | sha1 803f7e46c54381e05780fe7592a2e03b04fdda5e \ |
---|
24 | rmd160 01811d6692a707de08bf1d5bdc32b65f77e6e674 |
---|
25 | |
---|
26 | depends_lib-append port:py25-setuptools\ |
---|
27 | port:py25-virtualenv |
---|
28 | |
---|
29 | post-patch { |
---|
30 | reinplace s|docs|${prefix}/share/doc/${name}|g ${worksrcpath}/pavement.py |
---|
31 | } |
---|
32 | |
---|
33 | post-destroot { |
---|
34 | move ${destroot}${prefix}/bin/virtualenvwrapper_bashrc ${destroot}${prefix}/bin/virtualenvwrapper_bashrc-2.5 |
---|
35 | } |
---|