1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-03 06:04:53 +00:00
freebsd-ports/www/pyweblib/Makefile
Boris Samorodov e878dfd8c9 * add LICENSE=GPLv2;
* update to version 1.3.7, changes:
-  sslenv.PrintSecInfo(): Also SSL_PROTOCOL is displayed
-  fixed inconsistent use of tabs and spaces (python -tt)
-  Single quotes and backticks are now escaped in pyweblib.forms.escapeHTML()
-  pyweblib.forms.Form.hiddenInputFields(): Treat default value for key-word
   argument ignoreFieldNames more robustely
-  forms.Select now also supports 3-tuples as option and the third
   value will be added as attribute text to HTML tag <option>

Reported by:	miwibot
2011-03-01 16:52:55 +00:00

42 lines
970 B
Makefile

# New ports collection makefile for: pyweblib
# Date created: 22 March 2002
# Whom: Oddbjorn Steffensen <oddbjorn@tricknology.org>
#
# $FreeBSD$
#
PORTNAME= pyweblib
PORTVERSION= 1.3.7
CATEGORIES= www
MASTER_SITES= http://www.stroeder.com/pylib/PyWebLib/download/ \
ftp://ftp.ipt.ru/pub/download/
MAINTAINER= bsam@ipt.ru
COMMENT= Yet another web programming framework for Python
LICENSE= GPLv2
USE_PYTHON= yes
USE_PYDISTUTILS= yes
DOCS= pydoc/pyweblib.forms.html \
pydoc/pyweblib.helper.html \
pydoc/pyweblib.html \
pydoc/pyweblib.httphelper.html \
pydoc/pyweblib.session.html \
pydoc/pyweblib.sslenv.html
EXAMPLES= *.py
post-install:
${MKDIR} ${EXAMPLESDIR} ${EXAMPLESDIR}/cgi-bin
${INSTALL_DATA} ${WRKSRC}/cgi-bin/${EXAMPLES} ${EXAMPLESDIR}/cgi-bin
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}/pydoc
.for file in ${DOCS}
${INSTALL_DATA} ${WRKSRC}/htdocs/${file} ${DOCSDIR}/${file}
.endfor
.endif
.include <bsd.port.mk>