diff options
Diffstat (limited to 'www-apache/mod_caucho/mod_caucho-3.0.19.ebuild')
-rw-r--r-- | www-apache/mod_caucho/mod_caucho-3.0.19.ebuild | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/www-apache/mod_caucho/mod_caucho-3.0.19.ebuild b/www-apache/mod_caucho/mod_caucho-3.0.19.ebuild new file mode 100644 index 000000000000..61d24505fe48 --- /dev/null +++ b/www-apache/mod_caucho/mod_caucho-3.0.19.ebuild @@ -0,0 +1,57 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_caucho/mod_caucho-3.0.19.ebuild,v 1.1 2006/07/06 11:32:19 nelchael Exp $ + +inherit 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.tar.gz" +LICENSE="GPL-2" + +KEYWORDS="~amd64 ~x86" +IUSE="" +SLOT="0" + +# See apache-module.eclass for more information. +APACHE2_MOD_CONF="88_${PN}" +APACHE2_MOD_DEFINE="CAUCHO" + +need_apache2 + +RDEPEND="${RDEPEND}" + +S="${WORKDIR}/resin-${PV}" + +src_unpack() { + + unpack "${A}" + + epatch "${FILESDIR}/${P}-gentoo.patch" + + cd "${S}" + eautoreconf + + chmod 755 ./configure + +} + +src_compile() { + + econf --with-apxs=${APXS2} || die "econf failed" + + emake -C "${S}/modules/c/src/common/" || die "emake failed" + emake -C "${S}/modules/c/src/apache2/" || die "emake failed" + +} + +src_install() { + + cd "${S}/modules/c/src/apache2" + make DESTDIR="${D}" install || die "install failed" + + insinto ${APACHE2_MODULES_CONFDIR} + doins ${FILESDIR}/${APACHE2_MOD_CONF}.conf || \ + die "internal ebuild error: '${FILESDIR}/${APACHE2_MOD_CONF}.conf' not found." + +} |