1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-19 19:59:43 +00:00

Add forgetHTML, a Python module for object-oriented HTML generation.

Sponsored by:	University of Tromsø
This commit is contained in:
Anders Nordby 2004-11-20 17:12:15 +00:00
parent 7ec0a5a30f
commit 6acd1939be
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=122018
5 changed files with 44 additions and 0 deletions

View File

@ -600,6 +600,7 @@
SUBDIR += py-clientform
SUBDIR += py-cssutils
SUBDIR += py-fcgi
SUBDIR += py-forgethtml
SUBDIR += py-htmltestcase
SUBDIR += py-imdbpy
SUBDIR += py-mt

View File

@ -0,0 +1,32 @@
# Ports collection makefile for: py-forgethtml
# Date created: 20 November 2004
# Whom: Anders Nordby <anders@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= forgethtml
PORTVERSION= 20041021
CATEGORIES= www python
MASTER_SITES= http://forgethtml.sourceforge.net/
MASTER_SITE_SUBDIR= ${PORTNAME}
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
DISTNAME= ${PORTNAME}-cvs-2004-10-21
MAINTAINER= anders@FreeBSD.org
COMMENT= Python module for object-oriented HTML generation
USE_PYTHON= yes
USE_PYDISTUTILS= yes
WRKSRC= ${WRKDIR}/${PORTNAME}
post-build:
@cd ${WRKSRC}/lib && ${PYTHON_CMD} -c 'import forgetHTML'
@cd ${WRKSRC}/lib && ${PYTHON_CMD} -O -c 'import forgetHTML'
post-install:
${INSTALL_DATA} ${WRKSRC}/lib/forgetHTML.pyc ${PYTHON_SITELIBDIR}/
${INSTALL_DATA} ${WRKSRC}/lib/forgetHTML.pyo ${PYTHON_SITELIBDIR}/
.include <bsd.port.mk>

View File

@ -0,0 +1,2 @@
MD5 (forgethtml-cvs-2004-10-21.tar.gz) = b8b8a323c7a4364aa4058d5e5c8aaa4d
SIZE (forgethtml-cvs-2004-10-21.tar.gz) = 6211

View File

@ -0,0 +1,6 @@
forgetHTML is a Python module providing a totally object-oriented way of
writing HTML. Each element is a object which may contain other HTML elements
(ie. objects). Only those elements allowed in HTML to contain each other are
allowed to be inserted.
WWW: http://forgethtml.sourceforge.net/

View File

@ -0,0 +1,3 @@
%%PYTHON_SITELIBDIR%%/forgetHTML.py
%%PYTHON_SITELIBDIR%%/forgetHTML.pyc
%%PYTHON_SITELIBDIR%%/forgetHTML.pyo