1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-24 04:33:24 +00:00

A collection of modules that represent, create, and

extract information from HTML syntax trees.

PR:		15862
Submitted by:	Dmitry Sivachenko <dima@Chg.RU>
This commit is contained in:
Ade Lovett 2000-01-29 03:26:27 +00:00
parent 206c81d344
commit e6f89f1bac
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=25196
6 changed files with 59 additions and 0 deletions

View File

@ -91,6 +91,7 @@
SUBDIR += p5-HTML-Parser
SUBDIR += p5-HTML-QuickCheck
SUBDIR += p5-HTML-Stream
SUBDIR += p5-HTML-Tree
SUBDIR += p5-HTTPD-Tools
SUBDIR += p5-ParallelUA
SUBDIR += p5-WWW-Search

28
www/p5-HTML-Tree/Makefile Normal file
View File

@ -0,0 +1,28 @@
# New ports collection makefile for: p5-HTML-Tree
# Version required: 0.62
# Date created: 3 January 2000
# Whom: Dmitry Sivachenko <dima@Chg.RU>
#
# $FreeBSD$
#
DISTNAME= HTML-Tree-0.62
PKGNAME= p5-HTML-Tree-0.62
CATEGORIES= www perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
MASTER_SITE_SUBDIR= HTML
MAINTAINER= dima@Chg.RU
BUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/HTML/HeadParser.pm:${PORTSDIR}/www/p5-HTML-Parser
USE_PERL5= YES
MAN3PREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION}
MAN3= HTML::Parse.3 HTML::TreeBuilder.3 HTML::AsSubs.3 HTML::Element.3
do-configure:
@ cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${PERL5} Makefile.PL
.include <bsd.port.mk>

View File

@ -0,0 +1 @@
MD5 (HTML-Tree-0.62.tar.gz) = 4bf6a0b2545ffe43b150a6c0d23faf78

View File

@ -0,0 +1 @@
A collection of modules to manupulate HTML syntax trees

View File

@ -0,0 +1,21 @@
This is a collection of modules that represent, create, and extract
information from HTML syntax trees.
The modules present in this collection are:
HTML::Element - represents the nodes of the HTML syntax trees. The
elements have other elements and text segments as children.
The HTML::Element class have methods to methods to build,
alter, and traverse the structure of the tree.
HTML::TreeBuilder - uses HTML::Parser to read HTML document text and
build from it a syntax tree made of HTML::Element nodes.
HTML::Parse - deprecated. Now just a wrapper around
HTML::TreeBuilder
HTML::AsSubs - Easy way to build an HTML syntax tree by nesting
functions.
--Dima
dima@Chg.RU

View File

@ -0,0 +1,7 @@
lib/perl5/site_perl/%%PERL_VER%%/HTML/AsSubs.pm
lib/perl5/site_perl/%%PERL_VER%%/HTML/Element.pm
lib/perl5/site_perl/%%PERL_VER%%/HTML/Parse.pm
lib/perl5/site_perl/%%PERL_VER%%/HTML/TreeBuilder.pm
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/HTML-Tree/.packlist
@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/HTML-Tree
@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/HTML 2>/dev/null || true