summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarinus Schraal <foser@gentoo.org>2003-01-13 15:22:20 +0000
committerMarinus Schraal <foser@gentoo.org>2003-01-13 15:22:20 +0000
commita57fa183bb1c541e36f1ea8df5ae90459a7a6964 (patch)
treeba4c44ff9f88501999a27d3c17c0c50c9d6a52e3 /dev-lang/mono
parenttemp commit until get home to finish (diff)
downloadhistorical-a57fa183bb1c541e36f1ea8df5ae90459a7a6964.tar.gz
historical-a57fa183bb1c541e36f1ea8df5ae90459a7a6964.tar.bz2
historical-a57fa183bb1c541e36f1ea8df5ae90459a7a6964.zip
New version
Diffstat (limited to 'dev-lang/mono')
-rw-r--r--dev-lang/mono/ChangeLog7
-rw-r--r--dev-lang/mono/files/digest-mono-0.181
-rw-r--r--dev-lang/mono/mono-0.18.ebuild38
3 files changed, 45 insertions, 1 deletions
diff --git a/dev-lang/mono/ChangeLog b/dev-lang/mono/ChangeLog
index 510c2e6db0df..ef2550931cbb 100644
--- a/dev-lang/mono/ChangeLog
+++ b/dev-lang/mono/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for dev-lang/mono
# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/mono/ChangeLog,v 1.8 2002/12/10 15:06:16 foser Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/mono/ChangeLog,v 1.9 2003/01/13 15:22:20 foser Exp $
+
+*mono-0.18 (13 jan 2003)
+
+ 13 Jan 2003; foser <foser@gentoo.org> mono-0.18.ebuild :
+ New version
*mono-0.17 (10 Dec 2002)
diff --git a/dev-lang/mono/files/digest-mono-0.18 b/dev-lang/mono/files/digest-mono-0.18
new file mode 100644
index 000000000000..3ad0b45648be
--- /dev/null
+++ b/dev-lang/mono/files/digest-mono-0.18
@@ -0,0 +1 @@
+MD5 54f24ddd75ef1a71aa1516706b5870d3 mono-0.18.tar.gz 2957844
diff --git a/dev-lang/mono/mono-0.18.ebuild b/dev-lang/mono/mono-0.18.ebuild
new file mode 100644
index 000000000000..88c12c7b7e5c
--- /dev/null
+++ b/dev-lang/mono/mono-0.18.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2002 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License, v2 or later
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/mono/mono-0.18.ebuild,v 1.1 2003/01/13 15:22:20 foser Exp $
+
+#FIXME : we dont compile mcs from scratch right now
+
+S=${WORKDIR}/${P}
+
+IUSE=""
+DESCRIPTION="Mono runtime, a C# compiler/interpreter"
+SRC_URI="http://www.go-mono.com/archive/${P}.tar.gz"
+HOMEPAGE="http://www.go-mono.com/"
+
+LICENSE="GPL-2"
+SLOT="0"
+
+KEYWORDS="~x86 -ppc"
+
+DEPEND="virtual/glibc
+ >=dev-libs/glib-2.0
+ >=dev-libs/boehm-gc-6.1"
+
+RDEPEND="${DEPEND}
+ dev-util/pkgconfig"
+
+src_compile() {
+ econf || die
+
+ MAKEOPTS="-j1" emake || die
+}
+
+src_install () {
+ einstall || die
+
+ dodoc AUTHORS INSTALL ChangeLog COPYING.LIB NEWS README
+ docinto docs
+ dodoc docs/*
+}