blob: d3d9046c03c65fa64a8f3cee2a2c6c5b5b62b3a0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# New ports collection makefile for: quixote
# Date created: 18 September 2001
# Whom: Johann Visagie <wjv@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= quixote
PORTVERSION= 2.1
CATEGORIES= www python
MASTER_SITES= http://www.mems-exchange.org/software/files/quixote/ \
http://bsdchat.com/dist/dryice/
DISTNAME= Quixote-${PORTVERSION}
MAINTAINER= dryice@liu.com.cn
COMMENT= A framework for developing web applications in Python
USE_PYTHON= 2.3+
USE_PYDISTUTILS= yes
.include <bsd.port.pre.mk>
post-install:
@ PYTHONPATH=${PREFIX}/lib/${PYTHON_VERSION}/site-packages \
${PYTHON_CMD} ${SCRIPTDIR}/compile_ptl.py \
${PREFIX}/lib/${PYTHON_VERSION}/site-packages/${PORTNAME}/demo/*.ptl
.if !defined(NOPORTDOCS)
@ ${MKDIR} ${DOCSDIR}
.for docfile in ACKS CHANGES LICENSE README TODO doc/*
@ ${INSTALL_DATA} ${WRKSRC}/${docfile} ${DOCSDIR}
.endfor
.endif
.include <bsd.port.post.mk>
|