diff options
author | jlam <jlam@pkgsrc.org> | 2001-10-01 02:33:43 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2001-10-01 02:33:43 +0000 |
commit | a59e0994ee8b3244534c24f072502db170f49145 (patch) | |
tree | 21b4df76cd8554c07b7ac33aa533d23da1460c34 /www/p5-HTML-FillInForm/Makefile | |
parent | 976394ece197a2c37ebc39d240f4a6666cb50aac (diff) | |
download | pkgsrc-a59e0994ee8b3244534c24f072502db170f49145.tar.gz |
p5-HTML-FillInForm: populates HTML Forms with CGI data
This module automatically inserts data from a previous HTML form into the
HTML input, textarea and select tags. It is a subclass of the HTML::Parser
manpage and uses it to parse the HTML and insert the values into the form
tags. One useful application is after a user submits an HTML form without
filling out a required field. HTML::FillInForm can be used to redisplay
the HTML form with all the form elements containing the submitted info.
Diffstat (limited to 'www/p5-HTML-FillInForm/Makefile')
-rw-r--r-- | www/p5-HTML-FillInForm/Makefile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/www/p5-HTML-FillInForm/Makefile b/www/p5-HTML-FillInForm/Makefile new file mode 100644 index 00000000000..f8780383757 --- /dev/null +++ b/www/p5-HTML-FillInForm/Makefile @@ -0,0 +1,19 @@ +# $NetBSD: Makefile,v 1.1.1.1 2001/10/01 02:33:43 jlam Exp $ + +DISTNAME= HTML-FillInForm-0.19 +PKGNAME= p5-${DISTNAME} +CATEGORIES= www perl5 +MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=HTML/} + +MAINTAINER= packages@netbsd.org +COMMENT= perl5 module that populates HTML Forms with CGI data + +DEPENDS+= p5-HTML-Parser>=3.08:../../www/p5-HTML-Parser + +USE_PERL5= YES +PERL5_PACKLIST= ${PERL5_SITEARCH}/auto/HTML/FillInForm/.packlist + +do-configure: + @cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${PERL5} Makefile.PL + +.include "../../mk/bsd.pkg.mk" |