Ticket #16829: Portfile.7

File Portfile.7, 1.3 KB (added by arthur@…, 15 years ago)

py26-virtualenvwrapper

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