diff options
author | Saleem Abdulrasool <compnerd@gentoo.org> | 2006-12-07 02:18:27 +0000 |
---|---|---|
committer | Saleem Abdulrasool <compnerd@gentoo.org> | 2006-12-07 02:18:27 +0000 |
commit | 07895c0bdfb222f39f6f657f8fa246ae023904ed (patch) | |
tree | ca38fd87ecc1e360dfc50372b033e61ac4da67e9 /dev-lang | |
parent | Pruned old versions with new versions with same or better keywords. (diff) | |
download | gentoo-2-07895c0bdfb222f39f6f657f8fa246ae023904ed.tar.gz gentoo-2-07895c0bdfb222f39f6f657f8fa246ae023904ed.tar.bz2 gentoo-2-07895c0bdfb222f39f6f657f8fa246ae023904ed.zip |
version bump from upstream
(Portage version: 2.1.2_rc2-r5)
Diffstat (limited to 'dev-lang')
-rw-r--r-- | dev-lang/mono/ChangeLog | 8 | ||||
-rw-r--r-- | dev-lang/mono/files/digest-mono-1.2.2.1 | 3 | ||||
-rw-r--r-- | dev-lang/mono/mono-1.2.2.1.ebuild | 101 |
3 files changed, 111 insertions, 1 deletions
diff --git a/dev-lang/mono/ChangeLog b/dev-lang/mono/ChangeLog index 7c8a02fc4f30..5e023c5a96a4 100644 --- a/dev-lang/mono/ChangeLog +++ b/dev-lang/mono/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-lang/mono # Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/mono/ChangeLog,v 1.98 2006/11/24 23:40:40 latexer Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/mono/ChangeLog,v 1.99 2006/12/07 02:18:27 compnerd Exp $ + +*mono-1.2.2.1 (07 Dec 2006) + + 07 Dec 2006; Saleem Abdulrasool <compnerd@gentoo.org> + +mono-1.2.2.1.ebuild: + Version bump from upstream *mono-1.2.1 (24 Nov 2006) diff --git a/dev-lang/mono/files/digest-mono-1.2.2.1 b/dev-lang/mono/files/digest-mono-1.2.2.1 new file mode 100644 index 000000000000..fac0f845ccbe --- /dev/null +++ b/dev-lang/mono/files/digest-mono-1.2.2.1 @@ -0,0 +1,3 @@ +MD5 b67ef657b83ca26249d7b9e9c5e7da69 mono-1.2.2.1.tar.gz 19979026 +RMD160 d55d5627bb3fe4b8c4e4640aecca32713cba3e7f mono-1.2.2.1.tar.gz 19979026 +SHA256 d68f597c303678c3f325f552a0e2780b613dbf34d093c2269c002127be4953e5 mono-1.2.2.1.tar.gz 19979026 diff --git a/dev-lang/mono/mono-1.2.2.1.ebuild b/dev-lang/mono/mono-1.2.2.1.ebuild new file mode 100644 index 000000000000..c797583a2ef2 --- /dev/null +++ b/dev-lang/mono/mono-1.2.2.1.ebuild @@ -0,0 +1,101 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/mono/mono-1.2.2.1.ebuild,v 1.1 2006/12/07 02:18:27 compnerd Exp $ + +inherit eutils flag-o-matic multilib autotools + +DESCRIPTION="Mono runtime and class libraries, a C# compiler/interpreter" +HOMEPAGE="http://www.go-mono.com" +SRC_URI="http://www.go-mono.com/sources/mono/${P}.tar.gz" + +LICENSE="|| ( GPL-2 LGPL-2 X11 )" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="X nptl" + +RDEPEND="!<dev-dotnet/pnet-0.6.12 + >=dev-libs/glib-2.6 + nptl? ( >=sys-devel/gcc-3.3.5-r1 ) + ppc? ( + >=sys-devel/gcc-3.2.3-r4 + >=sys-libs/glibc-2.3.3_pre20040420 + ) + X? ( >=dev-dotnet/libgdiplus-1.2.2 )" +DEPEND="${RDEPEND} + sys-devel/bc + >=dev-util/pkgconfig-0.19" + +# Parallel build unfriendly +MAKEOPTS="${MAKEOPTS} -j1" + +# confcache causes build errors +RESTRICT="confcache" + +function get-memory-total() { + cat /proc/meminfo | grep MemTotal | sed -r "s/[^0-9]*([[0-9]+).*/\1/" +} + +src_unpack() { + unpack ${A} + cd ${S} + + # Fix the install path, install into $(libdir) + sed -i -e 's:$(prefix)/lib:$(libdir):' \ + -i -e 's:$(exec_prefix)/lib:$(libdir):' \ + -i -e "s:'mono_libdir=\${exec_prefix}/lib':\"mono_libdir=\$libdir\":" \ + ${S}/{scripts,mono/metadata}/Makefile.am ${S}/configure.in \ + || die "sed failed" + + sed -i -e 's:^libdir.*:libdir=@libdir@:' \ + -i -e 's:${prefix}/lib/:${libdir}/:g' \ + ${S}/{scripts,}/*.pc.in \ + || die "sed failed" + + # Remove dummy ltconfig and let libtool handle it + rm -f ${S}/libgc/ltconfig + + eautoreconf +} + +src_compile() { + # mono's build system is finiky, strip the flags + strip-flags + + # Enable the 2.0 FX, use the system glib and the gc + local myconf="--with-preview=yes --with-glib=system --with-gc=included" + + # Threading support + if use amd64 ; then + # force __thread on amd64 (bug #83770) + myconf="${myconf} --with-tls=__thread" + else + if use nptl ; then + myconf="${myconf} --with-tls=__thread" + else + myconf="${myconf} --with-tls=pthread" + fi + fi + + # Enable large heaps if memory is more than >=3GB + if [[ $(get-memory-total) -ge 3145728 ]] ; then + myconf="${myconf} --with-large-heap=yes" + fi + + # Force the use of monolite mcs to prevent issues with classlibs (bug #118062) + touch ${S}/mcs/build/deps/use-monolite + + econf ${myconf} || die "configure failed" + emake || die "compile failed" +} + +src_install() { + emake DESTDIR=${D} install || die "install failed" + + dodoc AUTHORS ChangeLog NEWS README + + docinto docs + dodoc docs/* + + docinto libgc + dodoc libgc/ChangeLog +} |