summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Johanson <latexer@gentoo.org>2004-06-28 00:59:23 +0000
committerPeter Johanson <latexer@gentoo.org>2004-06-28 00:59:23 +0000
commit0e4a37765c210baeb419d2cb24f590ffb2771cad (patch)
tree24d49aeda1c3a75de36f62ab872bbe0347c98f7f /net-www
parentRelease candidate goodness. (diff)
downloadhistorical-0e4a37765c210baeb419d2cb24f590ffb2771cad.tar.gz
historical-0e4a37765c210baeb419d2cb24f590ffb2771cad.tar.bz2
historical-0e4a37765c210baeb419d2cb24f590ffb2771cad.zip
Release candidate goodness.
Diffstat (limited to 'net-www')
-rw-r--r--net-www/mod_mono/ChangeLog7
-rw-r--r--net-www/mod_mono/Manifest4
-rw-r--r--net-www/mod_mono/files/digest-mod_mono-0.131
-rw-r--r--net-www/mod_mono/mod_mono-0.13.ebuild41
4 files changed, 51 insertions, 2 deletions
diff --git a/net-www/mod_mono/ChangeLog b/net-www/mod_mono/ChangeLog
index 6f947cdaef9d..e2ec7b05b991 100644
--- a/net-www/mod_mono/ChangeLog
+++ b/net-www/mod_mono/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for net-www/mod_mono
# Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-www/mod_mono/ChangeLog,v 1.6 2004/06/25 01:02:54 agriffis Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-www/mod_mono/ChangeLog,v 1.7 2004/06/28 00:59:23 latexer Exp $
+
+*mod_mono-0.13 (27 Jun 2004)
+
+ 27 Jun 2004; Peter Johanson <latexer@gentoo.org> +mod_mono-0.13.ebuild:
+ Release candidate goodness.
*mod_mono-0.11 (17 Jun 2004)
diff --git a/net-www/mod_mono/Manifest b/net-www/mod_mono/Manifest
index d1c3109bf456..83a8d6878a4f 100644
--- a/net-www/mod_mono/Manifest
+++ b/net-www/mod_mono/Manifest
@@ -1,9 +1,11 @@
MD5 b142188aac5bc4bd7a3280d808161db4 mod_mono-0.11.ebuild 1102
+MD5 69fcab482c03b54c0bed4a571f06b556 mod_mono-0.13.ebuild 1098
MD5 f659f99325ce5ed157ce3579f4f61b37 mod_mono-0.8.ebuild 1100
MD5 b5e5d3a345a70d9a53eb53744d1e2e4c mod_mono-0.10.ebuild 1102
-MD5 abbc3bdcb06c983aa879db1dbe552171 ChangeLog 833
+MD5 425da7c375b4bdc464f7e2d3088e0251 ChangeLog 967
MD5 d2da0e45d7e39184d1cb7abbe3879086 metadata.xml 159
MD5 a5bf0eeb1a034acf784237d11f9625ac files/digest-mod_mono-0.10 65
MD5 219db881fbae54131289c5b7e3dae626 files/digest-mod_mono-0.11 65
+MD5 7e93bd19f91806e676e47eab10671bfe files/digest-mod_mono-0.13 65
MD5 be67d42abf306926f0fdd150c7291edc files/70_mod_mono.conf 617
MD5 b1de52fcbd031b062c677cc5a249d2f3 files/digest-mod_mono-0.8 64
diff --git a/net-www/mod_mono/files/digest-mod_mono-0.13 b/net-www/mod_mono/files/digest-mod_mono-0.13
new file mode 100644
index 000000000000..d56ffd597efc
--- /dev/null
+++ b/net-www/mod_mono/files/digest-mod_mono-0.13
@@ -0,0 +1 @@
+MD5 a86f289aabb554523d909209b0261f61 mod_mono-0.13.tar.gz 214257
diff --git a/net-www/mod_mono/mod_mono-0.13.ebuild b/net-www/mod_mono/mod_mono-0.13.ebuild
new file mode 100644
index 000000000000..26ebb405889f
--- /dev/null
+++ b/net-www/mod_mono/mod_mono-0.13.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2004 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-www/mod_mono/mod_mono-0.13.ebuild,v 1.1 2004/06/28 00:59:23 latexer Exp $
+
+DESCRIPTION="Apache module for Mono"
+HOMEPAGE="http://www.go-mono.com/"
+SRC_URI="http://www.go-mono.com/archive/rc/${P}.tar.gz"
+LICENSE="Apache-1.1"
+SLOT="0"
+KEYWORDS="~x86"
+IUSE="apache2"
+DEPEND=">=dev-dotnet/mono-0.30
+ =net-www/apache-2*
+ >=dev-dotnet/xsp-0.15"
+
+RDEPEND=""
+
+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() {
+ 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"
+}
+