libdombey implements an SCGI application server which is incapable of
generating responses on its own. The programmer writes an initialization function and a function to generate responses, then compiles and links his or her code against the library to create a complete multi-process SCGI application server. libdombey is intended for use in applications where client requests are either GET requests or POST requests encoded with x-www-form-urlencoding. It drops connections over which it receives POST requests encoded as multipart/form-data. WWW: http://www.mammothcheese.ca/libdombey.html -- James Bailie <jimmy@mammothcheese.ca> http://www.mammothcheese.ca PR: ports/145998 Submitted by: James Bailie <jimmy at mammothcheese.ca>
This commit is contained in:
parent
14a74017e8
commit
6da0297d84
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=253176
5 changed files with 43 additions and 0 deletions
|
@ -713,6 +713,7 @@
|
|||
SUBDIR += libdlmalloc
|
||||
SUBDIR += libdlna
|
||||
SUBDIR += libdnsres
|
||||
SUBDIR += libdombey
|
||||
SUBDIR += libds
|
||||
SUBDIR += libdsp
|
||||
SUBDIR += libdwarf
|
||||
|
|
21
devel/libdombey/Makefile
Normal file
21
devel/libdombey/Makefile
Normal file
|
@ -0,0 +1,21 @@
|
|||
# New ports collection makefile for: libdombey
|
||||
# Date created: Fri, 23 Apr 2010 14:24:06 EDT
|
||||
# Whom: James Bailie <jimmy@mammothcheese.ca>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= libdombey
|
||||
PORTVERSION= 1.0
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= http://www.mammothcheese.ca/
|
||||
|
||||
MAINTAINER= jimmy@mammothcheese.ca
|
||||
COMMENT= SCGI application server in a library
|
||||
|
||||
MAN8= libdombey.8
|
||||
MANCOMPRESSED= yes
|
||||
|
||||
USE_LDCONFIG= yes
|
||||
|
||||
.include <bsd.port.mk>
|
3
devel/libdombey/distinfo
Normal file
3
devel/libdombey/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
|||
MD5 (libdombey-1.0.tar.gz) = e86209512ffa6d2915ca8eca852e154b
|
||||
SHA256 (libdombey-1.0.tar.gz) = bdb0ad139f393af4f61aa9429ea4ba6c9bbc55dbb42e7951ed11013fc7dd01e8
|
||||
SIZE (libdombey-1.0.tar.gz) = 11765
|
16
devel/libdombey/pkg-descr
Normal file
16
devel/libdombey/pkg-descr
Normal file
|
@ -0,0 +1,16 @@
|
|||
libdombey implements an SCGI application server which is incapable of
|
||||
generating responses on its own. The programmer writes an initialization
|
||||
function and a function to generate responses, then compiles and links his
|
||||
or her code against the library to create a complete multi-process SCGI
|
||||
application server.
|
||||
|
||||
libdombey is intended for use in applications where client requests are
|
||||
either GET requests or POST requests encoded with x-www-form-urlencoding.
|
||||
It drops connections over which it receives POST requests encoded as
|
||||
multipart/form-data.
|
||||
|
||||
WWW: http://www.mammothcheese.ca/libdombey.html
|
||||
|
||||
--
|
||||
James Bailie <jimmy@mammothcheese.ca>
|
||||
http://www.mammothcheese.ca
|
2
devel/libdombey/pkg-plist
Normal file
2
devel/libdombey/pkg-plist
Normal file
|
@ -0,0 +1,2 @@
|
|||
lib/libdombey.so.1.0
|
||||
include/dombey.h
|
Loading…
Reference in a new issue