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 | name py25-virtualenvwrapper |
---|
8 | version 1.5 |
---|
9 | categories python |
---|
10 | platforms darwin |
---|
11 | maintainers arthurkoziel.com:arthur |
---|
12 | homepage http://www.doughellmann.com/projects/virtualenvwrapper/ |
---|
13 | description Enhancements to virtualenv. |
---|
14 | long_description Extensions to Ian Bicking's virtualenv tool. |
---|
15 | |
---|
16 | master_sites http://www.doughellmann.com/downloads/ |
---|
17 | distname virtualenvwrapper-${version} |
---|
18 | checksums md5 ee01589b31e02e24ec9ceff6cea60af4 \ |
---|
19 | sha1 fa00e4d96fca6a5e4648b356b8cb0497833fc8a6 \ |
---|
20 | rmd160 404ddce5163cf9a74094df74b572307c762c5b2b |
---|
21 | |
---|
22 | depends_lib-append port:py25-setuptools\ |
---|
23 | port:py25-virtualenv |
---|
24 | |
---|
25 | post-patch { |
---|
26 | reinplace s|docs|${prefix}/share/doc/${name}|g ${worksrcpath}/setup.py |
---|
27 | } |
---|