diff options
author | ijliao <ijliao@FreeBSD.org> | 2002-06-23 02:39:44 +0800 |
---|---|---|
committer | ijliao <ijliao@FreeBSD.org> | 2002-06-23 02:39:44 +0800 |
commit | a0816b56a5c6213ba93d6d85b79a188dccee2dbb (patch) | |
tree | a30f33ca8d49c2b6be8867abea7529a05e54ab83 /www | |
parent | f1d426cc4b0376c603414bf5c0799cce636f641d (diff) | |
download | freebsd-ports-gnome-a0816b56a5c6213ba93d6d85b79a188dccee2dbb.tar.gz freebsd-ports-gnome-a0816b56a5c6213ba93d6d85b79a188dccee2dbb.tar.zst freebsd-ports-gnome-a0816b56a5c6213ba93d6d85b79a188dccee2dbb.zip |
add xpath2rss 0.7
HTML to RSS converter
Diffstat (limited to 'www')
-rw-r--r-- | www/Makefile | 1 | ||||
-rw-r--r-- | www/xpath2rss/Makefile | 30 | ||||
-rw-r--r-- | www/xpath2rss/distinfo | 1 | ||||
-rw-r--r-- | www/xpath2rss/pkg-comment | 1 | ||||
-rw-r--r-- | www/xpath2rss/pkg-descr | 4 | ||||
-rw-r--r-- | www/xpath2rss/pkg-plist | 5 |
6 files changed, 42 insertions, 0 deletions
diff --git a/www/Makefile b/www/Makefile index ad9167f5a10d..651845bf7f0e 100644 --- a/www/Makefile +++ b/www/Makefile @@ -392,6 +392,7 @@ SUBDIR += wyvern SUBDIR += xist SUBDIR += xitami + SUBDIR += xpath2rss SUBDIR += xswallow SUBDIR += znavigator SUBDIR += zope diff --git a/www/xpath2rss/Makefile b/www/xpath2rss/Makefile new file mode 100644 index 000000000000..d1c4fd3c2564 --- /dev/null +++ b/www/xpath2rss/Makefile @@ -0,0 +1,30 @@ +# ex:ts=8 +# Ports collection makefile for: xpath2rss +# Date created: Jun 23, 2002 +# Whom: ijliao +# +# $FreeBSD$ +# + +PORTNAME= xpath2rss +PORTVERSION= 0.7 +CATEGORIES= www python +MASTER_SITES= http://www.mnot.net/xpath2rss/ +EXTRACT_SUFX= .tgz + +MAINTAINER= ports@FreeBSD.org + +RUN_DEPENDS= ${PYXML} + +USE_PYTHON= yes +NO_BUILD= yes + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin + (cd ${WRKSRC} ; ${INSTALL_SCRIPT} *.py ${PYTHON_SITELIBDIR}) +.if !defined(NOPORTDOCS) + @${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} +.endif + +.include <bsd.port.mk> diff --git a/www/xpath2rss/distinfo b/www/xpath2rss/distinfo new file mode 100644 index 000000000000..5c22c87abf66 --- /dev/null +++ b/www/xpath2rss/distinfo @@ -0,0 +1 @@ +MD5 (xpath2rss-0.7.tgz) = fd52a08b776086a951827f89ad519023 diff --git a/www/xpath2rss/pkg-comment b/www/xpath2rss/pkg-comment new file mode 100644 index 000000000000..9251ecb66142 --- /dev/null +++ b/www/xpath2rss/pkg-comment @@ -0,0 +1 @@ +HTML to RSS converter diff --git a/www/xpath2rss/pkg-descr b/www/xpath2rss/pkg-descr new file mode 100644 index 000000000000..9d9f95db1482 --- /dev/null +++ b/www/xpath2rss/pkg-descr @@ -0,0 +1,4 @@ +xpath2rss is Yet Another HTML->RSS scraper. This one's different in that +instead of using regular expressions, as most do, it uses XPath. + +WWW: http://www.mnot.net/xpath2rss/ diff --git a/www/xpath2rss/pkg-plist b/www/xpath2rss/pkg-plist new file mode 100644 index 000000000000..c6013ad9a9f5 --- /dev/null +++ b/www/xpath2rss/pkg-plist @@ -0,0 +1,5 @@ +bin/xpath2rss +%%PYTHON_SITELIBDIR%%/HtmlDom.py +%%PYTHON_SITELIBDIR%%/RSS.py +%%PORTDOCS%%share/doc/xpath2rss/README +%%PORTDOCS%%@dirrm share/doc/xpath2rss |