2001-09-18 12:51:37 +02:00
|
|
|
# New ports collection makefile for: quixote
|
|
|
|
# Date created: 18 September 2001
|
|
|
|
# Whom: Johann Visagie <wjv@FreeBSD.org>
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
PORTNAME= quixote
|
2011-06-02 16:08:12 +02:00
|
|
|
PORTVERSION= 2.7
|
2001-09-18 12:51:37 +02:00
|
|
|
CATEGORIES= www python
|
2008-01-07 12:42:32 +01:00
|
|
|
MASTER_SITES= http://quixote.ca/releases/ \
|
2006-03-15 19:21:26 +01:00
|
|
|
http://dryice.name/computer/FreeBSD/distfiles/
|
2001-09-18 12:51:37 +02:00
|
|
|
DISTNAME= Quixote-${PORTVERSION}
|
|
|
|
|
2010-12-29 08:03:16 +01:00
|
|
|
MAINTAINER= ports@FreeBSD.org
|
2003-03-07 07:14:21 +01:00
|
|
|
COMMENT= A framework for developing web applications in Python
|
2001-09-18 12:51:37 +02:00
|
|
|
|
2008-01-07 12:42:32 +01:00
|
|
|
RUN_DEPENDS+= qpcheck.py:${PORTSDIR}/www/py-qpy
|
|
|
|
|
2012-05-13 22:10:30 +02:00
|
|
|
USE_PYTHON= -2.7
|
2002-04-29 21:21:15 +02:00
|
|
|
USE_PYDISTUTILS= yes
|
2007-07-30 11:42:28 +02:00
|
|
|
PYDISTUTILS_PKGNAME= Quixote
|
2002-01-09 15:49:55 +01:00
|
|
|
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
|
2001-09-18 12:51:37 +02:00
|
|
|
post-install:
|
2001-11-14 10:30:05 +01:00
|
|
|
@ PYTHONPATH=${PREFIX}/lib/${PYTHON_VERSION}/site-packages \
|
|
|
|
${PYTHON_CMD} ${SCRIPTDIR}/compile_ptl.py \
|
2004-06-30 09:09:35 +02:00
|
|
|
${PREFIX}/lib/${PYTHON_VERSION}/site-packages/${PORTNAME}/demo/*.ptl
|
|
|
|
|
2001-09-18 12:51:37 +02:00
|
|
|
.if !defined(NOPORTDOCS)
|
|
|
|
@ ${MKDIR} ${DOCSDIR}
|
2008-01-07 12:42:32 +01:00
|
|
|
.for docfile in ACKS.txt CHANGES.txt LICENSE.txt README.txt TODO doc/*
|
2001-09-18 12:51:37 +02:00
|
|
|
@ ${INSTALL_DATA} ${WRKSRC}/${docfile} ${DOCSDIR}
|
|
|
|
.endfor
|
|
|
|
.endif
|
|
|
|
|
2002-01-09 15:49:55 +01:00
|
|
|
.include <bsd.port.post.mk>
|