blob: 7d29a781b1b99c970983a2e23a705e54674049d1 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-www/mod_mono/mod_mono-0.10.ebuild,v 1.4 2004/06/25 01:02:54 agriffis Exp $
DESCRIPTION="Apache module for Mono"
HOMEPAGE="http://www.go-mono.com/"
SRC_URI="http://www.go-mono.com/archive/beta2/${P}.tar.gz"
LICENSE="Apache-1.1"
SLOT="0"
KEYWORDS="~x86"
IUSE="apache2"
DEPEND=">=dev-dotnet/mono-0.30
=net-www/apache-2*
>=dev-dotnet/xsp-0.11"
RDEPEND=""
src_compile() {
econf \
--libexecdir=/usr/lib/apache2-extramodules \
--with-apxs=/usr/sbin/apxs2 \
--with-apr-config=/usr/bin/apr-config || die "econf failed"
emake || die "emake failed"
}
src_install() {
insinto /usr/lib/apache2-extramodules
doins src/.libs/libmod_mono.so
insinto /etc/apache2/conf/modules.d
newins ${FILESDIR}/70_mod_mono.conf 70_mod_mono.conf
doman man/mod_mono.8
einfo "To view the samples, uncomment the commented blocks in"
einfo "/etc/apache2/conf/modules.d/70_mod_mono.conf"
einfo
einfo "Edit /etc/conf.d/apache2 and add \"-D MONO\" to APACHE2_OPTS"
}
|