diff options
author | rh <rh@pkgsrc.org> | 2003-07-19 08:19:14 +0000 |
---|---|---|
committer | rh <rh@pkgsrc.org> | 2003-07-19 08:19:14 +0000 |
commit | 924ac3597aaffaf9d4ae851ce1ed24c1bf58ece4 (patch) | |
tree | 47d88ac7702baf9d125822b0ea33520f12cf8a4a /textproc/expatobjc | |
parent | c9824939880d15fcd4b96ebc742f9bd0f483b4be (diff) | |
download | pkgsrc-924ac3597aaffaf9d4ae851ce1ed24c1bf58ece4.tar.gz |
Initial import of expatobjc-1.0, an Objective-C Wrapper for the Expat XML
parsing library.
Diffstat (limited to 'textproc/expatobjc')
-rw-r--r-- | textproc/expatobjc/DESCR | 20 | ||||
-rw-r--r-- | textproc/expatobjc/Makefile | 18 | ||||
-rw-r--r-- | textproc/expatobjc/PLIST | 3 | ||||
-rw-r--r-- | textproc/expatobjc/distinfo | 4 |
4 files changed, 45 insertions, 0 deletions
diff --git a/textproc/expatobjc/DESCR b/textproc/expatobjc/DESCR new file mode 100644 index 00000000000..3cdec8e4074 --- /dev/null +++ b/textproc/expatobjc/DESCR @@ -0,0 +1,20 @@ +Expatobjc is a small library that allows you to use James Clark's +Expat XML parser library more easily with Objective C. It provides an +object-oriented interface to the library which is similar to SAX2. + +To use it, make a subclass of the XMLParser object that will override +any or all of the following methods based on what parts of the XML +parser document you want to read and analyze: + +startElement - for element start tags +endElement - for element end tags +characters - for PCDATA stuff +processingInstruction - for XML processing instructions +comment - for XML comments +startCdata - for the start of a CDATA section +endCdata - for the end of a CDATA section +externalEntity - for an external entity declaration +unparsedEntityDecl - for an unparsed entity declaration +startPrefixMapping - for the start of a namespace prefix declaration +endPrefixMapping - for the end of a namespace prefix declaration +defaultHandler - for any text that is not parsed above diff --git a/textproc/expatobjc/Makefile b/textproc/expatobjc/Makefile new file mode 100644 index 00000000000..a9bae852cf3 --- /dev/null +++ b/textproc/expatobjc/Makefile @@ -0,0 +1,18 @@ +# $NetBSD: Makefile,v 1.1.1.1 2003/07/19 08:19:14 rh Exp $ +# + +DISTNAME= expatobjc-1.0 +CATEGORIES= textproc +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=expatobjc/} + +MAINTAINER= rh@netbsd.org +HOMEPAGE= http://expatobjc.sourceforge.net/ +COMMENT= Objective-C Wrapper for Expat + +USE_BUILDLINK2= yes +USE_PKGLOCALEDIR= yes +USE_GMAKE= yes +GNU_CONFIGURE= yes + +.include "../../textproc/expat/buildlink2.mk" +.include "../../mk/bsd.pkg.mk" diff --git a/textproc/expatobjc/PLIST b/textproc/expatobjc/PLIST new file mode 100644 index 00000000000..c70ecfa397d --- /dev/null +++ b/textproc/expatobjc/PLIST @@ -0,0 +1,3 @@ +@comment $NetBSD: PLIST,v 1.1.1.1 2003/07/19 08:19:14 rh Exp $ +include/XMLParser.h +lib/libexpatobjc.a diff --git a/textproc/expatobjc/distinfo b/textproc/expatobjc/distinfo new file mode 100644 index 00000000000..7be13a72b5f --- /dev/null +++ b/textproc/expatobjc/distinfo @@ -0,0 +1,4 @@ +$NetBSD: distinfo,v 1.1.1.1 2003/07/19 08:19:14 rh Exp $ + +SHA1 (expatobjc-1.0.tar.gz) = bdda063b5e0703015e73544f0f8d736cdd35efb2 +Size (expatobjc-1.0.tar.gz) = 32708 bytes |