diff options
author | Krzysztof Pawlik <nelchael@gentoo.org> | 2011-02-08 18:13:10 +0000 |
---|---|---|
committer | Krzysztof Pawlik <nelchael@gentoo.org> | 2011-02-08 18:13:10 +0000 |
commit | 6a7e565027dcf24921614c93a6b302b671fedea1 (patch) | |
tree | eb853c320865e2f0b034b39c8b90dad379c51b51 /www-apache | |
parent | Version bump. (diff) | |
download | gentoo-2-6a7e565027dcf24921614c93a6b302b671fedea1.tar.gz gentoo-2-6a7e565027dcf24921614c93a6b302b671fedea1.tar.bz2 gentoo-2-6a7e565027dcf24921614c93a6b302b671fedea1.zip |
Version bump.
(Portage version: 2.1.9.38/cvs/Linux x86_64)
Diffstat (limited to 'www-apache')
-rw-r--r-- | www-apache/mod_caucho/ChangeLog | 10 | ||||
-rw-r--r-- | www-apache/mod_caucho/mod_caucho-4.0.14.ebuild | 48 |
2 files changed, 56 insertions, 2 deletions
diff --git a/www-apache/mod_caucho/ChangeLog b/www-apache/mod_caucho/ChangeLog index 4f606d80dc15..41e75ed3b190 100644 --- a/www-apache/mod_caucho/ChangeLog +++ b/www-apache/mod_caucho/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for www-apache/mod_caucho -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_caucho/ChangeLog,v 1.55 2010/12/12 13:58:33 nelchael Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_caucho/ChangeLog,v 1.56 2011/02/08 18:13:10 nelchael Exp $ + +*mod_caucho-4.0.14 (08 Feb 2011) + + 08 Feb 2011; Krzysztof Pawlik <nelchael@gentoo.org> + +mod_caucho-4.0.14.ebuild: + Version bump. *mod_caucho-4.0.13 (12 Dec 2010) diff --git a/www-apache/mod_caucho/mod_caucho-4.0.14.ebuild b/www-apache/mod_caucho/mod_caucho-4.0.14.ebuild new file mode 100644 index 000000000000..0439736c2d4f --- /dev/null +++ b/www-apache/mod_caucho/mod_caucho-4.0.14.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_caucho/mod_caucho-4.0.14.ebuild,v 1.1 2011/02/08 18:13:10 nelchael Exp $ + +EAPI="2" + +inherit eutils apache-module autotools + +DESCRIPTION="mod_caucho connects Resin and Apache2." +HOMEPAGE="http://www.caucho.com/" +SRC_URI="http://www.caucho.com/download/resin-${PV}-src.zip + mirror://gentoo/resin-gentoo-patches-${PV}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" +IUSE="" + +DEPEND="${DEPEND} + app-arch/unzip" +RDEPEND="" + +S="${WORKDIR}/resin-${PV}" + +# See apache-module.eclass for more information. +APACHE2_MOD_CONF="88_${PN}" +APACHE2_MOD_DEFINE="CAUCHO" +APACHE2_MOD_FILE="${S}/modules/c/src/apache2/.libs/${PN}.so" + +need_apache2 + +src_prepare() { + for i in "${WORKDIR}"/${PV}/mod_caucho-*; do + epatch "${i}" + done + + mkdir m4 + eautoreconf + chmod 755 ./configure +} + +src_configure() { + econf --with-apxs=${APXS} || die "econf failed" +} + +src_compile() { + emake -C "${S}/modules/c/src/apache2/" || die "emake failed" +} |