freebsd-ports/www/py-webob/Makefile
Nicola Vitale 0a5a2e28f8 - Update to 1.4
- Add support for stage dir
- Sort variables
- Use new options helper
- Replace pkg-plist with an automatic package list

Release Notes:	http://docs.webob.org/en/latest/news.html
2014-05-18 03:29:57 +00:00

45 lines
976 B
Makefile

# $FreeBSD$
PORTNAME= webob
PORTVERSION= 1.4
CATEGORIES= www python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
DISTNAME= WebOb-${DISTVERSION}
MAINTAINER= nivit@FreeBSD.org
COMMENT= WSGI request and response Python object
LICENSE= MIT
DOCS_BUILD_DEPENDS= sphinx-build:${PORTSDIR}/textproc/py-sphinx
DOCSDIR= ${PREFIX}/share/doc/${PYTHON_PKGNAMEPREFIX}${PORTNAME}
OPTIONS_DEFINE= DOCS TESTS
PORTDOCS= *
PYDISTUTILS_AUTOPLIST= yes
PYDISTUTILS_PKGVERSION= ${DISTVERSION}
TESTS_BUILD_DEPENDS= nosetests:${PORTSDIR}/devel/py-nose
TESTS_DESC= Run tests with Nose
USE_PYDISTUTILS= yes
USE_PYTHON= yes
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MDOCS}
PYDISTUTILS_BUILD_TARGET+= build_sphinx -a -E
post-install:
@(cd ${WRKSRC}/build/sphinx/html && \
${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR} "! -name .buildinfo -and ! -name objectiv.inv")
.endif
.if ${PORT_OPTIONS:MTESTS}
PYDISTUTILS_BUILD_TARGET+= nosetests
.endif
.include <bsd.port.mk>