mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-26 05:02:18 +00:00
4bf171cb61
- Convert to new options framework - Support STAGEDIR - While I'm here: - Use PYDISTUTILS_AUTOPLIST - Use PORTEXAMPLES - Use COPYTREE_SHARE - Simplify Makefile - Remove NO_BUILD - Remove .include <bsd.port.options.mk> PR: ports/188789 Submitted by: Muhammad Moinur Rahman <5u623l20@gmail.com> (maintainer)
32 lines
631 B
Makefile
32 lines
631 B
Makefile
# Created by: Søren Straarup <xride@x12.dk>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= jonpy
|
|
PORTVERSION= 0.10
|
|
PORTREVISION= 1
|
|
CATEGORIES= www python
|
|
MASTER_SITES= SF
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= 5u623l20@gmail.com
|
|
COMMENT= Python FastCGI interface library
|
|
|
|
LICENSE= MIT
|
|
|
|
USE_PYTHON= yes
|
|
USE_PYDISTUTILS=yes
|
|
PYDISTUTILS_AUTOPLIST= yes
|
|
|
|
PORTDOCS= *
|
|
PORTEXAMPLES= *
|
|
|
|
OPTIONS_DEFINE= DOCS EXAMPLES
|
|
|
|
post-install:
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/doc/* ${STAGEDIR}${DOCSDIR}
|
|
${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
|
cd ${WRKSRC}/example && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR}
|
|
|
|
.include <bsd.port.mk>
|