summaryrefslogtreecommitdiff
path: root/www/cgihtml/Makefile
diff options
context:
space:
mode:
authorJustin M. Seger <jseger@FreeBSD.org>1998-06-14 12:38:56 +0000
committerJustin M. Seger <jseger@FreeBSD.org>1998-06-14 12:38:56 +0000
commit884e75e94d583f6eaff8010dd1b97a8c737c4022 (patch)
treeade41f4cd8701a1ae5cabfea3e562497fab85c3a /www/cgihtml/Makefile
parent- apache-php port totally revamped (diff)
Import of a port of cgihtml:
Cgihtml is a C library that simplifies the task of parsing World Wide Web (WWW) Common Gateway Interface (CGI) input and outputting HyperText Markup Language (HTML). Tasks which would normally require many lines of C can be reduced to just a few. PR: ports/4933 Submitted by: i.vaudrey@bigfoot.com
Notes
Notes: svn path=/head/; revision=11421
Diffstat (limited to '')
-rw-r--r--www/cgihtml/Makefile30
1 files changed, 30 insertions, 0 deletions
diff --git a/www/cgihtml/Makefile b/www/cgihtml/Makefile
new file mode 100644
index 000000000000..bcb1cb70d1a8
--- /dev/null
+++ b/www/cgihtml/Makefile
@@ -0,0 +1,30 @@
+# New ports collection makefile for: cgihtml
+# Version required: 1.69
+# Date created: 3 Nov 1997
+# Whom: Ian Vaudrey <i.vaudrey@bigfoot.com>
+#
+# $Id$
+#
+
+DISTNAME= cgihtml-1.69
+CATEGORIES= devel www
+MASTER_SITES= ftp://ftp.eekim.com/users/eekim/cgihtml/
+
+MAINTAINER= i.vaudrey@bigfoot.com
+
+NO_CONFIGURE= yes
+
+post-extract:
+ @${MV} ${WRKSRC}/Makefile ${WRKSRC}/Makefile.dist
+ @${CP} ${FILESDIR}/Makefile ${WRKSRC}
+
+post-install:
+.if !defined(NOPORTDOCS)
+ @${MKDIR} ${PREFIX}/share/doc/cgihtml/html
+.for file in CHANGES CREDITS
+ ${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/share/doc/cgihtml
+.endfor
+ ${INSTALL_DATA} ${WRKSRC}/docs/*.html ${PREFIX}/share/doc/cgihtml/html
+.endif
+
+.include <bsd.port.mk>