blob: f2689dd6d83d7197e6756440063281cbb4f4b2da (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
# Copyright 1999-2007 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.23-r1.ebuild,v 1.1 2007/06/16 22:46:57 nelchael Exp $
inherit eutils apache-module autotools
KEYWORDS="~amd64 ~ppc ~x86"
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"
SLOT="0"
IUSE=""
S="${WORKDIR}/resin-${PV}"
# See apache-module.eclass for more information.
APACHE2_MOD_CONF="88_${PN}"
APACHE2_MOD_DEFINE="CAUCHO"
need_apache2
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${P}-gentoo.patch"
epatch "${FILESDIR}/${P}-ssl.patch"
epatch "${FILESDIR}/${P}-java.patch"
epatch "${FILESDIR}/${P}-disable-sticky-sessions.patch"
eautoreconf
chmod 755 ./configure
}
src_compile() {
econf --with-apxs=${APXS2} || die "econf failed"
emake -j1 -C "${S}/modules/c/src/apache2/" || die "emake failed"
}
src_install() {
cd "${S}/modules/c/src/apache2"
emake -j1 DESTDIR="${D}" install || die "emake install failed"
insinto "${APACHE2_MODULES_CONFDIR}"
doins "${FILESDIR}/${APACHE2_MOD_CONF}.conf" \
|| die "internal ebuild error: '${FILESDIR}/${APACHE2_MOD_CONF}.conf' not found."
}
|