freebsd-ports/www/pyweblib/Makefile
Boris Samorodov 0588933cb1 Update to version 1.3.6. Changes:
-----
2009-07-26      PyWebLib 1.3.6
- pyweblib.session.WebSession.__init__() has two new key-word arguments:
  sessionIDLength and sessionIDChars which allows to specify length and
  valid chars of session IDs generated
- A few chars added to pyweblib.session.SESSION_ID_CHARS to
  increase security
-----

PR:		ports/138156
Submitted by:	Sylvio Cesar <scjamorim at bsd.com.br>
2009-08-25 08:22:27 +00:00

39 lines
954 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.6
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
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>