# Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # $Header:$ S=${WORKDIR}/${P} DESCRIPTION="The Mono Project is an open development initiative sponsored by Ximian that is working to develop an open source, Unix version of the Microsoft .NET development platform. This package contains the Mono runtime." SRC_URI="http://www.go-mono.com/archive/${P}.tar.gz" HOMEPAGE="http://www.go-mono.com/" LICENSE="GPL-2" SLOT="0" DEPEND="virtual/glibc dev-util/pkgconfig >=dev-libs/glib-2.0 >boehm-gc-6.0" RDEPEND="${DEPEND}" # only tested on x86, but should also work on ppc, please test #KEYWORDS="x86 ppc" KEYWORDS="x86" src_compile() { ./configure \ --prefix=/usr \ --mandir=/usr/share/man \ --infodir=/usr/share/info || die "!!! ./configure failed !!!" MAKEOPTS="-j1" emake || die } src_install () { make \ prefix=${D}/usr \ mandir=${D}/usr/share/man \ infodir=${D}/usr/share/info \ install || die touch ${D}/usr/include/${PN}/utils/.keep dodoc AUTHORS ChangeLog COPYING.LIB NEWS README docinto docs dodoc docs/embedded-api \ docs/exceptions \ docs/gc-issues \ docs/jit* \ docs/object-layout \ docs/stack-alignment \ docs/unmanaged-calls }