# Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: $ DESCRIPTION="Apache module for Mono" HOMEPAGE="http://www.go-mono.com/" SRC_URI="http://www.go-mono.com/archive/${P}.tar.gz" LICENSE="Apache-1.1" SLOT="0" KEYWORDS="~x86" IUSE="apache2" DEPEND=">=dev-dotnet/mono-0.30 =net-www/apache-2*" 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() { # make install DESTDIR=${D} 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" }