Summary: | Fix ftp/wget to work with perl 5.18 | ||||||
---|---|---|---|---|---|---|---|
Product: | Ports & Packages | Reporter: | Jeremy Chadwick <jdc> | ||||
Component: | Individual Port(s) | Assignee: | Vasil Dimov <vd> | ||||
Status: | Closed FIXED | ||||||
Severity: | Affects Only Me | ||||||
Priority: | Normal | ||||||
Version: | Latest | ||||||
Hardware: | Any | ||||||
OS: | Any | ||||||
Attachments: |
|
Description
Jeremy Chadwick
2013-09-16 17:40:01 UTC
Responsible Changed From-To: freebsd-ports-bugs->vd Over to maintainer (via the GNATS Auto Assign Tool) Fix from upstream repo: http://git.savannah.gnu.org/cgit/wget.git/commit/doc?id=7f43748544f26008d0dd337704f02a6ed3200aaf Suggested path: http://citrin.ru/tmp/ftp-wget-Makefile.patch.txt tested with current wget port and perl 5.18.1 Author: vd Date: Thu Oct 24 14:23:53 2013 New Revision: 331489 URL: http://svnweb.freebsd.org/changeset/ports/331489 Log: Fix compilation of ftp/wget when perl 5.18 is installed. Patch from upstream repo suggested by Anton Yuzhaninov <citrin@citrin.ru>. PR: ports/182159 Submitted by: Jeremy Chadwick <jdc@koitsu.org> Added: head/ftp/wget/files/patch-doc__texi2pod.pl (contents, props changed) Added: head/ftp/wget/files/patch-doc__texi2pod.pl ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/ftp/wget/files/patch-doc__texi2pod.pl Thu Oct 24 14:23:53 2013 (r331489) @@ -0,0 +1,11 @@ +--- doc/texi2pod.pl.orig 2013-10-24 16:59:55.000000000 +0300 ++++ doc/texi2pod.pl 2013-10-24 17:01:23.000000000 +0300 +@@ -291,7 +291,7 @@ + if (defined $1) { + my $thing = $1; + if ($ic =~ /\@asis/) { +- $_ = "\n=item $thing\n"; ++ $_ = "\n=item C<$thing>\n"; + } else { + # Entity escapes prevent munging by the <> processing below. + $_ = "\n=item $ic\<$thing\>\n"; _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" State Changed From-To: open->closed Upstream patch added, thanks! |