mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-03 01:23:49 +00:00
33 lines
646 B
Makefile
33 lines
646 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.07
|
|
CATEGORIES= www python
|
|
MASTER_SITES= SF
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= xride@FreeBSD.org
|
|
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>
|