summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorobache <obache>2008-10-21 13:12:27 +0000
committerobache <obache>2008-10-21 13:12:27 +0000
commitd467c8d69f1462b7783a46ff86e329d46c6601eb (patch)
tree86aaec50813cd05c7abdec97b0677defbde9375f
parent4167a1b8fb95b9fed86167bb7de48545f0b21fe5 (diff)
downloadpkgsrc-d467c8d69f1462b7783a46ff86e329d46c6601eb.tar.gz
Update p5-libwww to 5.819.
Pkgsrc changes: Fixes "libwww-aliases" option, reported by PR 39776. The knob for command aliases was changed when update to 5.815(?), it is disabled by default, and libwww-alias option is no effect since the update. So remove it from PKG_SUGGESTED_OPTIONS. Changes: 2008-10-20 Release 5.819 Gisle Aas (2): Don't override $Net::HTTPS::SSL_SOCKET_CLASS if it's already set. Wrong content handlers would sometimes be skipped [RT#40187] 2008-10-16 Release 5.818 Gisle Aas (8): Use deflate compression instead of gzip for the test Simplify; Get rid of the $USE_STORABLE_DCLONE configuration Add dump method to HTTP::Message. Use $res->dump instead of rolling our own. Layout change; move headers() methods to a more logical place. Add support for x-bzip2 encoding; fix bzip2 decoding. Add send_header method to HTTP::Daemon Make the lwp-request User-Agent string include the LWP version. Slaven Rezic (1): clone implemented in terms of Storable::dclone [RT#39611]
-rw-r--r--www/p5-libwww/Makefile12
-rw-r--r--www/p5-libwww/distinfo8
-rw-r--r--www/p5-libwww/options.mk10
3 files changed, 9 insertions, 21 deletions
diff --git a/www/p5-libwww/Makefile b/www/p5-libwww/Makefile
index c942990cd43..656676e15e5 100644
--- a/www/p5-libwww/Makefile
+++ b/www/p5-libwww/Makefile
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.61 2008/10/19 19:19:17 he Exp $
+# $NetBSD: Makefile,v 1.62 2008/10/21 13:12:27 obache Exp $
-DISTNAME= libwww-perl-5.817
+DISTNAME= libwww-perl-5.819
PKGNAME= p5-${DISTNAME:S/-perl-/-/}
-PKGREVISION= 1
SVR4_PKGNAME= p5lww
CATEGORIES= www perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=WWW/}
@@ -14,7 +13,7 @@ COMMENT= Perl5 library for WWW access
PKG_INSTALLATION_TYPES= overwrite pkgviews
PKG_DESTDIR_SUPPORT= user-destdir
-DEPENDS+= p5-Compress-Zlib-[0-9]*:../../devel/p5-Compress-Zlib
+DEPENDS+= p5-Compress-Zlib>=1.10:../../devel/p5-Compress-Zlib
DEPENDS+= p5-Crypt-SSLeay>=0:../../security/p5-Crypt-SSLeay
DEPENDS+= p5-HTML-Parser>=3.33:../../www/p5-HTML-Parser
DEPENDS+= p5-IO-Socket-SSL-[0-9]*:../../security/p5-IO-Socket-SSL
@@ -31,10 +30,5 @@ MAKE_ENV+= INSTALL_ALIASES=${ALIASES} PERL_MM_USE_DEFAULT=1
.include "../../mk/bsd.prefs.mk"
.include "options.mk"
-.if ${ALIASES} == "no"
-post-install:
- ${RM} -f ${PREFIX}/bin/HEAD
-.endif
-
.include "../../lang/perl5/module.mk"
.include "../../mk/bsd.pkg.mk"
diff --git a/www/p5-libwww/distinfo b/www/p5-libwww/distinfo
index 76c68cf1b3a..746add22b11 100644
--- a/www/p5-libwww/distinfo
+++ b/www/p5-libwww/distinfo
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.22 2008/10/14 14:51:22 wiz Exp $
+$NetBSD: distinfo,v 1.23 2008/10/21 13:12:27 obache Exp $
-SHA1 (libwww-perl-5.817.tar.gz) = 62ee90f518c91d952fc752144004f57b05a9313f
-RMD160 (libwww-perl-5.817.tar.gz) = a6019c583faeb72ebfebc93530881d2241b823cf
-Size (libwww-perl-5.817.tar.gz) = 251067 bytes
+SHA1 (libwww-perl-5.819.tar.gz) = 85aaa096a3ba878c360ca13922324dd8c4e06cdc
+RMD160 (libwww-perl-5.819.tar.gz) = 0de88c1e16812d417504f1e6d090b8178ca916ee
+Size (libwww-perl-5.819.tar.gz) = 252647 bytes
diff --git a/www/p5-libwww/options.mk b/www/p5-libwww/options.mk
index 7619f6feb70..1247f6b31eb 100644
--- a/www/p5-libwww/options.mk
+++ b/www/p5-libwww/options.mk
@@ -1,20 +1,14 @@
-# $NetBSD: options.mk,v 1.1 2007/11/24 16:18:16 adrianp Exp $
+# $NetBSD: options.mk,v 1.2 2008/10/21 13:12:27 obache Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.p5-libwww
PKG_SUPPORTED_OPTIONS= libwww-aliases
-.if ${OPSYS} != "Darwin"
-PKG_SUGGESTED_OPTIONS= libwww-aliases
-.endif
-
.include "../../mk/bsd.options.mk"
###
### Do we install aliases ?
###
.if !empty(PKG_OPTIONS:Mlibwww-aliases)
-ALIASES= yes
-.else
-ALIASES= no
+MAKE_PARAMS+= --aliases
.endif