diff options
author | ijliao <ijliao@FreeBSD.org> | 2004-08-26 17:02:05 +0800 |
---|---|---|
committer | ijliao <ijliao@FreeBSD.org> | 2004-08-26 17:02:05 +0800 |
commit | 028c889250dfcdb633a2994ddd878a4d99bdd54f (patch) | |
tree | 7146243af7ef4eeca3119436697ff26fc9ffdac0 | |
parent | 6fedfb69f8d3f0f7707d00d5bd204b2e4775f3ef (diff) | |
download | freebsd-ports-gnome-028c889250dfcdb633a2994ddd878a4d99bdd54f.tar.gz freebsd-ports-gnome-028c889250dfcdb633a2994ddd878a4d99bdd54f.tar.zst freebsd-ports-gnome-028c889250dfcdb633a2994ddd878a4d99bdd54f.zip |
add py-cssutils 0.53
CSS Cascading Style Sheets library for Python
-rw-r--r-- | www/Makefile | 1 | ||||
-rw-r--r-- | www/py-cssutils/Makefile | 30 | ||||
-rw-r--r-- | www/py-cssutils/distinfo | 2 | ||||
-rw-r--r-- | www/py-cssutils/pkg-descr | 5 |
4 files changed, 38 insertions, 0 deletions
diff --git a/www/Makefile b/www/Makefile index b6801307e48e..fdb1f84783c4 100644 --- a/www/Makefile +++ b/www/Makefile @@ -579,6 +579,7 @@ SUBDIR += py-HTMLgen SUBDIR += py-albatross SUBDIR += py-clientform + SUBDIR += py-cssutils SUBDIR += py-fcgi SUBDIR += py-htmltestcase SUBDIR += py-imdbpy diff --git a/www/py-cssutils/Makefile b/www/py-cssutils/Makefile new file mode 100644 index 000000000000..475075576650 --- /dev/null +++ b/www/py-cssutils/Makefile @@ -0,0 +1,30 @@ +# ex:ts=8 +# Ports collection makefile for: py-cssutils +# Date created: Aug 26, 2004 +# Whom: ijliao +# +# $FreeBSD$ +# + +PORTNAME= cssutils +PORTVERSION= 0.53 +CATEGORIES= www python +MASTER_SITES= http://cthedot.de/cssutils/ +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= ports@FreeBSD.org +COMMENT= CSS Cascading Style Sheets library for Python + +RUN_DEPENDS= ${PYXML} + +USE_ZIP= yes +USE_PYTHON= yes +USE_PYDISTUTILS= yes + +post-install: + @${FIND} ${PYTHON_SITELIBDIR}/${PORTNAME} ! -type d | \ + ${SED} 's,^${PREFIX}/,,' >> ${TMPPLIST} + @${FIND} ${PYTHON_SITELIBDIR}/${PORTNAME} -type d | ${SORT} -r | \ + ${SED} 's,^${PREFIX}/,@dirrm ,' >> ${TMPPLIST} + +.include <bsd.port.mk> diff --git a/www/py-cssutils/distinfo b/www/py-cssutils/distinfo new file mode 100644 index 000000000000..612fec0f9132 --- /dev/null +++ b/www/py-cssutils/distinfo @@ -0,0 +1,2 @@ +MD5 (cssutils-0.53.zip) = cb91bcdce7846a910f5fca92707e4fa1 +SIZE (cssutils-0.53.zip) = 56141 diff --git a/www/py-cssutils/pkg-descr b/www/py-cssutils/pkg-descr new file mode 100644 index 000000000000..ab72767a9c53 --- /dev/null +++ b/www/py-cssutils/pkg-descr @@ -0,0 +1,5 @@ +A Python package to parse and build CSS Cascading Style Sheets. Partly +implement the DOM Level 2 CSS interfaces. Additional some cssutils only +convenience and (hopefully) more pythonic methods are integrated. + +WWW: http://cthedot.de/cssutils/ |