diff options
author | John-Mark Gurney <jmg@FreeBSD.org> | 1997-03-31 11:40:00 +0000 |
---|---|---|
committer | John-Mark Gurney <jmg@FreeBSD.org> | 1997-03-31 11:40:00 +0000 |
commit | 00cb90f018010d45f1481dc4ac14302059c87c62 (patch) | |
tree | ed2ceb0e53c507247254e67792f349fec4509b86 /www | |
parent | 7ea75d1bac6a553df64366616419d0ec70eae3c6 (diff) | |
download | freebsd-ports-00cb90f018010d45f1481dc4ac14302059c87c62.zip |
A library that makes parsing web forms easy.
This is something that I wrote and is still under developement, but it
does work.
Diffstat (limited to 'www')
-rw-r--r-- | www/cgiparse/Makefile | 15 | ||||
-rw-r--r-- | www/cgiparse/distinfo | 1 | ||||
-rw-r--r-- | www/cgiparse/pkg-comment | 1 | ||||
-rw-r--r-- | www/cgiparse/pkg-descr | 5 | ||||
-rw-r--r-- | www/cgiparse/pkg-plist | 6 |
5 files changed, 28 insertions, 0 deletions
diff --git a/www/cgiparse/Makefile b/www/cgiparse/Makefile new file mode 100644 index 000000000000..4ef5ef5fd7ad --- /dev/null +++ b/www/cgiparse/Makefile @@ -0,0 +1,15 @@ +# New ports collection makefile for: cgiparse +# Version required: 0.8a +# Date created: 30 March 1997 +# Whom: jmg +# +# $Id$ +# + +DISTNAME= cgiparse-0.8a +CATEGORIES= devel +MASTER_SITES= http://resnet.uoregon.edu/~gurney_j/ + +MAINTAINER= jmg@FreeBSD.ORG + +.include <bsd.port.mk> diff --git a/www/cgiparse/distinfo b/www/cgiparse/distinfo new file mode 100644 index 000000000000..c68f968d687b --- /dev/null +++ b/www/cgiparse/distinfo @@ -0,0 +1 @@ +MD5 (cgiparse-0.8a.tar.gz) = ac0bd61402b1174876b10a0ec0e1c450 diff --git a/www/cgiparse/pkg-comment b/www/cgiparse/pkg-comment new file mode 100644 index 000000000000..5021cf1a9b69 --- /dev/null +++ b/www/cgiparse/pkg-comment @@ -0,0 +1 @@ +C library to parse CGI Forms diff --git a/www/cgiparse/pkg-descr b/www/cgiparse/pkg-descr new file mode 100644 index 000000000000..b0d7c6b8bc44 --- /dev/null +++ b/www/cgiparse/pkg-descr @@ -0,0 +1,5 @@ +cgiparse is a C library that is used to build cgi's that can parse +web forms. It provides a few utility functions that allow your +cgi's to be easily debuged. + +To parse a cgi form it is as easy as calling cgigetvalue("name"). diff --git a/www/cgiparse/pkg-plist b/www/cgiparse/pkg-plist new file mode 100644 index 000000000000..8aeb12644fe1 --- /dev/null +++ b/www/cgiparse/pkg-plist @@ -0,0 +1,6 @@ +include/cgi.h +lib/libcgiparse.a +lib/libcgiparse.so.1.0 +man/man3/cgigetvalue.3.gz +man/man3/cgiclose.3.gz +man/man3/cginewquerystr.3.gz |