diff options
author | Hanno Böck <hanno@gentoo.org> | 2009-12-21 15:18:34 +0000 |
---|---|---|
committer | Hanno Böck <hanno@gentoo.org> | 2009-12-21 15:18:34 +0000 |
commit | 3c365c15deafeef8a1c3296efc70c9706eab4ce4 (patch) | |
tree | 2563ca7d9d47dd7a0a9a698a5d099de5bee76710 /www-apache | |
parent | fix HOMEPAGE and SRC_URI in mod_fcgid (diff) | |
download | gentoo-2-3c365c15deafeef8a1c3296efc70c9706eab4ce4.tar.gz gentoo-2-3c365c15deafeef8a1c3296efc70c9706eab4ce4.tar.bz2 gentoo-2-3c365c15deafeef8a1c3296efc70c9706eab4ce4.zip |
mod_fcgid bump to svn version due to upload corruption bug
(Portage version: 2.2_rc60/cvs/Linux x86_64)
Diffstat (limited to 'www-apache')
-rw-r--r-- | www-apache/mod_fcgid/ChangeLog | 8 | ||||
-rw-r--r-- | www-apache/mod_fcgid/mod_fcgid-2.3.5_pre20091221.ebuild | 27 |
2 files changed, 34 insertions, 1 deletions
diff --git a/www-apache/mod_fcgid/ChangeLog b/www-apache/mod_fcgid/ChangeLog index 5cd407445c12..4cf09e5879d8 100644 --- a/www-apache/mod_fcgid/ChangeLog +++ b/www-apache/mod_fcgid/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for www-apache/mod_fcgid # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_fcgid/ChangeLog,v 1.41 2009/12/21 15:15:26 hanno Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_fcgid/ChangeLog,v 1.42 2009/12/21 15:18:34 hanno Exp $ + +*mod_fcgid-2.3.5_pre20091221 (21 Dec 2009) + + 21 Dec 2009; Hanno Boeck <hanno@gentoo.org> + +mod_fcgid-2.3.5_pre20091221.ebuild: + Bump to svn snapshot, fixes upload corruption bug. 21 Dec 2009; Hanno Boeck <hanno@gentoo.org> mod_fcgid-2.2.ebuild, mod_fcgid-2.2-r1.ebuild, mod_fcgid-2.3.4.ebuild: diff --git a/www-apache/mod_fcgid/mod_fcgid-2.3.5_pre20091221.ebuild b/www-apache/mod_fcgid/mod_fcgid-2.3.5_pre20091221.ebuild new file mode 100644 index 000000000000..71aa9a77f744 --- /dev/null +++ b/www-apache/mod_fcgid/mod_fcgid-2.3.5_pre20091221.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2009 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.5_pre20091221.ebuild,v 1.1 2009/12/21 15:18:34 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://gentoo/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" +IUSE="" + +APACHE2_MOD_CONF="2.2/20_${PN}" +APACHE2_MOD_DEFINE="FCGID" + +DOCFILES="CHANGES-FCGID README-FCGID STATUS-FCGID" + +need_apache2_2 + +src_compile () { + ./configure.apxs || die "apxs configure failed!" + make || die "make failed" + ln -sf modules/fcgid/.libs .libs || die "symlink creation failed" +} |