diff options
author | Akinori MUSHA <knu@FreeBSD.org> | 2003-09-10 09:54:55 +0000 |
---|---|---|
committer | Akinori MUSHA <knu@FreeBSD.org> | 2003-09-10 09:54:55 +0000 |
commit | 509b4b68170c22fc5b64aadbaeede5af0dc103bd (patch) | |
tree | 3dade562b2cdd590588477e280f12e3f6999e2bd /textproc/ruby-quixml | |
parent | d7dea455497cde96e629410063832756e3ab9a32 (diff) | |
download | ports-509b4b68170c22fc5b64aadbaeede5af0dc103bd.tar.gz ports-509b4b68170c22fc5b64aadbaeede5af0dc103bd.zip |
Notes
Diffstat (limited to 'textproc/ruby-quixml')
-rw-r--r-- | textproc/ruby-quixml/Makefile | 35 | ||||
-rw-r--r-- | textproc/ruby-quixml/distinfo | 1 | ||||
-rw-r--r-- | textproc/ruby-quixml/pkg-descr | 15 | ||||
-rw-r--r-- | textproc/ruby-quixml/pkg-plist | 7 |
4 files changed, 58 insertions, 0 deletions
diff --git a/textproc/ruby-quixml/Makefile b/textproc/ruby-quixml/Makefile new file mode 100644 index 000000000000..f725e2699685 --- /dev/null +++ b/textproc/ruby-quixml/Makefile @@ -0,0 +1,35 @@ +# New ports collection makefile for: ruby-quixml +# Date created: 10 September 2003 +# Whom: Akinori MUSHA aka knu <knu@idaemons.org> +# +# $FreeBSD$ +# + +PORTNAME= quixml +PORTVERSION= 0.2.1 +CATEGORIES= textproc ruby +MASTER_SITES= http://rubyforge.org/download.php/89/ +PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX} +DIST_SUBDIR= ruby + +MAINTAINER= knu@FreeBSD.org +COMMENT= A Fast XML API for Ruby written in C + +LIB_DEPENDS= expat.4:${PORTSDIR}/textproc/expat2 + +USE_RUBY= yes +USE_RUBY_EXTCONF= yes + +INSTALL_TARGET= site-install + +DOCS= BUGS DOC.html CHANGELOG README TODO + +post-install: +.if !defined(NOPORTDOCS) + ${MKDIR} ${RUBY_MODDOCDIR} +.for f in ${DOCS} + ${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_MODDOCDIR}/ +.endfor +.endif + +.include <bsd.port.mk> diff --git a/textproc/ruby-quixml/distinfo b/textproc/ruby-quixml/distinfo new file mode 100644 index 000000000000..bb38411fee4f --- /dev/null +++ b/textproc/ruby-quixml/distinfo @@ -0,0 +1 @@ +MD5 (ruby/quixml-0.2.1.tar.gz) = 42eb7ec86e5e3753c9238b618d44ec75 diff --git a/textproc/ruby-quixml/pkg-descr b/textproc/ruby-quixml/pkg-descr new file mode 100644 index 000000000000..0f04992158c6 --- /dev/null +++ b/textproc/ruby-quixml/pkg-descr @@ -0,0 +1,15 @@ +QuiXML is an XML library for Ruby written in C, utilizing the expat +library for parsing XML string buffers. It uses only Ruby native data +structures to store its XML data internally, so how they are generated +is completely open. The library both parses and generates XML, +precisely or with pretty printing and automatic encoding/decoding +special characters (<, >, &, ', and "). Transmutations to/from +attribute string values and Ruby objects can occur when +reading/writing XML, allowing for a limited degree of object +marshalling. Element path addressing makes it easy to find one or +more nodes using literal strings, regular expressions or any other +object which supports Ruby case-equality to match against XML node +names and attributes. + +Author: sdodell <sean@celsoft.com> +WWW: http://quixml.rubyforge.org/ diff --git a/textproc/ruby-quixml/pkg-plist b/textproc/ruby-quixml/pkg-plist new file mode 100644 index 000000000000..85d11a91cf2c --- /dev/null +++ b/textproc/ruby-quixml/pkg-plist @@ -0,0 +1,7 @@ +%%RUBY_SITEARCHLIBDIR%%/quixml.so +%%PORTDOCS%%%%RUBY_MODDOCDIR%%/BUGS +%%PORTDOCS%%%%RUBY_MODDOCDIR%%/CHANGELOG +%%PORTDOCS%%%%RUBY_MODDOCDIR%%/DOC.html +%%PORTDOCS%%%%RUBY_MODDOCDIR%%/README +%%PORTDOCS%%%%RUBY_MODDOCDIR%%/TODO +%%PORTDOCS%%@dirrm %%RUBY_MODDOCDIR%% |