blob: a08d7130c4116e4d1cf3f7586ddf28db47862ae8 (
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
63
64
65
|
# Copyright 1999-2007 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.1.13.5.ebuild,v 1.4 2007/01/15 17:40:02 chtekk Exp $
inherit apache-module eutils versionator
MY_PV=$(get_version_component_range 1-3)
KEYWORDS="~amd64 ~ppc x86"
DESCRIPTION="Apache module for Mono."
HOMEPAGE="http://www.go-mono.com/"
SRC_URI="http://go-mono.com/sources/${PN}/${P}.tar.gz"
LICENSE="Apache-1.1"
SLOT="0"
IUSE="debug"
DEPEND="=dev-dotnet/xsp-${MY_PV}*"
RDEPEND="${DEPEND}"
APACHE1_MOD_FILE="${S}/src/.libs/${PN}.so"
APACHE1_MOD_CONF="${MY_PV}/70_${PN}"
APACHE1_MOD_DEFINE="MONO"
APACHE2_MOD_FILE="${S}/src/.libs/${PN}.so"
APACHE2_MOD_CONF="${MY_PV}/70_${PN}"
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() {
epatch "${FILESDIR}/${P}-configure-apr-config.patch"
econf \
$(use_enable debug) \
--disable-dependency-tracking \
|| die "econf failed"
emake || die "emake failed"
}
src_install() {
mv -f "src/.libs/${PN}.so.0.0.0" "src/.libs/${PN}.so"
apache-module_src_install
doman man/mod_mono.8
}
pkg_postinst() {
apache-module_pkg_postinst
einfo "To enable mod_mono, add \"-D MONO\" to your Apache's"
einfo "conf.d configuration file. Additionally, to view sample"
einfo "ASP.NET applications, add \"-D MONO_DEMO\" too."
}
|