summaryrefslogtreecommitdiff
path: root/devel/cgilib
diff options
context:
space:
mode:
Diffstat (limited to 'devel/cgilib')
-rw-r--r--devel/cgilib/Makefile44
-rw-r--r--devel/cgilib/distinfo2
-rw-r--r--devel/cgilib/files/Makefile.bsd13
-rw-r--r--devel/cgilib/files/patch-cgi.c11
-rw-r--r--devel/cgilib/files/patch-cgi.h11
-rw-r--r--devel/cgilib/pkg-descr3
6 files changed, 0 insertions, 84 deletions
diff --git a/devel/cgilib/Makefile b/devel/cgilib/Makefile
deleted file mode 100644
index bbd0afdcca76..000000000000
--- a/devel/cgilib/Makefile
+++ /dev/null
@@ -1,44 +0,0 @@
-PORTNAME= cgilib
-PORTVERSION= 0.7
-PORTREVISION= 2
-CATEGORIES= devel www
-MASTER_SITES= http://www.infodrom.org/projects/cgilib/download/ \
- http://people.ee.ethz.ch/~oetiker/webtools/rrdtool/pub/libs/
-
-MAINTAINER= demon@FreeBSD.org
-COMMENT= Library of procedures for developing CGI programs in C
-WWW= https://www.infodrom.org/projects/cgilib/
-
-LICENSE= GPLv2
-
-DEPRECATED= Last upstream release in 2009, last upstream activity in 2017 and no consumers in tree
-EXPIRATION_DATE=2025-06-30
-
-USES= uidfix
-
-USE_LDCONFIG= yes
-
-MAKEFILE= ${FILESDIR}/Makefile.bsd
-
-PLIST_FILES= include/cgi.h lib/libcgi.a lib/libcgi.so lib/libcgi.so.1 \
- share/man/man3/cgiDebug.3.gz \
- share/man/man3/cgiEscape.3.gz \
- share/man/man3/cgiFree.3.gz \
- share/man/man3/cgiFreeList.3.gz \
- share/man/man3/cgiGetCookie.3.gz \
- share/man/man3/cgiGetCookies.3.gz \
- share/man/man3/cgiGetFile.3.gz \
- share/man/man3/cgiGetFiles.3.gz \
- share/man/man3/cgiGetValue.3.gz \
- share/man/man3/cgiGetVariables.3.gz \
- share/man/man3/cgiHeader.3.gz \
- share/man/man3/cgiInit.3.gz \
- share/man/man3/cgiRedirect.3.gz \
- share/man/man3/cgiSetHeader.3.gz \
- share/man/man3/cgiSetType.3.gz
-
-post-install:
- ${INSTALL_DATA} ${WRKSRC}/cgi.h ${STAGEDIR}${PREFIX}/include
- ${INSTALL_MAN} ${WRKSRC}/*.3 ${STAGEDIR}${PREFIX}/share/man/man3
-
-.include <bsd.port.mk>
diff --git a/devel/cgilib/distinfo b/devel/cgilib/distinfo
deleted file mode 100644
index 90d31ae36d74..000000000000
--- a/devel/cgilib/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (cgilib-0.7.tar.gz) = 09b7d71bd1eea10bb404cd665fd5abe69282144ce01d96f2863c85fd42d5d692
-SIZE (cgilib-0.7.tar.gz) = 268783
diff --git a/devel/cgilib/files/Makefile.bsd b/devel/cgilib/files/Makefile.bsd
deleted file mode 100644
index 4373460102e7..000000000000
--- a/devel/cgilib/files/Makefile.bsd
+++ /dev/null
@@ -1,13 +0,0 @@
-LIB= cgi
-
-MK_PROFILE= no
-SHLIB_MAJOR?= 1
-SHLIB_MINOR?= 0
-
-SRCS= cookies.c cgi.c aux.c
-
-CFLAGS+= -I.
-
-LIBDIR= ${PREFIX}/lib
-
-.include <bsd.lib.mk>
diff --git a/devel/cgilib/files/patch-cgi.c b/devel/cgilib/files/patch-cgi.c
deleted file mode 100644
index 65900f6a5e34..000000000000
--- a/devel/cgilib/files/patch-cgi.c
+++ /dev/null
@@ -1,11 +0,0 @@
---- cgi.c.orig 2010-05-19 18:38:27.000000000 +0400
-+++ cgi.c 2010-05-19 18:38:55.000000000 +0400
-@@ -641,7 +641,7 @@ s_cgi *cgiReadVariables ()
- free (result[k]->value);
- free (value);
- result[k]->value = sptr;
-- cgiDebugOutput (1, "%s: %s", result[i]->name, result[i]->value);
-+ cgiDebugOutput (1, "%s: %s", result[k]->name, result[k]->value);
- }
- }
- cp = ++ip;
diff --git a/devel/cgilib/files/patch-cgi.h b/devel/cgilib/files/patch-cgi.h
deleted file mode 100644
index c48ad9183e96..000000000000
--- a/devel/cgilib/files/patch-cgi.h
+++ /dev/null
@@ -1,11 +0,0 @@
---- cgi.h.orig 2008-04-06 13:43:42.000000000 +0400
-+++ cgi.h 2016-03-18 01:18:48.000000000 +0400
-@@ -143,7 +143,7 @@
- char *cgiEscape (char *string);
-
- #ifdef __cplusplus
--extern }
-+}
- #endif
-
- #endif /* _CGI_H_ */
diff --git a/devel/cgilib/pkg-descr b/devel/cgilib/pkg-descr
deleted file mode 100644
index 35d152bc43ee..000000000000
--- a/devel/cgilib/pkg-descr
+++ /dev/null
@@ -1,3 +0,0 @@
-This is quite a simple library that provides an easy interface to the common
-gateway interface, known as CGI. The purpose is to provide an easy to use
-interface to CGI if you need to write your program in C instead of perl.