summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHanno Böck <hanno@gentoo.org>2014-01-14 08:56:47 +0000
committerHanno Böck <hanno@gentoo.org>2014-01-14 08:56:47 +0000
commitc1d74813c3160d8e17ad2fd4f3d27afc261a6b40 (patch)
tree49114634284c8986c267381fb33f7e490d89548a /www-apache/mod_fcgid
parentCleanup. (diff)
downloadgentoo-2-c1d74813c3160d8e17ad2fd4f3d27afc261a6b40.tar.gz
gentoo-2-c1d74813c3160d8e17ad2fd4f3d27afc261a6b40.tar.bz2
gentoo-2-c1d74813c3160d8e17ad2fd4f3d27afc261a6b40.zip
mod_fcgid version bump
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0xA5880072BBB51E42)
Diffstat (limited to 'www-apache/mod_fcgid')
-rw-r--r--www-apache/mod_fcgid/ChangeLog9
-rw-r--r--www-apache/mod_fcgid/mod_fcgid-2.3.9.ebuild27
2 files changed, 34 insertions, 2 deletions
diff --git a/www-apache/mod_fcgid/ChangeLog b/www-apache/mod_fcgid/ChangeLog
index 4aa4484f3317..99691540df02 100644
--- a/www-apache/mod_fcgid/ChangeLog
+++ b/www-apache/mod_fcgid/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for www-apache/mod_fcgid
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_fcgid/ChangeLog,v 1.56 2013/12/23 16:01:53 pacho Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_fcgid/ChangeLog,v 1.57 2014/01/14 08:56:47 hanno Exp $
+
+*mod_fcgid-2.3.9 (14 Jan 2014)
+
+ 14 Jan 2014; Hanno Boeck <hanno@gentoo.org> +mod_fcgid-2.3.9.ebuild:
+ Bump, fixes CVE-2013-4365.
23 Dec 2013; Pacho Ramos <pacho@gentoo.org> -mod_fcgid-2.3.5.ebuild,
-mod_fcgid-2.3.6.ebuild, metadata.xml:
diff --git a/www-apache/mod_fcgid/mod_fcgid-2.3.9.ebuild b/www-apache/mod_fcgid/mod_fcgid-2.3.9.ebuild
new file mode 100644
index 000000000000..d970dba058b8
--- /dev/null
+++ b/www-apache/mod_fcgid/mod_fcgid-2.3.9.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_fcgid/mod_fcgid-2.3.9.ebuild,v 1.1 2014/01/14 08:56:47 hanno Exp $
+
+inherit apache-module eutils multilib
+
+DESCRIPTION="mod_fcgid is a binary-compatible alternative to mod_fastcgi with better process management."
+HOMEPAGE="http://httpd.apache.org/mod_fcgid/"
+SRC_URI="mirror://apache/httpd/mod_fcgid/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86"
+IUSE=""
+
+APACHE2_MOD_CONF="2.2/20_${PN}"
+APACHE2_MOD_DEFINE="FCGID"
+
+DOCFILES="CHANGES-FCGID README-FCGID STATUS-FCGID"
+
+need_apache2
+
+src_compile () {
+ ./configure.apxs || die "apxs configure failed!"
+ make || die "make failed"
+ ln -sf modules/fcgid/.libs .libs || die "symlink creation failed"
+}