mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 09:49:18 -04:00
Add ruby-rexml, a pure Ruby XML processor inspired by the Electric XML
for Java.
This commit is contained in:
parent
c0abc71940
commit
448a67ccc2
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=48976
6 changed files with 126 additions and 0 deletions
|
@ -185,6 +185,7 @@
|
||||||
SUBDIR += ruby-qt2xml
|
SUBDIR += ruby-qt2xml
|
||||||
SUBDIR += ruby-rd-mode.el
|
SUBDIR += ruby-rd-mode.el
|
||||||
SUBDIR += ruby-rdtool
|
SUBDIR += ruby-rdtool
|
||||||
|
SUBDIR += ruby-rexml
|
||||||
SUBDIR += ruby-rss
|
SUBDIR += ruby-rss
|
||||||
SUBDIR += ruby-sablot
|
SUBDIR += ruby-sablot
|
||||||
SUBDIR += ruby-xmlparser
|
SUBDIR += ruby-xmlparser
|
||||||
|
|
38
textproc/ruby-rexml/Makefile
Normal file
38
textproc/ruby-rexml/Makefile
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
# New ports collection makefile for: REXML
|
||||||
|
# Date created: 15 October 2001
|
||||||
|
# Whom: Akinori MUSHA aka knu <knu@idaemons.org>
|
||||||
|
#
|
||||||
|
# $FreeBSD$
|
||||||
|
#
|
||||||
|
|
||||||
|
PORTNAME= rexml
|
||||||
|
PORTVERSION= 1.0a8
|
||||||
|
CATEGORIES= textproc ruby
|
||||||
|
MASTER_SITES= http://www.germane-software.com/~ser/software/archives/
|
||||||
|
PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX}
|
||||||
|
DISTNAME= ${PORTNAME}_${PORTVERSION}
|
||||||
|
EXTRACT_SUFX= .tgz
|
||||||
|
DIST_SUBDIR= ruby
|
||||||
|
|
||||||
|
MAINTAINER= knu@FreeBSD.org
|
||||||
|
|
||||||
|
USE_RUBY= yes
|
||||||
|
|
||||||
|
NO_BUILD= yes
|
||||||
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
||||||
|
|
||||||
|
DOCS= README index.html tutorial.html api
|
||||||
|
|
||||||
|
post-extract:
|
||||||
|
find ${WRKSRC} -type d -name CVS | xargs ${RM} -rf
|
||||||
|
|
||||||
|
do-install:
|
||||||
|
cd ${WRKSRC} && ${RUBY} install.rb
|
||||||
|
.if !defined(NOPORTDOCS)
|
||||||
|
${MKDIR} ${RUBY_DOCDIR}/${PORTNAME}
|
||||||
|
.for f in ${DOCS}
|
||||||
|
${CP} -R ${WRKSRC}/${f} ${RUBY_DOCDIR}/${PORTNAME}/
|
||||||
|
.endfor
|
||||||
|
.endif
|
||||||
|
|
||||||
|
.include <bsd.port.mk>
|
1
textproc/ruby-rexml/distinfo
Normal file
1
textproc/ruby-rexml/distinfo
Normal file
|
@ -0,0 +1 @@
|
||||||
|
MD5 (ruby/rexml_1.0a8.tgz) = ebd8d5b7c1208ae60e77c80883b85009
|
1
textproc/ruby-rexml/pkg-comment
Normal file
1
textproc/ruby-rexml/pkg-comment
Normal file
|
@ -0,0 +1 @@
|
||||||
|
A pure Ruby XML processor inspired by the Electric XML for Java
|
6
textproc/ruby-rexml/pkg-descr
Normal file
6
textproc/ruby-rexml/pkg-descr
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
REXML is a pure Ruby XML processor inspired by the Electric XML
|
||||||
|
processor for Java. The API is terse and intuitive, and XML
|
||||||
|
processing is reasonably fast.
|
||||||
|
|
||||||
|
Author: Sean Russell <ser@germane-software.com>
|
||||||
|
WWW: http://www.germane-software.com/~ser/Software/rexml/
|
79
textproc/ruby-rexml/pkg-plist
Normal file
79
textproc/ruby-rexml/pkg-plist
Normal file
|
@ -0,0 +1,79 @@
|
||||||
|
%%RUBY_SITELIBDIR%%/rexml/attribute.rb
|
||||||
|
%%RUBY_SITELIBDIR%%/rexml/cdata.rb
|
||||||
|
%%RUBY_SITELIBDIR%%/rexml/child.rb
|
||||||
|
%%RUBY_SITELIBDIR%%/rexml/comment.rb
|
||||||
|
%%RUBY_SITELIBDIR%%/rexml/doctype.rb
|
||||||
|
%%RUBY_SITELIBDIR%%/rexml/document.rb
|
||||||
|
%%RUBY_SITELIBDIR%%/rexml/element.rb
|
||||||
|
%%RUBY_SITELIBDIR%%/rexml/functions.rb
|
||||||
|
%%RUBY_SITELIBDIR%%/rexml/instruction.rb
|
||||||
|
%%RUBY_SITELIBDIR%%/rexml/namespace.rb
|
||||||
|
%%RUBY_SITELIBDIR%%/rexml/node.rb
|
||||||
|
%%RUBY_SITELIBDIR%%/rexml/parent.rb
|
||||||
|
%%RUBY_SITELIBDIR%%/rexml/source.rb
|
||||||
|
%%RUBY_SITELIBDIR%%/rexml/text.rb
|
||||||
|
%%RUBY_SITELIBDIR%%/rexml/xmldecl.rb
|
||||||
|
%%RUBY_SITELIBDIR%%/rexml/xpath.rb
|
||||||
|
@dirrm %%RUBY_SITELIBDIR%%/rexml
|
||||||
|
%%PORTDOCS%%%%RUBY_DOCDIR%%/rexml/README
|
||||||
|
%%PORTDOCS%%%%RUBY_DOCDIR%%/rexml/index.html
|
||||||
|
%%PORTDOCS%%%%RUBY_DOCDIR%%/rexml/tutorial.html
|
||||||
|
%%PORTDOCS%%%%RUBY_DOCDIR%%/rexml/api/style.css
|
||||||
|
%%PORTDOCS%%%%RUBY_DOCDIR%%/rexml/api/rexml/AttlistDecl.html
|
||||||
|
%%PORTDOCS%%%%RUBY_DOCDIR%%/rexml/api/rexml/AttlistDecl.xml
|
||||||
|
%%PORTDOCS%%%%RUBY_DOCDIR%%/rexml/api/rexml/Attribute.html
|
||||||
|
%%PORTDOCS%%%%RUBY_DOCDIR%%/rexml/api/rexml/Attribute.xml
|
||||||
|
%%PORTDOCS%%%%RUBY_DOCDIR%%/rexml/api/rexml/Attributes.html
|
||||||
|
%%PORTDOCS%%%%RUBY_DOCDIR%%/rexml/api/rexml/Attributes.xml
|
||||||
|
%%PORTDOCS%%%%RUBY_DOCDIR%%/rexml/api/rexml/CData.html
|
||||||
|
%%PORTDOCS%%%%RUBY_DOCDIR%%/rexml/api/rexml/CData.xml
|
||||||
|
%%PORTDOCS%%%%RUBY_DOCDIR%%/rexml/api/rexml/Child.html
|
||||||
|
%%PORTDOCS%%%%RUBY_DOCDIR%%/rexml/api/rexml/Child.xml
|
||||||
|
%%PORTDOCS%%%%RUBY_DOCDIR%%/rexml/api/rexml/Comment.html
|
||||||
|
%%PORTDOCS%%%%RUBY_DOCDIR%%/rexml/api/rexml/Comment.xml
|
||||||
|
%%PORTDOCS%%%%RUBY_DOCDIR%%/rexml/api/rexml/Declaration.html
|
||||||
|
%%PORTDOCS%%%%RUBY_DOCDIR%%/rexml/api/rexml/Declaration.xml
|
||||||
|
%%PORTDOCS%%%%RUBY_DOCDIR%%/rexml/api/rexml/DocType.html
|
||||||
|
%%PORTDOCS%%%%RUBY_DOCDIR%%/rexml/api/rexml/DocType.xml
|
||||||
|
%%PORTDOCS%%%%RUBY_DOCDIR%%/rexml/api/rexml/Document.html
|
||||||
|
%%PORTDOCS%%%%RUBY_DOCDIR%%/rexml/api/rexml/Document.xml
|
||||||
|
%%PORTDOCS%%%%RUBY_DOCDIR%%/rexml/api/rexml/Element.html
|
||||||
|
%%PORTDOCS%%%%RUBY_DOCDIR%%/rexml/api/rexml/Element.xml
|
||||||
|
%%PORTDOCS%%%%RUBY_DOCDIR%%/rexml/api/rexml/ElementDecl.html
|
||||||
|
%%PORTDOCS%%%%RUBY_DOCDIR%%/rexml/api/rexml/ElementDecl.xml
|
||||||
|
%%PORTDOCS%%%%RUBY_DOCDIR%%/rexml/api/rexml/Elements.html
|
||||||
|
%%PORTDOCS%%%%RUBY_DOCDIR%%/rexml/api/rexml/Elements.xml
|
||||||
|
%%PORTDOCS%%%%RUBY_DOCDIR%%/rexml/api/rexml/EntityDecl.html
|
||||||
|
%%PORTDOCS%%%%RUBY_DOCDIR%%/rexml/api/rexml/EntityDecl.xml
|
||||||
|
%%PORTDOCS%%%%RUBY_DOCDIR%%/rexml/api/rexml/Functions.html
|
||||||
|
%%PORTDOCS%%%%RUBY_DOCDIR%%/rexml/api/rexml/Functions.xml
|
||||||
|
%%PORTDOCS%%%%RUBY_DOCDIR%%/rexml/api/rexml/IOSource.html
|
||||||
|
%%PORTDOCS%%%%RUBY_DOCDIR%%/rexml/api/rexml/IOSource.xml
|
||||||
|
%%PORTDOCS%%%%RUBY_DOCDIR%%/rexml/api/rexml/Instruction.html
|
||||||
|
%%PORTDOCS%%%%RUBY_DOCDIR%%/rexml/api/rexml/Instruction.xml
|
||||||
|
%%PORTDOCS%%%%RUBY_DOCDIR%%/rexml/api/rexml/Namespace.html
|
||||||
|
%%PORTDOCS%%%%RUBY_DOCDIR%%/rexml/api/rexml/Namespace.xml
|
||||||
|
%%PORTDOCS%%%%RUBY_DOCDIR%%/rexml/api/rexml/Node.html
|
||||||
|
%%PORTDOCS%%%%RUBY_DOCDIR%%/rexml/api/rexml/Node.xml
|
||||||
|
%%PORTDOCS%%%%RUBY_DOCDIR%%/rexml/api/rexml/NotationDecl.html
|
||||||
|
%%PORTDOCS%%%%RUBY_DOCDIR%%/rexml/api/rexml/NotationDecl.xml
|
||||||
|
%%PORTDOCS%%%%RUBY_DOCDIR%%/rexml/api/rexml/Parent.html
|
||||||
|
%%PORTDOCS%%%%RUBY_DOCDIR%%/rexml/api/rexml/Parent.xml
|
||||||
|
%%PORTDOCS%%%%RUBY_DOCDIR%%/rexml/api/rexml/REXML.html
|
||||||
|
%%PORTDOCS%%%%RUBY_DOCDIR%%/rexml/api/rexml/REXML.xml
|
||||||
|
%%PORTDOCS%%%%RUBY_DOCDIR%%/rexml/api/rexml/Source.html
|
||||||
|
%%PORTDOCS%%%%RUBY_DOCDIR%%/rexml/api/rexml/Source.xml
|
||||||
|
%%PORTDOCS%%%%RUBY_DOCDIR%%/rexml/api/rexml/SourceFactory.html
|
||||||
|
%%PORTDOCS%%%%RUBY_DOCDIR%%/rexml/api/rexml/SourceFactory.xml
|
||||||
|
%%PORTDOCS%%%%RUBY_DOCDIR%%/rexml/api/rexml/Text.html
|
||||||
|
%%PORTDOCS%%%%RUBY_DOCDIR%%/rexml/api/rexml/Text.xml
|
||||||
|
%%PORTDOCS%%%%RUBY_DOCDIR%%/rexml/api/rexml/XMLDecl.html
|
||||||
|
%%PORTDOCS%%%%RUBY_DOCDIR%%/rexml/api/rexml/XMLDecl.xml
|
||||||
|
%%PORTDOCS%%%%RUBY_DOCDIR%%/rexml/api/rexml/XPath.html
|
||||||
|
%%PORTDOCS%%%%RUBY_DOCDIR%%/rexml/api/rexml/XPath.xml
|
||||||
|
%%PORTDOCS%%%%RUBY_DOCDIR%%/rexml/api/rexml/index.html
|
||||||
|
%%PORTDOCS%%%%RUBY_DOCDIR%%/rexml/api/rexml/index.xml
|
||||||
|
%%PORTDOCS%%%%RUBY_DOCDIR%%/rexml/api/rexml/style.css
|
||||||
|
%%PORTDOCS%%@dirrm %%RUBY_DOCDIR%%/rexml/api/rexml
|
||||||
|
%%PORTDOCS%%@dirrm %%RUBY_DOCDIR%%/rexml/api
|
||||||
|
%%PORTDOCS%%@dirrm %%RUBY_DOCDIR%%/rexml
|
Loading…
Add table
Reference in a new issue