diff options
author | wiz <wiz> | 2001-04-27 17:49:43 +0000 |
---|---|---|
committer | wiz <wiz> | 2001-04-27 17:49:43 +0000 |
commit | 0bf5dae2669b62078f5226af49a785d77632e4ad (patch) | |
tree | 1d5e9af5ce3030f4fca75bca27296cddbad5331a /textproc/p5-XML-Parser/Makefile | |
parent | 87f248adfccbe057984a37dfcc7e992f8261670b (diff) | |
download | pkgsrc-0bf5dae2669b62078f5226af49a785d77632e4ad.tar.gz |
Update to 2.30, supplied by Nathan Ahlstrom in pkg/12629.
Changes:
- Get rid of ContentStash global. Not that big a deal looking it up
everytime and gets rid of a potential threading problem.
- Switch to shareable library version of expat from sourceforge
(i.e. no longer include expat source and require that libexpat
be installed)
- Bob Tribit <btribit@traffic.com> demonstrated a fix for problems
in compiling under perl 5.6.0 with 5.005 threading.
- Matt Sergeant <matt@sergeant.org> discovered a typo ('IO::Handler'
instead of 'IO::Handle') in Expat.pm that caused IO::Handle objects
to be treated as strings instead of handles.
- Matt Sergeant also provided a patch to allow tied handles to work
properly in calls to parse.
- Eric Bohlman <ebohlman@netcom.com> reported a failure when
incremental parsing and external parsing were used together.
Need to give explicit package when calling Do_External_Parse
from externalEntityRef otherwise fails when called through ExpatNB.
Diffstat (limited to 'textproc/p5-XML-Parser/Makefile')
-rw-r--r-- | textproc/p5-XML-Parser/Makefile | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/textproc/p5-XML-Parser/Makefile b/textproc/p5-XML-Parser/Makefile index 93f5881ab64..4bf9ddd39b4 100644 --- a/textproc/p5-XML-Parser/Makefile +++ b/textproc/p5-XML-Parser/Makefile @@ -1,8 +1,9 @@ -# $NetBSD: Makefile,v 1.4 2001/02/28 13:20:46 wiz Exp $ +# $NetBSD: Makefile,v 1.5 2001/04/27 17:49:43 wiz Exp $ # -DISTNAME= XML-Parser-2.29 -PKGNAME= p5-${DISTNAME} +DISTNAME= XML-Parser.2.30 +PKGNAME= p5-${DISTNAME:S/./-/1} +WRKSRC= ${WRKDIR}/${DISTNAME:S/./-/1} CATEGORIES= textproc perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=XML/} @@ -10,6 +11,8 @@ MAINTAINER= bad@netbsd.org HOMEPAGE= http://wwwx.netheaven.com/~coopercc/xmlparser/intro.html COMMENT= Perl extension interface to James Clark's XML parser, expat +DEPENDS+= expat-*:../../textproc/expat + USE_PERL5= # defined PERL5_PACKLIST= ${PERL5_SITEARCH}/auto/XML/Parser/.packlist |