mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-24 09:25:01 +00:00
7b04c84c27
- Update PORTVERSION and distinfo checksum (4.7.1) - Remove *_DEPENDS versions (no longer version specific upstream) - Add support for concurrent (Python 2/3) use - Update sphinx docs output directory - Convert all conditionals to options helpers Approved by: nivit (maintainer) Differential Revision: https://reviews.freebsd.org/D3539
42 lines
1.2 KiB
Makefile
42 lines
1.2 KiB
Makefile
# Created by: Nicola Vitale <nivit@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= virtualenvwrapper
|
|
PORTVERSION= 4.7.1
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= nivit@FreeBSD.org
|
|
COMMENT= Set of extensions to virtualenv
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pbr>0:${PORTSDIR}/devel/py-pbr
|
|
RUN_DEPENDS= ${PKGNAMEPREFIX}stevedore>0:${PORTSDIR}/devel/py-stevedore \
|
|
${PKGNAMEPREFIX}virtualenv>0:${PORTSDIR}/devel/py-virtualenv \
|
|
${PKGNAMEPREFIX}virtualenv-clone>0:${PORTSDIR}/devel/py-virtualenv-clone
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
DOCS_BUILD_DEPENDS= sphinx-build:${PORTSDIR}/textproc/py-sphinx \
|
|
${PYTHON_PKGNAMEPREFIX}sphinxcontrib-bitbucket>=1.0:${PORTSDIR}/textproc/py-sphinxcontrib-bitbucket
|
|
|
|
USES= python
|
|
USE_PYTHON= autoplist concurrent distutils
|
|
|
|
DOCS_VARS= DOCSDIR=${PREFIX}/share/doc/${PKGNAMEPREFIX}${PORTNAME} \
|
|
PYDISTUTILS_BUILD_TARGET+=build_sphinx \
|
|
PYDISTUTILS_BUILDARGS="-a -E"
|
|
|
|
post-patch-DOCS-on:
|
|
@${REINPLACE_CMD} -e 's|python setup.py|${PYTHON_CMD} setup.py|' \
|
|
${WRKSRC}/docs/source/conf.py
|
|
|
|
post-install-DOCS-on:
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
@cd ${WRKSRC}/docs/build/html && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|