f86a25917d
<http://pypi.python.org/pypi/virtualenv>`_ tool. The extensions include wrappers for creating and deleting virtual environments and otherwise managing your development workflow, making it easier to work on more than one project at a time without introducing conflicts in their dependencies. WWW: http://www.doughellmann.com/projects/virtualenvwrapper/ Author: Doug Hellmann
32 lines
813 B
Makefile
32 lines
813 B
Makefile
# New ports collection makefile for: py-virtualenvwrapper
|
|
# Date created: 2010-05-06
|
|
# Whom: Nicola Vitale <nivit@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= virtualenvwrapper
|
|
PORTVERSION= 2.1.1
|
|
#PORTREVISION= 0
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= http://www.doughellmann.com/downloads/ \
|
|
http://nivi.interfree.it/distfiles/${PORTNAME}/
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= nivit@FreeBSD.org
|
|
COMMENT= A set of extensions to Virtual Python Environment builder
|
|
|
|
RUN_DEPENDS= ${PKGNAMEPREFIX}virtualenv>=1.4.8:${PORTSDIR}/devel/py-virtualenv
|
|
|
|
USE_PYDISTUTILS= easy_install
|
|
USE_PYTHON= yes
|
|
|
|
DOCSDIR= ${PREFIX}/share/doc/${PKGNAMEPREFIX}${PORTNAME}
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
post-install:
|
|
${MKDIR} ${DOCSDIR}
|
|
cd ${WRKSRC}/docs/html && ${COPYTREE_SHARE} . ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|