1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-22 20:41:26 +00:00

Add ruby-nqxml, a pure Ruby implementasion of an XML tokenizer, a

SAX-style streaming XML parser, a DOM-style tree parser, and an XML
writer.
This commit is contained in:
Akinori MUSHA 2001-03-31 12:30:16 +00:00
parent 80fdc44065
commit 5f0e6ef2d7
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=40659
6 changed files with 72 additions and 0 deletions

View File

@ -135,6 +135,7 @@
SUBDIR += ruby-csv
SUBDIR += ruby-erb
SUBDIR += ruby-html-parser
SUBDIR += ruby-nqxml
SUBDIR += ruby-qt2xml
SUBDIR += ruby-rdtool
SUBDIR += ruby-rss

View File

@ -0,0 +1,34 @@
# New ports collection makefile for: NQXML
# Date created: 10 March 2001
# Whom: Akinori MUSHA aka knu <knu@idaemons.org>
#
# $FreeBSD$
#
PORTNAME= nqxml
PORTVERSION= 0.5.1
CATEGORIES= textproc ruby
MASTER_SITES= http://www.io.com/~jimm/downloads/nqxml/
PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX}
DIST_SUBDIR= ruby
MAINTAINER= knu@FreeBSD.org
USE_RUBY= yes
NO_BUILD= yes
DOCS= ChangeLog README Credits TODO
do-install:
cd ${WRKSRC} && ${RUBY} install.rb
.if !defined(NOPORTDOCS)
${MKDIR} ${RUBY_EXAMPLESDIR}/${PORTNAME}
${INSTALL_DATA} ${WRKSRC}/examples/* ${RUBY_EXAMPLESDIR}/${PORTNAME}/
${MKDIR} ${RUBY_DOCDIR}/${PORTNAME}
.for f in ${DOCS}
${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_DOCDIR}/${PORTNAME}/
.endfor
.endif
.include <bsd.port.mk>

View File

@ -0,0 +1 @@
MD5 (ruby/nqxml-0.5.1.tar.gz) = 2d0913408e868b51082938f600bc1ea3

View File

@ -0,0 +1 @@
A pure Ruby implementasion of XML tokenizer/parser/writer

View File

@ -0,0 +1,6 @@
NQXML is a pure Ruby implementation of an XML tokenizer, a SAX-style
streaming XML parser, a DOM-style tree parser, and an XML writer.
``NQ'' for ``Not Quite''.
Author: Jim Menard <jimm@io.com>
WWW: http://www.io.com/~jimm/downloads/nqxml/index.html

View File

@ -0,0 +1,29 @@
%%RUBY_SITELIBDIR%%/nqxml/document.rb
%%RUBY_SITELIBDIR%%/nqxml/domparser.rb
%%RUBY_SITELIBDIR%%/nqxml/entities.rb
%%RUBY_SITELIBDIR%%/nqxml/error.rb
%%RUBY_SITELIBDIR%%/nqxml/info.rb
%%RUBY_SITELIBDIR%%/nqxml/parser.rb
%%RUBY_SITELIBDIR%%/nqxml/streamingparser.rb
%%RUBY_SITELIBDIR%%/nqxml/tokenizer.rb
%%RUBY_SITELIBDIR%%/nqxml/treeparser.rb
%%RUBY_SITELIBDIR%%/nqxml/utils.rb
%%RUBY_SITELIBDIR%%/nqxml/writer.rb
@dirrm %%RUBY_SITELIBDIR%%/nqxml
%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/nqxml/data.xml
%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/nqxml/doc.xml
%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/nqxml/dumpXML.rb
%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/nqxml/parseTestStream.rb
%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/nqxml/parseTestTree.rb
%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/nqxml/printEntityClassNames.rb
%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/nqxml/reverseTags.rb
%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/nqxml/reverseText.rb
%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/nqxml/write.rb
%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/nqxml/writeManualDoc.rb
%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/nqxml/writeParsedDoc.rb
%%PORTDOCS%%@dirrm %%RUBY_EXAMPLESDIR%%/nqxml
%%PORTDOCS%%%%RUBY_DOCDIR%%/nqxml/ChangeLog
%%PORTDOCS%%%%RUBY_DOCDIR%%/nqxml/Credits
%%PORTDOCS%%%%RUBY_DOCDIR%%/nqxml/README
%%PORTDOCS%%%%RUBY_DOCDIR%%/nqxml/TODO
%%PORTDOCS%%@dirrm %%RUBY_DOCDIR%%/nqxml