blob: 72b5dc34661d9a1d0fac9c0f342cddbb0e442735 (
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
50
51
52
53
54
55
56
57
58
59
60
61
62
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_mono/mod_mono-1.0.5-r1.ebuild,v 1.4 2005/07/09 15:45:24 agriffis Exp $
inherit apache-module
DESCRIPTION="Apache module for Mono"
HOMEPAGE="http://www.go-mono.com/"
SRC_URI="http://www.go-mono.com/archive/${PV}/${P}.tar.gz"
LICENSE="Apache-1.1"
SLOT="0"
KEYWORDS="~x86 ~ppc"
IUSE="apache2"
DEPEND=">=dev-lang/mono-${PV}
>=dev-dotnet/xsp-${PV}"
APACHE1_MOD_FILE="${S}/src/.libs/mod_mono.so"
APACHE1_MOD_CONF="${PVR}/70_mod_mono"
APACHE1_MOD_DEFINE="MONO"
APACHE2_MOD_FILE="${S}/src/.libs/mod_mono.so"
APACHE2_MOD_CONF="${PVR}/70_mod_mono"
APACHE2_MOD_DEFINE="MONO"
DOCFILES="AUTHORS ChangeLog COPYING INSTALL NEWS README"
need_apache
pkg_setup() {
ewarn "Some users are experiencing problems with mod_mono, where mod-mono-server"
ewarn "will not start automatically, or requests will get a HTTP 500 application"
ewarn "error. If you experience these problems, please report it on:"
ewarn
ewarn " http://bugs.gentoo.org/show_bug.cgi?id=77169"
ewarn
ewarn "with as much information as possible. Thanks!"
}
src_compile() {
local apxs
useq apache2 && apxs="${APXS2}"
useq apache2 || apxs="${APXS1}"
econf \
--with-apxs=${apxs} \
--with-apr-config=/usr/bin/apr-config || die "econf failed"
emake || die "emake failed"
}
src_install() {
mv src/.libs/mod_mono.so{.0.0.0,}
apache-module_src_install
doman man/mod_mono.8
}
pkg_postinst() {
apache-module_pkg_postinst
einfo "To view the sameples, add \"-D MONO_DEMO\" at your apache's"
einfo "conf.d configuration file."
}
|