31 lines
839 B
Makefile
31 lines
839 B
Makefile
# $NetBSD: Makefile,v 1.6 2015/08/28 15:18:24 wiz Exp $
|
|
|
|
DISTNAME= gunicorn-19.3.0
|
|
PKGREVISION= 1
|
|
CATEGORIES= www
|
|
MASTER_SITES= https://pypi.python.org/packages/source/g/gunicorn/
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
|
|
MAINTAINER= gls@NetBSD.org
|
|
HOMEPAGE= http://gunicorn.org/
|
|
COMMENT= Python WSGI HTTP server
|
|
LICENSE= mit
|
|
|
|
USE_TOOLS+= pax
|
|
|
|
DOCDIR= ${PREFIX}/share/doc/py-gunicorn
|
|
EXAMPLESDIR= ${PREFIX}/share/examples/py-gunicorn
|
|
AUTO_MKDIRS= yes
|
|
|
|
# https://github.com/benoitc/gunicorn/issues/1108
|
|
# according to upstream it is fine that one file does not
|
|
# compile with python-2.x because it won't be used there
|
|
|
|
post-install:
|
|
cd ${WRKSRC}/docs/source && pax -wr -pma *.rst \
|
|
${DESTDIR}${DOCDIR}
|
|
cd ${WRKSRC}/examples && pax -wr -pma * \
|
|
${DESTDIR}${EXAMPLESDIR}
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|