diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-06-29 14:39:24 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-06-29 14:39:24 +0000 |
commit | c17069edcc67cdf601b3987e1f2861ddc2cd94e5 (patch) | |
tree | 17dc65b46f39df78180b0dfcb8c2aadb0fdde31e /dev-dotnet/mono/mono-0.30.ebuild | |
parent | version bump (diff) | |
download | gentoo-2-c17069edcc67cdf601b3987e1f2861ddc2cd94e5.tar.gz gentoo-2-c17069edcc67cdf601b3987e1f2861ddc2cd94e5.tar.bz2 gentoo-2-c17069edcc67cdf601b3987e1f2861ddc2cd94e5.zip |
clean up things and change glibc to libc
Diffstat (limited to 'dev-dotnet/mono/mono-0.30.ebuild')
-rw-r--r-- | dev-dotnet/mono/mono-0.30.ebuild | 23 |
1 files changed, 10 insertions, 13 deletions
diff --git a/dev-dotnet/mono/mono-0.30.ebuild b/dev-dotnet/mono/mono-0.30.ebuild index 3e835e1841b3..311293a816d2 100644 --- a/dev-dotnet/mono/mono-0.30.ebuild +++ b/dev-dotnet/mono/mono-0.30.ebuild @@ -1,30 +1,26 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/mono/mono-0.30.ebuild,v 1.2 2004/06/24 22:04:25 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/mono/mono-0.30.ebuild,v 1.3 2004/06/29 14:37:57 vapier 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" +HOMEPAGE="http://www.go-mono.com/" 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" +IUSE="" -DEPEND="virtual/glibc +DEPEND="virtual/libc >=dev-libs/glib-2.0 >=dev-libs/icu-2.6 !dev-dotnet/pnet" - RDEPEND="${DEPEND} dev-util/pkgconfig dev-libs/libxml2" @@ -44,8 +40,10 @@ src_unpack() { } src_compile() { + strip-flags + econf || die - MAKEOPTS="${MAKEOPTS} -j1" emake || die "MONO compilation failure" + emake -j1 || die "MONO compilation failure" ln -s ../runtime ${WORKDIR}/${P}/runtime/lib cd ${MCS_S} @@ -60,11 +58,10 @@ src_compile() { echo "prefix=/usr" >> build/config.make } -src_install () { - cd ${S} +src_install() { einstall || die - dodoc AUTHORS ChangeLog COPYING.LIB NEWS README + dodoc AUTHORS ChangeLog NEWS README docinto docs dodoc docs/* @@ -78,7 +75,7 @@ src_install () { doins MonoIcon.png ScalableMonoIcon.svg docinto mcs - dodoc AUTHORS COPYING README* ChangeLog INSTALL.txt + dodoc AUTHORS README* ChangeLog INSTALL.txt docinto mcs/docs dodoc docs/*.txt |