diff options
author | jlam <jlam@pkgsrc.org> | 2000-10-15 02:50:04 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2000-10-15 02:50:04 +0000 |
commit | 6903f28a785743c13cbb1c1a69771a969f85d99f (patch) | |
tree | d53288ba4cff04bde4b2a068316d94af62c2c231 /www/p5-HTML-Template | |
parent | 8180cd4ba41a263c198c625ad05b72b26877c3e2 (diff) | |
download | pkgsrc-6903f28a785743c13cbb1c1a69771a969f85d99f.tar.gz |
p5-HTML-Template: perl5 module to create HTML templates by extending HTML
with simple tags
Diffstat (limited to 'www/p5-HTML-Template')
-rw-r--r-- | www/p5-HTML-Template/Makefile | 16 | ||||
-rw-r--r-- | www/p5-HTML-Template/files/md5 | 3 | ||||
-rw-r--r-- | www/p5-HTML-Template/pkg/COMMENT | 1 | ||||
-rw-r--r-- | www/p5-HTML-Template/pkg/DESCR | 9 | ||||
-rw-r--r-- | www/p5-HTML-Template/pkg/PLIST | 1 |
5 files changed, 30 insertions, 0 deletions
diff --git a/www/p5-HTML-Template/Makefile b/www/p5-HTML-Template/Makefile new file mode 100644 index 00000000000..f77baaa65f0 --- /dev/null +++ b/www/p5-HTML-Template/Makefile @@ -0,0 +1,16 @@ +# $NetBSD: Makefile,v 1.1.1.1 2000/10/15 02:50:04 jlam Exp $ + +DISTNAME= HTML-Template-2.0 +PKGNAME= p5-${DISTNAME} +CATEGORIES= www perl5 +MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=HTML/} + +MAINTAINER= jlam@netbsd.org + +USE_PERL5= # defined +PERL5_PACKLIST= ${PERL5_SITEARCH}/auto/HTML/Template/.packlist + +do-configure: + @cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${PERL5} Makefile.PL + +.include "../../mk/bsd.pkg.mk" diff --git a/www/p5-HTML-Template/files/md5 b/www/p5-HTML-Template/files/md5 new file mode 100644 index 00000000000..9731b63cb62 --- /dev/null +++ b/www/p5-HTML-Template/files/md5 @@ -0,0 +1,3 @@ +$NetBSD: md5,v 1.1.1.1 2000/10/15 02:50:04 jlam Exp $ + +MD5 (HTML-Template-2.0.tar.gz) = abfe26e2d7f40629cadbb62af058a227 diff --git a/www/p5-HTML-Template/pkg/COMMENT b/www/p5-HTML-Template/pkg/COMMENT new file mode 100644 index 00000000000..e0e770fbece --- /dev/null +++ b/www/p5-HTML-Template/pkg/COMMENT @@ -0,0 +1 @@ +perl5 module to create HTML templates by extending HTML with simple tags diff --git a/www/p5-HTML-Template/pkg/DESCR b/www/p5-HTML-Template/pkg/DESCR new file mode 100644 index 00000000000..b3d23d2bb68 --- /dev/null +++ b/www/p5-HTML-Template/pkg/DESCR @@ -0,0 +1,9 @@ +This module attempts make using HTML templates simple and natural. It +extends standard HTML with a few new HTML-esque tags - <TMPL_VAR>, +<TMPL_LOOP>, <TMPL_INCLUDE>, <TMPL_IF> and <TMPL_ELSE>. The file +written with HTML and these new tags is called a template. It is +usually saved separate from your script - possibly even created by +someone else! Using this module you fill in the values for the +variables, loops and branches declared in the template. This allows +you to seperate design - the HTML - from the data, which you generate +in the Perl script. diff --git a/www/p5-HTML-Template/pkg/PLIST b/www/p5-HTML-Template/pkg/PLIST new file mode 100644 index 00000000000..5253e5dee1f --- /dev/null +++ b/www/p5-HTML-Template/pkg/PLIST @@ -0,0 +1 @@ +@comment $NetBSD: PLIST,v 1.1.1.1 2000/10/15 02:50:04 jlam Exp $ |