From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Mar 8 03:17:31 2010 Return-Path: Delivered-To: freebsd-ports-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5AF44106566C; Mon, 8 Mar 2010 03:17:31 +0000 (UTC) (envelope-from yasu@utahime.org) Received: from utahime.as.wakwak.ne.jp (utahime.as.wakwak.ne.jp [61.205.238.40]) by mx1.freebsd.org (Postfix) with ESMTP id 237E68FC0A; Mon, 8 Mar 2010 03:17:30 +0000 (UTC) Received: from eastasia.home.utahime.org (eastasia.home.utahime.org [192.168.174.1]) by utahime.as.wakwak.ne.jp (Postfix) with ESMTP id 6839545056; Mon, 8 Mar 2010 12:17:29 +0900 (JST) Received: from eastasia.home.utahime.org (localhost [127.0.0.1]) by localhost-backdoor.home.utahime.org (Postfix) with ESMTP id 3C3717E825; Mon, 8 Mar 2010 12:17:29 +0900 (JST) Received: from localhost (eastasia.home.utahime.org [192.168.174.1]) by eastasia.home.utahime.org (Postfix) with ESMTP id EDD8A7E824; Mon, 8 Mar 2010 12:17:28 +0900 (JST) Date: Mon, 08 Mar 2010 12:16:47 +0900 (JST) Message-Id: <20100308.121647.144948409.yasu@utahime.org> To: cyberbotx@cyberbotx.com From: Yasuhiro KIMURA In-Reply-To: <201003060810.o268A1wV089290@freefall.freebsd.org> References: <20100306080000.B741D7E825@eastasia.home.utahime.org> <201003060810.o268A1wV089290@freefall.freebsd.org> X-Mailer: Mew version 7.0.50 on Emacs 23.1 / Mule 6.0 (HANACHIRUSATO) Mime-Version: 1.0 Content-Type: Multipart/Mixed; boundary="--Next_Part(Mon_Mar__8_12_16_47_2010_254)--" Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV using ClamSMTP Cc: freebsd-ports-bugs@FreeBSD.org, FreeBSD-gnats-submit@FreeBSD.org Subject: Re: ports/144504: [PATCH] www/validator: fix runtime dependency X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Mar 2010 03:17:31 -0000 ----Next_Part(Mon_Mar__8_12_16_47_2010_254)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Thank you for your feedback. Surely I overlooked HTML_TIDY option. So I updated the original patch. Would you please review again? Best Ragards. ----Next_Part(Mon_Mar__8_12_16_47_2010_254)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename=patch-validator Index: Makefile =================================================================== RCS file: /usr0/freebsd/cvsroot/ports/www/validator/Makefile,v retrieving revision 1.21 diff -u -r1.21 Makefile --- Makefile 4 Mar 2010 13:55:22 -0000 1.21 +++ Makefile 8 Mar 2010 01:00:15 -0000 @@ -7,6 +7,7 @@ PORTNAME= validator PORTVERSION= 0.8.6 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= http://validator.w3.org/dist/ \ http://www.cyberbotx.com/w3c-validator/ @@ -23,9 +24,9 @@ ${SITE_PERL}/HTML/Encoding.pm:${PORTSDIR}/www/p5-HTML-Encoding \ ${SITE_PERL}/HTML/Template.pm:${PORTSDIR}/www/p5-HTML-Template \ ${SITE_PERL}/Bundle/LWP.pm:${PORTSDIR}/www/p5-libwww \ + ${SITE_PERL}/JSON.pm:${PORTSDIR}/converters/p5-JSON \ ${SITE_PERL}/Net/IP.pm:${PORTSDIR}/net-mgmt/p5-Net-IP \ ${SITE_PERL}/${PERL_ARCH}/SGML/Parser/OpenSP.pm:${PORTSDIR}/textproc/p5-SGML-Parser-OpenSP \ - ${SITE_PERL}/${PERL_ARCH}/String/Approx.pm:${PORTSDIR}/devel/p5-String-Approx \ ${SITE_PERL}/URI.pm:${PORTSDIR}/net/p5-URI \ ${SITE_PERL}/${PERL_ARCH}/XML/LibXML.pm:${PORTSDIR}/textproc/p5-XML-LibXML Index: files/validator.conf.sample.in =================================================================== RCS file: /usr0/freebsd/cvsroot/ports/www/validator/files/validator.conf.sample.in,v retrieving revision 1.2 diff -u -r1.2 validator.conf.sample.in --- files/validator.conf.sample.in 29 Jul 2007 13:13:58 -0000 1.2 +++ files/validator.conf.sample.in 6 Mar 2010 07:36:16 -0000 @@ -76,10 +76,6 @@ # The "Home Page" for the service. Make sure this ends with a slash. Home Page = http://validator.w3.org/ -# -# Base URI for the Element Reference. -Element Ref URI = http://www.htmlhelp.com/reference/html40/ - # Localization # only English available for now Languages = en @@ -91,12 +87,6 @@ # # -# Maps element names to URLs (cf. "Element Ref URI" above). - - Include %%PREFIX%%/www/validator/htdocs/config/eref.cfg - - -# # Main document Type Registry; contains all information on the types # of documents we support and how they are processed. ----Next_Part(Mon_Mar__8_12_16_47_2010_254)----