summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2010-10-07 20:45:28 +0000
committerPacho Ramos <pacho@gentoo.org>2010-10-07 20:45:28 +0000
commit52c56c534c78c387f86617611ce48374a2fef877 (patch)
tree6a2de90d7566d9483602105bbc859629cb689ca1 /www-apache/mod_mono
parentRemove old. (diff)
downloadgentoo-2-52c56c534c78c387f86617611ce48374a2fef877.tar.gz
gentoo-2-52c56c534c78c387f86617611ce48374a2fef877.tar.bz2
gentoo-2-52c56c534c78c387f86617611ce48374a2fef877.zip
Remove old.
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Diffstat (limited to 'www-apache/mod_mono')
-rw-r--r--www-apache/mod_mono/ChangeLog10
-rw-r--r--www-apache/mod_mono/files/1.2.4/70_mod_mono.conf78
-rw-r--r--www-apache/mod_mono/files/1.2.6/70_mod_mono.conf78
-rw-r--r--www-apache/mod_mono/files/1.9/70_mod_mono.conf78
-rw-r--r--www-apache/mod_mono/files/mono_auto_application_aspnet2.patch11
-rw-r--r--www-apache/mod_mono/mod_mono-1.2.4.ebuild57
-rw-r--r--www-apache/mod_mono/mod_mono-1.2.6-r1.ebuild57
-rw-r--r--www-apache/mod_mono/mod_mono-2.0.9999.ebuild67
-rw-r--r--www-apache/mod_mono/mod_mono-2.0.ebuild57
-rw-r--r--www-apache/mod_mono/mod_mono-2.4.2.ebuild66
-rw-r--r--www-apache/mod_mono/mod_mono-2.4.9999.ebuild67
11 files changed, 9 insertions, 617 deletions
diff --git a/www-apache/mod_mono/ChangeLog b/www-apache/mod_mono/ChangeLog
index f6ecc3668ccc..859325bcf43c 100644
--- a/www-apache/mod_mono/ChangeLog
+++ b/www-apache/mod_mono/ChangeLog
@@ -1,6 +1,14 @@
# ChangeLog for www-apache/mod_mono
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_mono/ChangeLog,v 1.68 2010/09/12 04:25:01 josejx Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_mono/ChangeLog,v 1.69 2010/10/07 20:45:28 pacho Exp $
+
+ 07 Oct 2010; Pacho Ramos <pacho@gentoo.org> -files/1.2.4/70_mod_mono.conf,
+ -mod_mono-1.2.4.ebuild, -mod_mono-2.0.ebuild,
+ -files/1.2.6/70_mod_mono.conf, -mod_mono-1.2.6-r1.ebuild,
+ -mod_mono-2.0.9999.ebuild, -files/1.9/70_mod_mono.conf,
+ -mod_mono-2.4.2.ebuild, -files/mono_auto_application_aspnet2.patch,
+ -mod_mono-2.4.9999.ebuild:
+ Remove old.
12 Sep 2010; Joseph Jezak <josejx@gentoo.org> mod_mono-2.6.3.ebuild:
Marked ppc for bug #327279.
diff --git a/www-apache/mod_mono/files/1.2.4/70_mod_mono.conf b/www-apache/mod_mono/files/1.2.4/70_mod_mono.conf
deleted file mode 100644
index eff05b13d1fc..000000000000
--- a/www-apache/mod_mono/files/1.2.4/70_mod_mono.conf
+++ /dev/null
@@ -1,78 +0,0 @@
-# For more information on the Mono* directives, see the man page for
-# mod_mono(8)
-
-<IfDefine MONO>
- # Set this to False if you manage your ASP.Net server manually through
- # /etc/init.d/mod-mono-server
- MonoRunXSP True
-
- # Set this to Enabled if you want to enable AutoHosting.
- # See http://www.mono-project.com/AutoConfiguration for more info.
- # Note that if you want your automatically hosted applications
- # handled by ASP.NET 2.0 engine you have to enable the aspnet2 USE flag.
- MonoAutoApplication Enabled
-
- <IfModule !mod_mono.c>
- LoadModule mono_module modules/mod_mono.so
- </IfModule>
-
- <IfModule mod_mime.c>
- AddType application/x-asp-net .aspx
- AddType application/x-asp-net .asmx
- AddType application/x-asp-net .ashx
- AddType application/x-asp-net .asax
- AddType application/x-asp-net .ascx
- AddType application/x-asp-net .soap
- AddType application/x-asp-net .rem
- AddType application/x-asp-net .axd
- AddType application/x-asp-net .cs
- AddType application/x-asp-net .config
- AddType application/x-asp-net .Config
- AddType application/x-asp-net .dll
-
- DirectoryIndex index.aspx
- DirectoryIndex Default.aspx
- DirectoryIndex default.aspx
- </IfModule>
-
-### Please also add "-D MONO_DEMO" in order to activate out-of-the-box mono demo
-###
-
- # Note that the test application runs on a separate mod-mono-server
- # instance named "testinst". Athought this is not mandatory, it shows how to
- # distribute workload between multiple mod-mono-servers. For more info see:
- # http://www.mono-project.com/Mod_mono
-
- <IfDefine MONO_DEMO>
- <IfModule mod_alias.c>
- Alias /mono "/usr/lib/xsp/test"
- </IfModule>
-
- # You might want to specify the version of mod-mono-server
- # instance that will handle your application. The default
- # value depends on whether the aspnet2 USE flag was set
- # during compilation
- #MonoServerPath testinst /usr/lib/mono/1.0/mod-mono-server.exe
- #MonoServerPath testinst /usr/lib/mono/2.0/mod-mono-server2.exe
-
- AddMonoApplications testinst "/mono:/usr/lib/xsp/test"
-
- <Directory /usr/lib/xsp/test>
- SetHandler mono
- MonoSetServerAlias testinst
-
- <IfModule mod_access.c>
- Order allow,deny
- Allow from all
- </IfModule>
- <IfModule mod_dir.c>
- # Sample ASP.NET 1.1/2.0 applications can be accessed
- # via index2.aspx.
- DirectoryIndex index.aspx
- #DirectoryIndex index2.aspx
- </IfModule>
- </Directory>
- </IfDefine>
-### MONO_DEMO end.
-
-</IfDefine>
diff --git a/www-apache/mod_mono/files/1.2.6/70_mod_mono.conf b/www-apache/mod_mono/files/1.2.6/70_mod_mono.conf
deleted file mode 100644
index b6582740d2a4..000000000000
--- a/www-apache/mod_mono/files/1.2.6/70_mod_mono.conf
+++ /dev/null
@@ -1,78 +0,0 @@
-# For more information on the Mono* directives, see the man page for
-# mod_mono(8)
-
-<IfDefine MONO>
- # Set this to False if you manage your ASP.Net server manually through
- # /etc/init.d/mod-mono-server
- MonoRunXSP True
-
- # Set this to Enabled if you want to enable AutoHosting.
- # See http://www.mono-project.com/AutoConfiguration for more info.
- # Note that if you want your automatically hosted applications
- # handled by ASP.NET 2.0 engine you have to enable the aspnet2 USE flag.
- MonoAutoApplication Enabled
-
- <IfModule !mod_mono.c>
- LoadModule mono_module modules/mod_mono.so
- </IfModule>
-
- <IfModule mod_mime.c>
- AddType application/x-asp-net .aspx
- AddType application/x-asp-net .asmx
- AddType application/x-asp-net .ashx
- AddType application/x-asp-net .asax
- AddType application/x-asp-net .ascx
- AddType application/x-asp-net .soap
- AddType application/x-asp-net .rem
- AddType application/x-asp-net .axd
- AddType application/x-asp-net .cs
- AddType application/x-asp-net .config
- AddType application/x-asp-net .Config
- AddType application/x-asp-net .dll
-
- DirectoryIndex index.aspx
- DirectoryIndex Default.aspx
- DirectoryIndex default.aspx
- </IfModule>
-
-### Please also add "-D MONO_DEMO" in order to activate out-of-the-box mono demo
-###
-
- # Note that the test application runs on a separate mod-mono-server
- # instance named "testinst". Athought this is not mandatory, it shows how to
- # distribute workload between multiple mod-mono-servers. For more info see:
- # http://www.mono-project.com/Mod_mono
-
- <IfDefine MONO_DEMO>
- <IfModule mod_alias.c>
- Alias /mono "/usr/lib/xsp/test"
- </IfModule>
-
- # You might want to specify the version of mod-mono-server
- # instance that will handle your application. The default
- # value depends on whether the aspnet2 USE flag was set
- # during compilation
- #MonoServerPath testinst /usr/lib/mono/1.0/mod-mono-server.exe
- #MonoServerPath testinst /usr/lib/mono/2.0/mod-mono-server2.exe
-
- AddMonoApplications testinst "/mono:/usr/lib/xsp/test"
-
- <Directory /usr/lib/xsp/test>
- SetHandler mono
- MonoSetServerAlias testinst
-
- <IfModule mod_authz_host.c>
- Order allow,deny
- Allow from all
- </IfModule>
- <IfModule mod_dir.c>
- # Sample ASP.NET 1.1/2.0 applications can be accessed
- # via index2.aspx.
- DirectoryIndex index.aspx
- #DirectoryIndex index2.aspx
- </IfModule>
- </Directory>
- </IfDefine>
-### MONO_DEMO end.
-
-</IfDefine>
diff --git a/www-apache/mod_mono/files/1.9/70_mod_mono.conf b/www-apache/mod_mono/files/1.9/70_mod_mono.conf
deleted file mode 100644
index b6582740d2a4..000000000000
--- a/www-apache/mod_mono/files/1.9/70_mod_mono.conf
+++ /dev/null
@@ -1,78 +0,0 @@
-# For more information on the Mono* directives, see the man page for
-# mod_mono(8)
-
-<IfDefine MONO>
- # Set this to False if you manage your ASP.Net server manually through
- # /etc/init.d/mod-mono-server
- MonoRunXSP True
-
- # Set this to Enabled if you want to enable AutoHosting.
- # See http://www.mono-project.com/AutoConfiguration for more info.
- # Note that if you want your automatically hosted applications
- # handled by ASP.NET 2.0 engine you have to enable the aspnet2 USE flag.
- MonoAutoApplication Enabled
-
- <IfModule !mod_mono.c>
- LoadModule mono_module modules/mod_mono.so
- </IfModule>
-
- <IfModule mod_mime.c>
- AddType application/x-asp-net .aspx
- AddType application/x-asp-net .asmx
- AddType application/x-asp-net .ashx
- AddType application/x-asp-net .asax
- AddType application/x-asp-net .ascx
- AddType application/x-asp-net .soap
- AddType application/x-asp-net .rem
- AddType application/x-asp-net .axd
- AddType application/x-asp-net .cs
- AddType application/x-asp-net .config
- AddType application/x-asp-net .Config
- AddType application/x-asp-net .dll
-
- DirectoryIndex index.aspx
- DirectoryIndex Default.aspx
- DirectoryIndex default.aspx
- </IfModule>
-
-### Please also add "-D MONO_DEMO" in order to activate out-of-the-box mono demo
-###
-
- # Note that the test application runs on a separate mod-mono-server
- # instance named "testinst". Athought this is not mandatory, it shows how to
- # distribute workload between multiple mod-mono-servers. For more info see:
- # http://www.mono-project.com/Mod_mono
-
- <IfDefine MONO_DEMO>
- <IfModule mod_alias.c>
- Alias /mono "/usr/lib/xsp/test"
- </IfModule>
-
- # You might want to specify the version of mod-mono-server
- # instance that will handle your application. The default
- # value depends on whether the aspnet2 USE flag was set
- # during compilation
- #MonoServerPath testinst /usr/lib/mono/1.0/mod-mono-server.exe
- #MonoServerPath testinst /usr/lib/mono/2.0/mod-mono-server2.exe
-
- AddMonoApplications testinst "/mono:/usr/lib/xsp/test"
-
- <Directory /usr/lib/xsp/test>
- SetHandler mono
- MonoSetServerAlias testinst
-
- <IfModule mod_authz_host.c>
- Order allow,deny
- Allow from all
- </IfModule>
- <IfModule mod_dir.c>
- # Sample ASP.NET 1.1/2.0 applications can be accessed
- # via index2.aspx.
- DirectoryIndex index.aspx
- #DirectoryIndex index2.aspx
- </IfModule>
- </Directory>
- </IfDefine>
-### MONO_DEMO end.
-
-</IfDefine>
diff --git a/www-apache/mod_mono/files/mono_auto_application_aspnet2.patch b/www-apache/mod_mono/files/mono_auto_application_aspnet2.patch
deleted file mode 100644
index 8ccc27ae5c15..000000000000
--- a/www-apache/mod_mono/files/mono_auto_application_aspnet2.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- mod_mono-1.1.17-old/src/mod_mono.h 2006-08-30 17:05:42.000000000 +0200
-+++ mod_mono-1.1.17/src/mod_mono.h 2006-11-10 01:11:22.000000000 +0100
-@@ -158,7 +158,7 @@
- #define DIRECTORY_SEPARATOR ":"
- #endif
-
--#define MODMONO_SERVER_PATH MONO_PREFIX "/bin/mod-mono-server"
-+#define MODMONO_SERVER_PATH MONO_PREFIX "/bin/mod-mono-server2"
- #define WAPIDIR "/tmp"
- #define DOCUMENT_ROOT NULL
- #define APPCONFIG_FILE NULL
diff --git a/www-apache/mod_mono/mod_mono-1.2.4.ebuild b/www-apache/mod_mono/mod_mono-1.2.4.ebuild
deleted file mode 100644
index d08a8e053ffd..000000000000
--- a/www-apache/mod_mono/mod_mono-1.2.4.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# 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.2.4.ebuild,v 1.4 2007/09/21 20:55:57 hollow Exp $
-
-inherit apache-module eutils
-
-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.bz2"
-LICENSE="Apache-1.1"
-SLOT="0"
-IUSE="aspnet2 debug"
-
-DEPEND=">=dev-dotnet/xsp-${PV}"
-RDEPEND="${DEPEND}"
-
-APACHE2_MOD_FILE="${S}/src/.libs/${PN}.so"
-APACHE2_MOD_CONF="${PV}/70_${PN}"
-APACHE2_MOD_DEFINE="MONO"
-
-DOCFILES="AUTHORS ChangeLog COPYING INSTALL NEWS README"
-
-need_apache
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- use aspnet2 && epatch "${FILESDIR}/mono_auto_application_aspnet2.patch"
-}
-
-src_compile() {
- 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
-
- 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."
- elog ""
- elog "If you want mod_mono to handle AutoHosting requests using"
- elog "ASP.NET 2.0 engine, enable the aspnet2 USE flag."
-}
diff --git a/www-apache/mod_mono/mod_mono-1.2.6-r1.ebuild b/www-apache/mod_mono/mod_mono-1.2.6-r1.ebuild
deleted file mode 100644
index d29c9f1632e8..000000000000
--- a/www-apache/mod_mono/mod_mono-1.2.6-r1.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2008 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.2.6-r1.ebuild,v 1.1 2008/01/11 20:41:53 jurek Exp $
-
-inherit apache-module eutils
-
-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.bz2"
-LICENSE="Apache-1.1"
-SLOT="0"
-IUSE="aspnet2 debug"
-
-DEPEND=">=dev-dotnet/xsp-${PV}"
-RDEPEND="${DEPEND}"
-
-APACHE2_MOD_FILE="${S}/src/.libs/${PN}.so"
-APACHE2_MOD_CONF="${PV}/70_${PN}"
-APACHE2_MOD_DEFINE="MONO"
-
-DOCFILES="AUTHORS ChangeLog COPYING INSTALL NEWS README"
-
-need_apache
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- use aspnet2 && epatch "${FILESDIR}/mono_auto_application_aspnet2.patch"
-}
-
-src_compile() {
- 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
-
- 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."
- elog ""
- elog "If you want mod_mono to handle AutoHosting requests using"
- elog "ASP.NET 2.0 engine, enable the aspnet2 USE flag."
-}
diff --git a/www-apache/mod_mono/mod_mono-2.0.9999.ebuild b/www-apache/mod_mono/mod_mono-2.0.9999.ebuild
deleted file mode 100644
index 485e67bb4f6b..000000000000
--- a/www-apache/mod_mono/mod_mono-2.0.9999.ebuild
+++ /dev/null
@@ -1,67 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_mono/mod_mono-2.0.9999.ebuild,v 1.2 2009/06/09 21:16:53 loki_val Exp $
-
-EAPI=2
-
-# DRAGONS: Watch the order of these.
-
-inherit apache-module multilib eutils go-mono mono
-
-KEYWORDS=""
-
-DESCRIPTION="Apache module for Mono."
-HOMEPAGE="http://www.go-mono.com/"
-LICENSE="Apache-2.0"
-SLOT="0"
-IUSE="aspnet2 debug"
-
-DEPEND="=dev-dotnet/xsp-${GO_MONO_REL_PV}*"
-RDEPEND="${DEPEND}"
-
-APACHE2_MOD_CONF="2.2/70_${PN}"
-APACHE2_MOD_DEFINE="MONO"
-
-DOCFILES="AUTHORS ChangeLog COPYING INSTALL NEWS README"
-
-need_apache2
-
-src_prepare() {
- sed -i -e 's:PKG_PATH:CONFIG_PATH_SAVE:' configure.in || die
- sed -e "s:@LIBDIR@:$(get_libdir):" "${FILESDIR}/${APACHE2_MOD_CONF}.conf" \
- > "${WORKDIR}/${APACHE2_MOD_CONF##*/}.conf" || die
- go-mono_src_prepare
- use aspnet2 && epatch "${FILESDIR}/mono_auto_application_aspnet2.patch"
-}
-
-src_configure() {
- export LIBS="$(pkg-config --libs apr-1)"
- go-mono_src_configure \
- $(use_enable debug) \
- --with-apxs="${APXS}" \
- --with-apr-config="/usr/bin/apr-1-config" \
- --with-apu-config="/usr/bin/apu-1-config" \
- || die "econf failed"
-}
-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."
- elog ""
- elog "If you want mod_mono to handle AutoHosting requests using"
- elog "ASP.NET 2.0 engine, enable the aspnet2 USE flag."
-}
diff --git a/www-apache/mod_mono/mod_mono-2.0.ebuild b/www-apache/mod_mono/mod_mono-2.0.ebuild
deleted file mode 100644
index 7320425cee21..000000000000
--- a/www-apache/mod_mono/mod_mono-2.0.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_mono/mod_mono-2.0.ebuild,v 1.3 2009/04/04 14:15:29 maekke Exp $
-
-inherit apache-module eutils
-
-KEYWORDS="amd64 ppc x86"
-
-DESCRIPTION="Apache module for Mono."
-HOMEPAGE="http://www.go-mono.com/"
-SRC_URI="http://ftp.novell.com/pub/mono/sources/mod_mono/${P}.tar.bz2"
-LICENSE="Apache-1.1"
-SLOT="0"
-IUSE="aspnet2 debug"
-
-DEPEND=">=dev-dotnet/xsp-${PV}"
-RDEPEND="${DEPEND}"
-
-APACHE2_MOD_FILE="${S}/src/.libs/${PN}.so"
-APACHE2_MOD_CONF="1.9/70_${PN}"
-APACHE2_MOD_DEFINE="MONO"
-
-DOCFILES="AUTHORS ChangeLog COPYING INSTALL NEWS README"
-
-need_apache
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- use aspnet2 && epatch "${FILESDIR}/mono_auto_application_aspnet2.patch"
-}
-
-src_compile() {
- 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
-
- 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."
- elog ""
- elog "If you want mod_mono to handle AutoHosting requests using"
- elog "ASP.NET 2.0 engine, enable the aspnet2 USE flag."
-}
diff --git a/www-apache/mod_mono/mod_mono-2.4.2.ebuild b/www-apache/mod_mono/mod_mono-2.4.2.ebuild
deleted file mode 100644
index 3c4875f299fc..000000000000
--- a/www-apache/mod_mono/mod_mono-2.4.2.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_mono/mod_mono-2.4.2.ebuild,v 1.3 2009/09/27 17:03:13 nixnut Exp $
-
-EAPI=2
-
-# DRAGONS: Watch the order of these.
-
-inherit apache-module multilib eutils go-mono mono
-
-KEYWORDS="amd64 ppc x86"
-
-DESCRIPTION="Apache module for Mono."
-HOMEPAGE="http://www.go-mono.com/"
-LICENSE="Apache-2.0"
-SLOT="0"
-IUSE="aspnet2 debug"
-
-DEPEND="=dev-dotnet/xsp-${GO_MONO_REL_PV}*"
-RDEPEND="${DEPEND}"
-
-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
- go-mono_src_prepare
- use aspnet2 && epatch "${FILESDIR}/mono_auto_application_aspnet2.patch"
-}
-
-src_configure() {
- export LIBS="$(pkg-config --libs apr-1)"
- go-mono_src_configure \
- $(use_enable debug) \
- --with-apxs="${APXS}" \
- --with-apr-config="/usr/bin/apr-1-config" \
- --with-apu-config="/usr/bin/apu-1-config" \
- || die "econf failed"
-}
-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."
- elog ""
- elog "If you want mod_mono to handle AutoHosting requests using"
- elog "ASP.NET 2.0 engine, enable the aspnet2 USE flag."
-}
diff --git a/www-apache/mod_mono/mod_mono-2.4.9999.ebuild b/www-apache/mod_mono/mod_mono-2.4.9999.ebuild
deleted file mode 100644
index 9877ec7854bb..000000000000
--- a/www-apache/mod_mono/mod_mono-2.4.9999.ebuild
+++ /dev/null
@@ -1,67 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_mono/mod_mono-2.4.9999.ebuild,v 1.2 2009/06/09 21:16:53 loki_val Exp $
-
-EAPI=2
-
-# DRAGONS: Watch the order of these.
-
-inherit apache-module multilib eutils go-mono mono
-
-KEYWORDS=""
-
-DESCRIPTION="Apache module for Mono."
-HOMEPAGE="http://www.go-mono.com/"
-LICENSE="Apache-2.0"
-SLOT="0"
-IUSE="aspnet2 debug"
-
-DEPEND="=dev-dotnet/xsp-${GO_MONO_REL_PV}*"
-RDEPEND="${DEPEND}"
-
-APACHE2_MOD_CONF="2.2/70_${PN}"
-APACHE2_MOD_DEFINE="MONO"
-
-DOCFILES="AUTHORS ChangeLog COPYING INSTALL NEWS README"
-
-need_apache2
-
-src_prepare() {
- sed -i -e 's:PKG_PATH:CONFIG_PATH_SAVE:' configure.in || die
- sed -e "s:@LIBDIR@:$(get_libdir):" "${FILESDIR}/${APACHE2_MOD_CONF}.conf" \
- > "${WORKDIR}/${APACHE2_MOD_CONF##*/}.conf" || die
- go-mono_src_prepare
- use aspnet2 && epatch "${FILESDIR}/mono_auto_application_aspnet2.patch"
-}
-
-src_configure() {
- export LIBS="$(pkg-config --libs apr-1)"
- go-mono_src_configure \
- $(use_enable debug) \
- --with-apxs="${APXS}" \
- --with-apr-config="/usr/bin/apr-1-config" \
- --with-apu-config="/usr/bin/apu-1-config" \
- || die "econf failed"
-}
-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."
- elog ""
- elog "If you want mod_mono to handle AutoHosting requests using"
- elog "ASP.NET 2.0 engine, enable the aspnet2 USE flag."
-}