diff options
author | Todd Berman <tberman@gentoo.org> | 2004-03-20 03:51:13 +0000 |
---|---|---|
committer | Todd Berman <tberman@gentoo.org> | 2004-03-20 03:51:13 +0000 |
commit | b3226695fba911059a2c121e6ac09226cf063640 (patch) | |
tree | caf1c8c95f865da6dad3f78fe775bafd877525cd /dev-dotnet | |
parent | version bump (bug #45171) (Manifest recommit) (diff) | |
download | gentoo-2-b3226695fba911059a2c121e6ac09226cf063640.tar.gz gentoo-2-b3226695fba911059a2c121e6ac09226cf063640.tar.bz2 gentoo-2-b3226695fba911059a2c121e6ac09226cf063640.zip |
version bump
Diffstat (limited to 'dev-dotnet')
-rw-r--r-- | dev-dotnet/mono/ChangeLog | 7 | ||||
-rw-r--r-- | dev-dotnet/mono/Manifest | 2 | ||||
-rw-r--r-- | dev-dotnet/mono/files/digest-mono-0.31 | 2 | ||||
-rw-r--r-- | dev-dotnet/mono/mono-0.31.ebuild | 96 |
4 files changed, 106 insertions, 1 deletions
diff --git a/dev-dotnet/mono/ChangeLog b/dev-dotnet/mono/ChangeLog index 1a435e1d5d1d..41d3414b4b25 100644 --- a/dev-dotnet/mono/ChangeLog +++ b/dev-dotnet/mono/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-dotnet/mono # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/mono/ChangeLog,v 1.8 2004/02/14 21:54:00 tberman Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/mono/ChangeLog,v 1.9 2004/03/20 03:51:13 tberman Exp $ + +*mono-0.31 (19 Mar 2004) + + 19 Mar 2004; Todd Berman <tberman@gentoo.org> mono-0.31.ebuild: + version bump *mono-0.30.1 (14 Feb 2004) diff --git a/dev-dotnet/mono/Manifest b/dev-dotnet/mono/Manifest index cce6ccfe74e4..e36ef9a9c81c 100644 --- a/dev-dotnet/mono/Manifest +++ b/dev-dotnet/mono/Manifest @@ -1,3 +1,4 @@ +MD5 8ce71ca15dbbd173846def50c18b2d78 mono-0.31.ebuild 2459 MD5 a7092b6a643cf8f05cd72ba9e045ae99 ChangeLog 6228 MD5 76b314cc7b7b79b298dd4889dff8c9cd metadata.xml 159 MD5 4ed40c8ac46ebc2bb8a70d1103c3dbbd mono-0.30.1.ebuild 2459 @@ -8,3 +9,4 @@ MD5 33b073ed2746ffc3552b2c68a2215b56 files/digest-mono-0.30.1 127 MD5 43da8709d0752a2ef9f9dfb050a05d9f files/digest-mono-0.28 123 MD5 518023a50bb285d0758ed7562a6af8a8 files/dotnet.conf 582 MD5 b3f7f4df1a4f76aa99c3f1e95c83fe4f files/dotnet.init 1043 +MD5 e7d95f62bf18430aa812b1a501c2e485 files/digest-mono-0.31 124 diff --git a/dev-dotnet/mono/files/digest-mono-0.31 b/dev-dotnet/mono/files/digest-mono-0.31 new file mode 100644 index 000000000000..8206b89fd5e3 --- /dev/null +++ b/dev-dotnet/mono/files/digest-mono-0.31 @@ -0,0 +1,2 @@ +MD5 d8d997fc7a2a5b95becf34352270bbbe mono-0.31.tar.gz 10098314 +MD5 abfca065428cee064d8631570f71c5ce mcs-0.31.tar.gz 8536907 diff --git a/dev-dotnet/mono/mono-0.31.ebuild b/dev-dotnet/mono/mono-0.31.ebuild new file mode 100644 index 000000000000..adc085daa4fe --- /dev/null +++ b/dev-dotnet/mono/mono-0.31.ebuild @@ -0,0 +1,96 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/mono/mono-0.31.ebuild,v 1.1 2004/03/20 03:51:13 tberman Exp $ + +inherit mono flag-o-matic + +strip-flags + +MCS_P="mcs-${PV}" +MCS_S=${WORKDIR}/${MCS_P} + +IUSE="" +DESCRIPTION="Mono runtime and class libraries, 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="GPL-2 | LGPL-2 | X11" +SLOT="0" + +KEYWORDS="~x86 -ppc" + +DEPEND="virtual/glibc + >=dev-libs/glib-2.0 + >=dev-libs/icu-2.6 + !dev-dotnet/pnet" + +RDEPEND="${DEPEND} + dev-util/pkgconfig + dev-libs/libxml2" + +src_unpack() { + unpack ${A} + + # add our own little in-place mcs script + echo "${S}/mono/mini/mono ${S}/runtime/mcs.exe \"\$@\" " > ${S}/runtime/mcs + chmod +x ${S}/runtime/mcs + + echo "${S}/mono/mini/mono ${S}/runtime/monoresgen.exe \"\$@\" " > ${S}/runtime/monoresgen + chmod +x ${S}/runtime/monoresgen + + PATH="${S}/runtime:${PATH}" + export PATH +} + +src_compile() { + econf || die + MAKEOPTS="${MAKEOPTS} -j1" emake || die "MONO compilation failure" + + ln -s ../runtime ${WORKDIR}/${P}/runtime/lib + cd ${MCS_S} + echo "prefix=${S}/runtime" > build/config.make + echo "MONO_PATH=${S}/runtime" >> build/config.make + echo "BOOTSTRAP_MCS=${S}/runtime/mcs" >> build/config.make + echo "RUNTIME=${S}/mono/mini/mono \${RUNTIME_FLAGS}" >> build/config.make + echo "PATH=${S}/runtime:${PATH}" >> build/config.make + echo "export PATH" >> build/config.make + echo "export MONO_PATH" >> build/config.make + make || die "MCS compilation failure" + echo "prefix=/usr" >> build/config.make +} + +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 + + # install mono's logo + insopts -m0644 + insinto /usr/share/pixmaps/mono + doins MonoIcon.png ScalableMonoIcon.svg + + docinto mcs + dodoc AUTHORS COPYING README* ChangeLog INSTALL.txt + docinto mcs/docs + dodoc docs/*.txt + + # init script + exeinto /etc/init.d ; newexe ${FILESDIR}/dotnet.init dotnet + insinto /etc/conf.d ; newins ${FILESDIR}/dotnet.conf dotnet +} + +pkg_postinst() { + echo + einfo "If you want to avoid typing '<runtime> program.exe'" + einfo "you can configure your runtime in /etc/conf.d/dotnet" + einfo "Use /etc/init.d/dotnet to register your runtime" + echo +} |