From owner-svn-ports-head@freebsd.org Thu Nov 24 13:52:32 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DEA19C512CB; Thu, 24 Nov 2016 13:52:32 +0000 (UTC) (envelope-from nobutaka@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 95757E50; Thu, 24 Nov 2016 13:52:32 +0000 (UTC) (envelope-from nobutaka@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uAODqVEV057638; Thu, 24 Nov 2016 13:52:31 GMT (envelope-from nobutaka@FreeBSD.org) Received: (from nobutaka@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uAODqVS6057635; Thu, 24 Nov 2016 13:52:31 GMT (envelope-from nobutaka@FreeBSD.org) Message-Id: <201611241352.uAODqVS6057635@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: nobutaka set sender to nobutaka@FreeBSD.org using -f From: MANTANI Nobutaka Date: Thu, 24 Nov 2016 13:52:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r427011 - in head/www/w3m: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Nov 2016 13:52:33 -0000 Author: nobutaka Date: Thu Nov 24 13:52:31 2016 New Revision: 427011 URL: https://svnweb.freebsd.org/changeset/ports/427011 Log: Fix error of w3mhelp.cgi and w3mman2html.cgi with perl 5.24. Reported by: tom Added: head/www/w3m/files/patch-scripts_w3mhelp.cgi.in (contents, props changed) head/www/w3m/files/patch-scripts_w3mman_w3mman2html.cgi.in (contents, props changed) Modified: head/www/w3m/Makefile Modified: head/www/w3m/Makefile ============================================================================== --- head/www/w3m/Makefile Thu Nov 24 13:10:32 2016 (r427010) +++ head/www/w3m/Makefile Thu Nov 24 13:52:31 2016 (r427011) @@ -3,7 +3,7 @@ PORTNAME= w3m PORTVERSION= 0.5.3 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES+= www ipv6 MASTER_SITES= SF/w3m/w3m/w3m-${PORTVERSION} @@ -22,7 +22,6 @@ CONFIGURE_ARGS= --with-gc=${LOCALBASE} \ ac_cv_path_PERL=${PERL} CONFIGURE_ENV= DEFS="-I${LOCALBASE}/include" - DOCS= FAQ.html HISTORY MANUAL.html README \ README.dict README.func README.img README.m17n STORY.html \ keymap.default keymap.lynx menu.default menu.submenu Added: head/www/w3m/files/patch-scripts_w3mhelp.cgi.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/w3m/files/patch-scripts_w3mhelp.cgi.in Thu Nov 24 13:52:31 2016 (r427011) @@ -0,0 +1,11 @@ +--- scripts/w3mhelp.cgi.in.orig 2016-11-20 23:37:09.729134000 +0900 ++++ scripts/w3mhelp.cgi.in 2016-11-20 23:37:31.174087000 +0900 +@@ -48,7 +48,7 @@ + } + # print "tlang=$tlang\n"; + eval {require "w3mhelp-funcdesc.$tlang.pl";}; +- if (defined(%funcdesc)) { ++ if (%funcdesc) { + $lang = $tlang; + } + } Added: head/www/w3m/files/patch-scripts_w3mman_w3mman2html.cgi.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/w3m/files/patch-scripts_w3mman_w3mman2html.cgi.in Thu Nov 24 13:52:31 2016 (r427011) @@ -0,0 +1,11 @@ +--- scripts/w3mman/w3mman2html.cgi.in.orig 2016-11-20 23:34:49.225369000 +0900 ++++ scripts/w3mman/w3mman2html.cgi.in 2016-11-20 23:35:23.649914000 +0900 +@@ -220,7 +220,7 @@ + local($p); + + (! -d && -x) || return 0; +- if (! defined(%PATH)) { ++ if (! %PATH) { + for $p (split(":", $ENV{'PATH'})) { + $p =~ s@/+$@@; + $PATH{$p} = 1;