summaryrefslogtreecommitdiff
path: root/textproc
diff options
context:
space:
mode:
authormjl <mjl>2002-01-30 22:16:50 +0000
committermjl <mjl>2002-01-30 22:16:50 +0000
commitb4b818b5b3db89239ee8b5125e0fffeffb770f94 (patch)
tree8b6764cfd48f080f4b0167cb3610b28e8bc9baed /textproc
parenta95534a82f47c86c825ddda9f10e5fc7274d2d7a (diff)
downloadpkgsrc-b4b818b5b3db89239ee8b5125e0fffeffb770f94.tar.gz
Initial import of p5-XML-SAX-0.07
XML::SAX is a SAX parser access API for Perl. It includes classes and APIs required for implementing SAX drivers, along with a factory class for returning any SAX parser installed on the user's system. Older version (0.6) provided by Shell Hung in PR/15087.
Diffstat (limited to 'textproc')
-rw-r--r--textproc/p5-XML-SAX/DESCR3
-rw-r--r--textproc/p5-XML-SAX/Makefile21
-rw-r--r--textproc/p5-XML-SAX/PLIST1
-rw-r--r--textproc/p5-XML-SAX/distinfo5
-rw-r--r--textproc/p5-XML-SAX/patches/patch-aa22
5 files changed, 52 insertions, 0 deletions
diff --git a/textproc/p5-XML-SAX/DESCR b/textproc/p5-XML-SAX/DESCR
new file mode 100644
index 00000000000..91eab3aad0b
--- /dev/null
+++ b/textproc/p5-XML-SAX/DESCR
@@ -0,0 +1,3 @@
+XML::SAX is a SAX parser access API for Perl. It includes classes
+and APIs required for implementing SAX drivers, along with a factory
+class for returning any SAX parser installed on the user's system.
diff --git a/textproc/p5-XML-SAX/Makefile b/textproc/p5-XML-SAX/Makefile
new file mode 100644
index 00000000000..2732de8f547
--- /dev/null
+++ b/textproc/p5-XML-SAX/Makefile
@@ -0,0 +1,21 @@
+# $NetBSD: Makefile,v 1.1.1.1 2002/01/30 22:16:50 mjl Exp $
+
+DISTNAME= XML-SAX-0.07
+PKGNAME= p5-${DISTNAME}
+#SVR4_PKGNAME=
+CATEGORIES= textproc perl5
+MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=XML/}
+
+MAINTAINER= packages@netbsd.org
+COMMENT= Perl interface to the SAX2 XML Parser
+
+DEPENDS+= p5-XML-NamespaceSupport-[0-9]*:../../textproc/p5-XML-NamespaceSupport
+
+USE_BUILDLINK_ONLY= YES
+PERL5_PACKLIST= ${PERL5_SITEARCH}/auto/XML/SAX/.packlist
+
+do-configure:
+ @cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${PERL5} Makefile.PL
+
+.include "../../lang/perl5/buildlink.mk"
+.include "../../mk/bsd.pkg.mk"
diff --git a/textproc/p5-XML-SAX/PLIST b/textproc/p5-XML-SAX/PLIST
new file mode 100644
index 00000000000..8f94c6096ab
--- /dev/null
+++ b/textproc/p5-XML-SAX/PLIST
@@ -0,0 +1 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2002/01/30 22:16:50 mjl Exp $
diff --git a/textproc/p5-XML-SAX/distinfo b/textproc/p5-XML-SAX/distinfo
new file mode 100644
index 00000000000..50f319c52fc
--- /dev/null
+++ b/textproc/p5-XML-SAX/distinfo
@@ -0,0 +1,5 @@
+$NetBSD: distinfo,v 1.1.1.1 2002/01/30 22:16:50 mjl Exp $
+
+SHA1 (XML-SAX-0.07.tar.gz) = f08e0b3a690c1e317f26586d0f7b4709808df016
+Size (XML-SAX-0.07.tar.gz) = 51063 bytes
+SHA1 (patch-aa) = 2ccd087404b49884c2691a4f24a7a43001e9e3fd
diff --git a/textproc/p5-XML-SAX/patches/patch-aa b/textproc/p5-XML-SAX/patches/patch-aa
new file mode 100644
index 00000000000..620337dc15c
--- /dev/null
+++ b/textproc/p5-XML-SAX/patches/patch-aa
@@ -0,0 +1,22 @@
+$NetBSD: patch-aa,v 1.1.1.1 2002/01/30 22:16:50 mjl Exp $
+
+--- Makefile.PL.orig Tue Jan 29 07:05:23 2002
++++ Makefile.PL
+@@ -12,7 +12,7 @@
+ sub MY::install {
+ package MY;
+ my $script = shift->SUPER::install(@_);
+- if (ExtUtils::MakeMaker::prompt("Do you want XML::SAX to alter ParserDetails.ini?", "Y") =~ /^y/i) {
++# if (ExtUtils::MakeMaker::prompt("Do you want XML::SAX to alter ParserDetails.ini?", "Y") =~ /^y/i) {
+ $script =~ s/install :: (.*)$/install :: $1 install_sax_pureperl/m;
+ $script .= <<"INSTALL";
+
+@@ -21,7 +21,7 @@
+
+ INSTALL
+
+- }
++# }
+
+ return $script;
+ }