diff options
author | Hanno Böck <hanno@gentoo.org> | 2009-07-21 09:40:38 +0000 |
---|---|---|
committer | Hanno Böck <hanno@gentoo.org> | 2009-07-21 09:40:38 +0000 |
commit | 5e29ec3cbd01c2534b19c533141b5b8e76a06222 (patch) | |
tree | ca4d1a6ee77b108f01b69c454dc2cc7d50bdd461 /www-apache/mod_fastcgi | |
parent | Add !! blockers on old versions (diff) | |
download | gentoo-2-5e29ec3cbd01c2534b19c533141b5b8e76a06222.tar.gz gentoo-2-5e29ec3cbd01c2534b19c533141b5b8e76a06222.tar.bz2 gentoo-2-5e29ec3cbd01c2534b19c533141b5b8e76a06222.zip |
mod_fastcgi bump to snapshot version
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'www-apache/mod_fastcgi')
-rw-r--r-- | www-apache/mod_fastcgi/ChangeLog | 11 | ||||
-rw-r--r-- | www-apache/mod_fastcgi/mod_fastcgi-2.4.7_pre0811090952.ebuild | 32 |
2 files changed, 41 insertions, 2 deletions
diff --git a/www-apache/mod_fastcgi/ChangeLog b/www-apache/mod_fastcgi/ChangeLog index edb0566270cb..877bae2888ea 100644 --- a/www-apache/mod_fastcgi/ChangeLog +++ b/www-apache/mod_fastcgi/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for www-apache/mod_fastcgi -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_fastcgi/ChangeLog,v 1.6 2008/07/06 13:03:12 maekke Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_fastcgi/ChangeLog,v 1.7 2009/07/21 09:40:38 hanno Exp $ + +*mod_fastcgi-2.4.7_pre0811090952 (21 Jul 2009) + + 21 Jul 2009; Hanno Boeck <hanno@gentoo.org> + +mod_fastcgi-2.4.7_pre0811090952.ebuild: + Bump to snapshot version, contains some fixes and there has been no + release for ages, upstream is quite inactive. 06 Jul 2008; Markus Meier <maekke@gentoo.org> mod_fastcgi-2.4.6-r1.ebuild: add empty IUSE diff --git a/www-apache/mod_fastcgi/mod_fastcgi-2.4.7_pre0811090952.ebuild b/www-apache/mod_fastcgi/mod_fastcgi-2.4.7_pre0811090952.ebuild new file mode 100644 index 000000000000..22a8918bea99 --- /dev/null +++ b/www-apache/mod_fastcgi/mod_fastcgi-2.4.7_pre0811090952.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_fastcgi/mod_fastcgi-2.4.7_pre0811090952.ebuild,v 1.1 2009/07/21 09:40:38 hanno Exp $ + +inherit apache-module eutils + +MY_P="${PN}-SNAP-${PV/2.4.7_pre/}" + +DESCRIPTION="FastCGI is a open extension to CGI without the limitations of server specific APIs." +HOMEPAGE="http://fastcgi.com/" +SRC_URI="http://www.fastcgi.com/dist/${MY_P}.tar.gz" + +KEYWORDS="~amd64 ~x86" +SLOT="0" +LICENSE="FastCGI" +IUSE="" + +APXS2_ARGS="-c mod_fastcgi.c fcgi*.c" +APACHE2_MOD_CONF="20_${PN}" +APACHE2_MOD_DEFINE="FASTCGI" + +DOCFILES="CHANGES README docs/LICENSE.TERMS docs/mod_fastcgi.html" + +S="${WORKDIR}/${MY_P}" + +need_apache + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}"/2.4.6-graceful.patch +} |