mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-05 01:55:52 +00:00
e5dab6f732
CGI/FastCGI/mod_python/html-templating facilities for the Python programming language. PR: ports/86155 Submitted by: Soren Straarup <xride@x12.dk>
34 lines
691 B
Makefile
34 lines
691 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.06
|
|
CATEGORIES= www python
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= jonpy
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= xride@x12.dk
|
|
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>
|