diff options
author | pgollucci <pgollucci@FreeBSD.org> | 2008-07-29 03:00:24 +0800 |
---|---|---|
committer | pgollucci <pgollucci@FreeBSD.org> | 2008-07-29 03:00:24 +0800 |
commit | 164057a4b4c5962a2ef9dd9ae74627ed4b77bece (patch) | |
tree | c90e40995a80e37f63763f05a09252f42ff69d6f /textproc | |
parent | eeb50fe9af30108b578daa78ea1479dce4c7a6ea (diff) | |
download | freebsd-ports-graphics-164057a4b4c5962a2ef9dd9ae74627ed4b77bece.tar.gz freebsd-ports-graphics-164057a4b4c5962a2ef9dd9ae74627ed4b77bece.tar.zst freebsd-ports-graphics-164057a4b4c5962a2ef9dd9ae74627ed4b77bece.zip |
HTML::RewriteAttributes is designed for simple yet powerful HTML
attribute rewriting. You simply specify a callback to run for each
attribute and we do the rest for you. This module is designed to
be subclassable to make handling special cases eaiser.
WWW: http://search.cpan.org/dist/HTML-RewriteAttributes/
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/Makefile | 1 | ||||
-rw-r--r-- | textproc/p5-HTML-RewriteAttributes/Makefile | 32 | ||||
-rw-r--r-- | textproc/p5-HTML-RewriteAttributes/distinfo | 3 | ||||
-rw-r--r-- | textproc/p5-HTML-RewriteAttributes/pkg-descr | 6 |
4 files changed, 42 insertions, 0 deletions
diff --git a/textproc/Makefile b/textproc/Makefile index b57adced82a..95ac2c5927d 100644 --- a/textproc/Makefile +++ b/textproc/Makefile @@ -394,6 +394,7 @@ SUBDIR += p5-HTML-Format SUBDIR += p5-HTML-FormatText-WithLinks SUBDIR += p5-HTML-Fraction + SUBDIR += p5-HTML-RewriteAttributes SUBDIR += p5-HTML-SBC SUBDIR += p5-HTML-TagFilter SUBDIR += p5-HTML-Tidy diff --git a/textproc/p5-HTML-RewriteAttributes/Makefile b/textproc/p5-HTML-RewriteAttributes/Makefile new file mode 100644 index 00000000000..23bebc74455 --- /dev/null +++ b/textproc/p5-HTML-RewriteAttributes/Makefile @@ -0,0 +1,32 @@ +# New ports collection makefile for: p5-HTML-Attributes +# Date created: 2008/08/24 +# Whom: Philip M. Gollucci <pgollucci@p6m7g8.com> +# +# $FreeBSD$ + +PORTNAME= HTML-RewriteAttributes +PORTVERSION= 0.03 +CATEGORIES= textproc perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= pgollucci@FreeBSD.org +COMMENT= Simple yet powerful HTML attribute rewriting + +MAN3= HTML::RewriteAttributes::Resources.3 \ + HTML::RewriteAttributes::Links.3 \ + HTML::RewriteAttributes.3 + +PERL_CONFIGURE= yes + +PLIST_FILES= %%SITE_PERL%%/HTML/RewriteAttributes.pm \ + %%SITE_PERL%%/HTML/RewriteAttributes/Resources.pm \ + %%SITE_PERL%%/HTML/RewriteAttributes/Links.pm \ + %%SITE_PERL%%/%%PERL_ARCH%%/auto/HTML/RewriteAttributes/.packlist + +PLIST_DIRS= %%SITE_PERL%%/HTML/RewriteAttributes \ + %%SITE_PERL%%/HTML \ + %%SITE_PERL%%/%%PERL_ARCH%%/auto/HTML/RewriteAttributes \ + %%SITE_PERL%%/%%PERL_ARCH%%/auto/HTML + +.include <bsd.port.mk> diff --git a/textproc/p5-HTML-RewriteAttributes/distinfo b/textproc/p5-HTML-RewriteAttributes/distinfo new file mode 100644 index 00000000000..3b19b159dbb --- /dev/null +++ b/textproc/p5-HTML-RewriteAttributes/distinfo @@ -0,0 +1,3 @@ +MD5 (HTML-RewriteAttributes-0.03.tar.gz) = 7580f6d63b171b318547d5ef4138ce34 +SHA256 (HTML-RewriteAttributes-0.03.tar.gz) = 3d2fab5d2143cd489363731750a84da2992a17135cc17c12817bb18ae68745db +SIZE (HTML-RewriteAttributes-0.03.tar.gz) = 18148 diff --git a/textproc/p5-HTML-RewriteAttributes/pkg-descr b/textproc/p5-HTML-RewriteAttributes/pkg-descr new file mode 100644 index 00000000000..6d57f107392 --- /dev/null +++ b/textproc/p5-HTML-RewriteAttributes/pkg-descr @@ -0,0 +1,6 @@ +HTML::RewriteAttributes is designed for simple yet powerful HTML +attribute rewriting. You simply specify a callback to run for each +attribute and we do the rest for you. This module is designed to +be subclassable to make handling special cases eaiser. + +WWW: http://search.cpan.org/dist/HTML-RewriteAttributes/ |