diff options
author | Marinus Schraal <foser@gentoo.org> | 2003-03-06 22:16:55 +0000 |
---|---|---|
committer | Marinus Schraal <foser@gentoo.org> | 2003-03-06 22:16:55 +0000 |
commit | f204f8117d902578abf5c179b48062dfd80b650a (patch) | |
tree | 2bec43d934656fce39a4013478bbc5cc47c02891 /dev-lang | |
parent | fix libnetpbm.so symlink not installing (diff) | |
download | historical-f204f8117d902578abf5c179b48062dfd80b650a.tar.gz historical-f204f8117d902578abf5c179b48062dfd80b650a.tar.bz2 historical-f204f8117d902578abf5c179b48062dfd80b650a.zip |
new version
Diffstat (limited to 'dev-lang')
-rw-r--r-- | dev-lang/mono/ChangeLog | 7 | ||||
-rw-r--r-- | dev-lang/mono/files/digest-mono-0.22 | 2 | ||||
-rw-r--r-- | dev-lang/mono/mono-0.22.ebuild | 62 |
3 files changed, 70 insertions, 1 deletions
diff --git a/dev-lang/mono/ChangeLog b/dev-lang/mono/ChangeLog index 533934923b12..4d1d8a0ea5d8 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.16 2003/02/28 13:49:52 foser Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/mono/ChangeLog,v 1.17 2003/03/06 22:16:55 foser Exp $ + +*mono-0.22 (06 Mar 2003) + + 06 Mar 2003; foser <foser@gentoo.org> mono-0.22.ebuild : + New version *mono-0.21 (28 Feb 2003) diff --git a/dev-lang/mono/files/digest-mono-0.22 b/dev-lang/mono/files/digest-mono-0.22 new file mode 100644 index 000000000000..f9f3c089ba54 --- /dev/null +++ b/dev-lang/mono/files/digest-mono-0.22 @@ -0,0 +1,2 @@ +MD5 ba2af91f7583414244e69a8c64ed3e1d mono-0.22.tar.gz 3418785 +MD5 db361c1e3bc48a447d3ed84f040cf1ee mcs-0.22.tar.gz 6643052 diff --git a/dev-lang/mono/mono-0.22.ebuild b/dev-lang/mono/mono-0.22.ebuild new file mode 100644 index 000000000000..953ca8f0b214 --- /dev/null +++ b/dev-lang/mono/mono-0.22.ebuild @@ -0,0 +1,62 @@ +# 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.22.ebuild,v 1.1 2003/03/06 22:16:55 foser Exp $ + +inherit eutils mono + +# they forgot PV in 0.22 mcs release doh :/ +#MCS_P="mcs-${PV}" +MCS_P="mcs" +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}-${PV}.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 +} |