aboutsummaryrefslogtreecommitdiffstats
path: root/textproc/p5-HTML-Tidy
diff options
context:
space:
mode:
authorwen <wen@FreeBSD.org>2010-05-19 15:04:27 +0800
committerwen <wen@FreeBSD.org>2010-05-19 15:04:27 +0800
commiteb115a24375e6053722e293030889cfdd26aa20c (patch)
tree3b84e7fa5a9bb3d5a52dc46e4e5ef9206a47de16 /textproc/p5-HTML-Tidy
parent4ddfc492fa41ae94e5cde57a6fe70bc69be29eb5 (diff)
downloadfreebsd-ports-graphics-eb115a24375e6053722e293030889cfdd26aa20c.tar.gz
freebsd-ports-graphics-eb115a24375e6053722e293030889cfdd26aa20c.tar.zst
freebsd-ports-graphics-eb115a24375e6053722e293030889cfdd26aa20c.zip
- Update to 1.52
- Update dependence PR: ports/146586 Submitted by: Sunpoet Po-Chuan Hsieh <sunpoet@sunpoet.net>
Diffstat (limited to 'textproc/p5-HTML-Tidy')
-rw-r--r--textproc/p5-HTML-Tidy/Makefile7
-rw-r--r--textproc/p5-HTML-Tidy/distinfo6
-rw-r--r--textproc/p5-HTML-Tidy/files/patch-Tidy.xs20
3 files changed, 6 insertions, 27 deletions
diff --git a/textproc/p5-HTML-Tidy/Makefile b/textproc/p5-HTML-Tidy/Makefile
index 743e23e94f2..ad1a21b50ad 100644
--- a/textproc/p5-HTML-Tidy/Makefile
+++ b/textproc/p5-HTML-Tidy/Makefile
@@ -6,8 +6,7 @@
#
PORTNAME= HTML-Tidy
-PORTVERSION= 1.08
-PORTREVISION= 1
+PORTVERSION= 1.52
CATEGORIES= textproc www perl5
MASTER_SITES= CPAN
PKGNAMEPREFIX= p5-
@@ -15,8 +14,8 @@ PKGNAMEPREFIX= p5-
MAINTAINER= perl@FreeBSD.org
COMMENT= Web validation in a Perl object using tidy
-BUILD_DEPENDS= ${SITE_PERL}/LWP/UserAgent.pm:${PORTSDIR}/www/p5-libwww
-LIB_DEPENDS= tidy:${PORTSDIR}/www/tidy-lib
+BUILD_DEPENDS= ${SITE_PERL}/LWP/Simple.pm:${PORTSDIR}/www/p5-libwww
+LIB_DEPENDS= tidyp:${PORTSDIR}/textproc/tidyp
RUN_DEPENDS= ${BUILD_DEPENDS}
PERL_CONFIGURE= 5.8.0+
diff --git a/textproc/p5-HTML-Tidy/distinfo b/textproc/p5-HTML-Tidy/distinfo
index 669c107abf4..9ca115e8ee9 100644
--- a/textproc/p5-HTML-Tidy/distinfo
+++ b/textproc/p5-HTML-Tidy/distinfo
@@ -1,3 +1,3 @@
-MD5 (HTML-Tidy-1.08.tar.gz) = adf83cfa6dcfb9de1283f771ad9c2e0d
-SHA256 (HTML-Tidy-1.08.tar.gz) = 7537b06d92055c63e9e0f6a28b5267cbeccf7669abbf89d4069c361fe5a4f7a8
-SIZE (HTML-Tidy-1.08.tar.gz) = 26399
+MD5 (HTML-Tidy-1.52.tar.gz) = c71d538120fbba6bd8e3463eec9e3782
+SHA256 (HTML-Tidy-1.52.tar.gz) = 323bd5304189f90a0c1c18a9210180576edc597843c21e994a7632043eb3642a
+SIZE (HTML-Tidy-1.52.tar.gz) = 25436
diff --git a/textproc/p5-HTML-Tidy/files/patch-Tidy.xs b/textproc/p5-HTML-Tidy/files/patch-Tidy.xs
deleted file mode 100644
index f4b804c5f85..00000000000
--- a/textproc/p5-HTML-Tidy/files/patch-Tidy.xs
+++ /dev/null
@@ -1,20 +0,0 @@
-$Id$
---- Tidy.xs.orig 2007-09-24 11:36:19.000000000 +0200
-+++ Tidy.xs 2007-09-24 11:37:42.000000000 +0200
-@@ -55,6 +55,7 @@ _tidy_messages(input, configfile, tidy_o
- const char* newline;
- int rc = 0;
- PPCODE:
-+ tidyBufInit(&errbuf);
- rc = ( tidyOptSetValue( tdoc, TidyCharEncoding, "utf8" ) ? rc : -1 );
-
- if ( (rc >= 0 ) && configfile && *configfile ) {
-@@ -117,6 +118,8 @@ _tidy_clean(input, configfile, tidy_opti
- const char* newline;
- int rc = 0;
- PPCODE:
-+ tidyBufInit(&output);
-+ tidyBufInit(&errbuf);
- /* Set our default first. */
- /* Don't word-wrap */
- rc = ( tidyOptSetInt( tdoc, TidyWrapLen, 0 ) ? rc : -1 );