mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-13 03:03:15 +00:00
bc61234043
- Assign maintainership to submitter PR: ports/165770 Submitted by: Muhammad Moinur Rahman <5u623l20@gmail.com> Approved by: glarkin@ (mentor) Feature safe: yes
33 lines
647 B
Makefile
33 lines
647 B
Makefile
# New ports collection makefile for: jonpy
|
|
# Date created: 12 Sep 2005
|
|
# Whom: Søren Straarup <xride@x12.dk>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= jonpy
|
|
PORTVERSION= 0.10
|
|
CATEGORIES= www python
|
|
MASTER_SITES= SF
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= 5u623l20@gmail.com
|
|
COMMENT= Python FastCGI interface library
|
|
|
|
USE_PYTHON= yes
|
|
USE_PYDISTUTILS= yes
|
|
NO_BUILD= yes
|
|
|
|
PORTDOCS= *
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/doc/* ${DOCSDIR}
|
|
.endif
|
|
${MKDIR} ${EXAMPLESDIR}
|
|
(cd ${WRKSRC}/example && ${FIND} . | \
|
|
${CPIO} -pdmu -R ${SHAREOWN}:${SHAREGRP} ${EXAMPLESDIR})
|
|
|
|
.include <bsd.port.mk>
|