diff options
author | Marinus Schraal <foser@gentoo.org> | 2003-03-08 16:40:57 +0000 |
---|---|---|
committer | Marinus Schraal <foser@gentoo.org> | 2003-03-08 16:40:57 +0000 |
commit | 48f7ff52f60de753c58658b77af7525a6ca012d4 (patch) | |
tree | 2fbc6f85b753e32442445280ce0bce5e6390bab0 /dev-lang/mono | |
parent | initial commit (diff) | |
download | gentoo-2-48f7ff52f60de753c58658b77af7525a6ca012d4.tar.gz gentoo-2-48f7ff52f60de753c58658b77af7525a6ca012d4.tar.bz2 gentoo-2-48f7ff52f60de753c58658b77af7525a6ca012d4.zip |
new version
Diffstat (limited to 'dev-lang/mono')
-rw-r--r-- | dev-lang/mono/ChangeLog | 7 | ||||
-rw-r--r-- | dev-lang/mono/files/digest-mono-0.23 | 2 | ||||
-rw-r--r-- | dev-lang/mono/mono-0.23.ebuild | 60 |
3 files changed, 68 insertions, 1 deletions
diff --git a/dev-lang/mono/ChangeLog b/dev-lang/mono/ChangeLog index 4d1d8a0ea5d8..9aa8f6ceb290 100644 --- a/dev-lang/mono/ChangeLog +++ b/dev-lang/mono/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-lang/mono # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/mono/ChangeLog,v 1.17 2003/03/06 22:16:55 foser Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/mono/ChangeLog,v 1.18 2003/03/08 16:40:57 foser Exp $ + +*mono-0.23 (08 Mar 2003) + + 08 Mar 2003; foser <foser@gentoo.org> mono-0.23.ebuild : + New version *mono-0.22 (06 Mar 2003) diff --git a/dev-lang/mono/files/digest-mono-0.23 b/dev-lang/mono/files/digest-mono-0.23 new file mode 100644 index 000000000000..34c497d71a91 --- /dev/null +++ b/dev-lang/mono/files/digest-mono-0.23 @@ -0,0 +1,2 @@ +MD5 a3d65cde58a14e9f2353fa20fa492ab1 mono-0.23.tar.gz 3391671 +MD5 8eb7ca046bc969ae94841563ae6ef22d mcs-0.23.tar.gz 4318632 diff --git a/dev-lang/mono/mono-0.23.ebuild b/dev-lang/mono/mono-0.23.ebuild new file mode 100644 index 000000000000..b4b712877aae --- /dev/null +++ b/dev-lang/mono/mono-0.23.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2003 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.23.ebuild,v 1.1 2003/03/08 16:40:57 foser Exp $ + +inherit eutils mono + +MCS_P="mcs-${PV}" +MCS_S=${WORKDIR}/${MCS_P} + +IUSE="" +DESCRIPTION="Mono runtime and class librarier, a C# compiler/interpreter" +SRC_URI="http://www.go-mono.com/archive/${P}.tar.gz + http://www.go-mono.com/archive/${MCS_P}.tar.gz" +HOMEPAGE="http://www.go-mono.com/" + +LICENSE="LGPL-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_unpack() { + unpack ${A} + + # add our own little in-place mcs script + echo "${S}/mono/jit/mono ${S}/runtime/mcs.exe \"\$@\" " > ${S}/runtime/mcs + chmod +x ${S}/runtime/mcs +} + +src_compile() { + econf --with-gc=boehm || die + MAKEOPTS="-j1" emake || die "MONO compilation failure" + + cd ${MCS_S} + PATH=${PATH}:${S}/runtime:${S}/mono/jit MONO_PATH=${MONO_PATH}:${S}/runtime emake -f makefile.gnu || die "MCS compilation failure" +} + +src_install () { + cd ${S} + einstall || die + + dodoc AUTHORS ChangeLog COPYING.LIB NEWS README + docinto docs + dodoc docs/* + + # now install our own compiled dlls + cd ${MCS_S} + einstall || die + + docinto mcs + dodoc AUTHORS COPYING README* ChangeLog INSTALL.txt + docinto mcs/docs + dodoc docs/*.txt +} |