286a349c8d
Changelog: URI->new($u, $scheme) does no longer fail if given a badly formatted scheme string. URI::WithBase's clone and base method was basically just broken. This also affected the URI::URL subclass. The clone() method did not copy the base, and updating the base with the base method always set it to "1". Fixes pkg/12895 by Nathan Ahlstrom <nrahlstr@winternet.com>
22 lines
603 B
Makefile
22 lines
603 B
Makefile
# $NetBSD: Makefile,v 1.10 2001/05/14 13:30:54 zuntum Exp $
|
|
#
|
|
|
|
DISTNAME= URI-1.12
|
|
PKGNAME= p5-${DISTNAME}
|
|
CATEGORIES= www net perl5
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=URI/}
|
|
|
|
MAINTAINER= packages@netbsd.org
|
|
COMMENT= Perl5 class to represent Uniform Resource Identifier (URI, RFC 2396)
|
|
|
|
BUILD_DEPENDS= p5-MIME-Base64-2.12:../../converters/p5-MIME-Base64
|
|
|
|
CONFLICTS+= p5-libwww-5.36 # URI used to be part of that package
|
|
|
|
USE_PERL5= # defined
|
|
PERL5_PACKLIST= ${PERL5_SITEARCH}/auto/URI/.packlist
|
|
|
|
do-configure:
|
|
@cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${PERL5} Makefile.PL
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|