0a5a2e28f8
- 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
45 lines
976 B
Makefile
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>
|