summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorElisamuel Resto2010-04-28 15:40:54 -0400
committerElisamuel Resto2010-04-28 17:13:59 -0400
commit05f78cd7aea2e3ddff295d14a556865aff4c557a (patch)
tree7fbe98c2c2775fd08f1ec294ab9c99f8f21b43da
parent9c17d42a571f8a46a57bc04395c81002276bb6de (diff)
http/mod_fcgid: new spell, FastCGI control daemon for Apache
-rw-r--r--ChangeLog3
-rwxr-xr-xhttp/mod_fcgid/BUILD6
-rwxr-xr-xhttp/mod_fcgid/DEPENDS1
-rwxr-xr-xhttp/mod_fcgid/DETAILS22
-rw-r--r--http/mod_fcgid/HISTORY2
5 files changed, 34 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 12994fbeab..ba9593d98b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+2010-04-28 Elisamuel Resto <ryuji@sourcemage.org>
+ * http/mod_fcgid: new spell, FastCGI control daemon for Apache
+
2010-04-26 Elisamuel Resto <ryuji@sourcemage.org>
* apache.gpg: added key id 39FF092C, signer of mod_fcgid tarballs
diff --git a/http/mod_fcgid/BUILD b/http/mod_fcgid/BUILD
new file mode 100755
index 0000000000..155c932ce8
--- /dev/null
+++ b/http/mod_fcgid/BUILD
@@ -0,0 +1,6 @@
+unset CFLAGS &&
+cd "${SOURCE_DIRECTORY}" &&
+./configure.apxs &&
+make_single &&
+make &&
+make_normal
diff --git a/http/mod_fcgid/DEPENDS b/http/mod_fcgid/DEPENDS
new file mode 100755
index 0000000000..341c4e26f6
--- /dev/null
+++ b/http/mod_fcgid/DEPENDS
@@ -0,0 +1 @@
+depends APACHE2
diff --git a/http/mod_fcgid/DETAILS b/http/mod_fcgid/DETAILS
new file mode 100755
index 0000000000..b2de728cc0
--- /dev/null
+++ b/http/mod_fcgid/DETAILS
@@ -0,0 +1,22 @@
+ SPELL=mod_fcgid
+ VERSION=2.3.5
+ SOURCE="${SPELL}-${VERSION}.tar.bz2"
+ SOURCE2="${SOURCE}.asc"
+SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELL}-${VERSION}"
+ SOURCE_URL[0]="${APACHE_URL}/httpd/mod_fcgid/${SOURCE}"
+ SOURCE2_URL[0]="${SOURCE_URL[0]}.asc"
+ SOURCE2_IGNORE=signature
+ SOURCE_GPG="apache.gpg:${SOURCE2}:UPSTREAM_KEY"
+ WEB_SITE="http://httpd.apache.org/mod_fcgid"
+ ENTERED=20100428
+ LICENSE[0]=APACHE
+ KEYWORDS="apache http fastcgi fcgi"
+ SHORT="FastCGI control daemon module for Apache"
+
+cat << EOF
+mod_fcgid is a high performance alternative to mod_cgi or mod_cgid, which starts
+a sufficient number of instances of the CGI program to handle concurrent requests,
+and these programs remain running to handle further incoming requests. It is
+favored by the PHP developers, for example, as a preferred alternative to running
+mod_php in-process, delivering very similar performance.
+EOF
diff --git a/http/mod_fcgid/HISTORY b/http/mod_fcgid/HISTORY
new file mode 100644
index 0000000000..a2d1231306
--- /dev/null
+++ b/http/mod_fcgid/HISTORY
@@ -0,0 +1,2 @@
+2010-04-28 Elisamuel Resto <ryuji@sourcemage.org>
+ * DETAILS, DEPENDS, BUILD: new spell, FastCGI control daemon for Apache