From owner-freebsd-perl@FreeBSD.ORG Mon Sep 15 01:33:29 2008 Return-Path: Delivered-To: perl@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1CEEE106567D; Mon, 15 Sep 2008 01:33:29 +0000 (UTC) (envelope-from geraud@gcu.info) Received: from services.gcu-squad.org (zone0.gcu-squad.org [212.85.147.21]) by mx1.freebsd.org (Postfix) with ESMTP id CEE0B8FC15; Mon, 15 Sep 2008 01:33:27 +0000 (UTC) (envelope-from geraud@gcu.info) Received: from [202.22.227.193] (helo=[192.168.0.70]) by services.gcu-squad.org (GCU Mailer Daemon) with esmtpsa id 1Kf3eQ-0000hi-PX (TLSv1:RC4-MD5:128) (envelope-from ) ; Mon, 15 Sep 2008 04:17:19 +0200 From: Geraud CONTINSOUZAS To: bug-followup@FreeBSD.org, regisr@pobox.com Content-Type: multipart/mixed; boundary="=-psmv2GjD7KdXAJFHJT5Z" Date: Mon, 15 Sep 2008 12:13:43 +1100 Message-Id: <1221441223.1178.5.camel@dash.nealab.net> Mime-Version: 1.0 X-Mailer: Evolution 2.10.1 FreeBSD GNOME Team Port Cc: perl@FreeBSD.org Subject: Re: ports/127388: www/p5-libwww - p5-www : links missing X-BeenThere: freebsd-perl@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: geraud@gcu.info List-Id: maintainer of a number of perl-related ports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Sep 2008 01:33:33 -0000 --=-psmv2GjD7KdXAJFHJT5Z Content-Type: text/plain Content-Transfer-Encoding: 7bit The change came from upstream. However the authors allow to revert the change via an optional argument at configure-time. The attached patch uses this functionality. PORTREVISION bump is required as it would install new files in bin and new manpages. Regards, Geraud --=-psmv2GjD7KdXAJFHJT5Z Content-Disposition: attachment; filename=patch-p5-libwww.txt Content-Type: text/x-patch; name=patch-p5-libwww.txt; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit --- Makefile.orig 2008-09-10 23:17:34.000000000 +1100 +++ Makefile 2008-09-15 12:06:32.000000000 +1100 @@ -7,6 +7,7 @@ PORTNAME= libwww PORTVERSION= 5.814 +PORTREVISION= 1 CATEGORIES= www perl5 devel MASTER_SITES= CPAN MASTER_SITE_SUBDIR= LWP @@ -25,8 +26,9 @@ RUN_DEPENDS= ${BUILD_DEPENDS} PERL_CONFIGURE= yes +CONFIGURE_ARGS+= --aliases -MAN1= lwp-download.1 lwp-mirror.1 lwp-request.1 lwp-rget.1 +MAN1= GET.1 HEAD.1 POST.1 lwp-download.1 lwp-mirror.1 lwp-request.1 lwp-rget.1 MAN3= Bundle::LWP.3 File::Listing.3 HTML::Form.3 HTTP::Cookies.3 \ HTTP::Cookies::Microsoft.3 HTTP::Cookies::Netscape.3 \ --- pkg-plist.orig 2008-09-10 23:17:34.000000000 +1100 +++ pkg-plist 2008-09-15 12:06:53.000000000 +1100 @@ -1,3 +1,6 @@ +bin/GET +bin/HEAD +bin/POST bin/lwp-download bin/lwp-mirror bin/lwp-request --=-psmv2GjD7KdXAJFHJT5Z--