mod_mono-3.13_p20200408-r8shnurise
download
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="8"
KEYWORDS="amd64 arm64"
SLOT="0"
# Watch the order of these!
inherit autotools apache-module-r8 go-mono mono-env
# APACHE_MODULES_CONFDIR = /etc/apache2/modules.d/
# https://wiki.gentoo.org/wiki/Project:Apache/Developer_Documentation
# if use apache2; then
# keepdir "${APACHE_MODULES_CONFDIR}"
# fi
# APACHE_MODULES_CONFDIR is defined in depend.apache.eclass
# inherit depend.apache
# https://wiki.gentoo.org/wiki/Project:Apache/depend.apache.eclass_Documentation
inherit depend.apache
DESCRIPTION="Apache module for Mono"
HOMEPAGE="https://www.mono-project.com/Mod_mono"
LICENSE="Apache-2.0"
IUSE="debug"
EGIT_COMMIT="96a6b55d69da2807ed32a362e0d9b6f19e2a8a30"
SRC_URI="https://github.com/mono/mod_mono/archive/${EGIT_COMMIT}.tar.gz -> ${PN}-${PV}.tar.gz"
RESTRICT="mirror"
S="${WORKDIR}/mod_mono-${EGIT_COMMIT}"
CDEPEND=""
DEPEND="${CDEPEND}"
RDEPEND="${CDEPEND}
>=www-servers/xsp-4.4
"
APACHE2_MOD_CONF="2.2/70_${PN}"
APACHE2_MOD_DEFINE="MONO"
DOCFILES="AUTHORS ChangeLog COPYING INSTALL NEWS README"
need_apache2
src_prepare() {
sed -e "s:@LIBDIR@:$(get_libdir):" "${FILESDIR}/${APACHE2_MOD_CONF}.conf" \
> "${WORKDIR}/${APACHE2_MOD_CONF##*/}.conf" || die
eautoreconf
go-mono_src_prepare
}
src_configure() {
export LIBS="$(pkg-config --libs apr-1)"
go-mono_src_configure \
$(use_enable debug) \
--with-apxs="/usr/bin/apxs" \
--with-apr-config="/usr/bin/apr-1-config" \
--with-apu-config="/usr/bin/apu-1-config"
}
src_compile() {
go-mono_src_compile
}
src_install() {
go-mono_src_install
find "${D}" -name 'mod_mono.conf' -delete || die "failed to remove mod_mono.conf"
insinto "${APACHE_MODULES_CONFDIR}"
newins "${WORKDIR}/${APACHE2_MOD_CONF##*/}.conf" "${APACHE2_MOD_CONF##*/}.conf" \
|| die "internal ebuild error: '${FILESDIR}/${APACHE2_MOD_CONF}.conf' not found"
}
pkg_postinst() {
apache-module_pkg_postinst
elog "To enable mod_mono, add \"-D MONO\" to your Apache's"
elog "conf.d configuration file. Additionally, to view sample"
elog "ASP.NET applications, add \"-D MONO_DEMO\" too."
}