summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Johanson <latexer@gentoo.org>2005-04-07 23:53:28 +0000
committerPeter Johanson <latexer@gentoo.org>2005-04-07 23:53:28 +0000
commit02be811214f969e27d8ba9dbee8ea93c2878bfd4 (patch)
treee56865b4218f0ecc647271599d8e0c3f73401247 /dev-lang
parentMarked ~amd64, closes bug 87438. (diff)
downloadgentoo-2-02be811214f969e27d8ba9dbee8ea93c2878bfd4.tar.gz
gentoo-2-02be811214f969e27d8ba9dbee8ea93c2878bfd4.tar.bz2
gentoo-2-02be811214f969e27d8ba9dbee8ea93c2878bfd4.zip
Remove the 1.0.4* mono ebuilds.
(Portage version: 2.0.51.19)
Diffstat (limited to 'dev-lang')
-rw-r--r--dev-lang/mono/ChangeLog6
-rw-r--r--dev-lang/mono/files/digest-mono-1.0.41
-rw-r--r--dev-lang/mono/files/digest-mono-1.0.4-r11
-rw-r--r--dev-lang/mono/mono-1.0.4-r1.ebuild82
-rw-r--r--dev-lang/mono/mono-1.0.4.ebuild62
5 files changed, 5 insertions, 147 deletions
diff --git a/dev-lang/mono/ChangeLog b/dev-lang/mono/ChangeLog
index 64ed9c388f2c..23582cc79257 100644
--- a/dev-lang/mono/ChangeLog
+++ b/dev-lang/mono/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-lang/mono
# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/mono/ChangeLog,v 1.38 2005/03/31 17:46:37 latexer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/mono/ChangeLog,v 1.39 2005/04/07 23:53:28 latexer Exp $
+
+ 07 Apr 2005; Peter Johanson <latexer@gentoo.org> -mono-1.0.4.ebuild,
+ -mono-1.0.4-r1.ebuild:
+ Remove the 1.0.4* mono ebuilds.
*mono-1.1.6 (31 Mar 2005)
diff --git a/dev-lang/mono/files/digest-mono-1.0.4 b/dev-lang/mono/files/digest-mono-1.0.4
deleted file mode 100644
index d1d747b3417a..000000000000
--- a/dev-lang/mono/files/digest-mono-1.0.4
+++ /dev/null
@@ -1 +0,0 @@
-MD5 272d26525bfa121ee19713051d5b3a01 mono-1.0.4.tar.gz 18452996
diff --git a/dev-lang/mono/files/digest-mono-1.0.4-r1 b/dev-lang/mono/files/digest-mono-1.0.4-r1
deleted file mode 100644
index d1d747b3417a..000000000000
--- a/dev-lang/mono/files/digest-mono-1.0.4-r1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 272d26525bfa121ee19713051d5b3a01 mono-1.0.4.tar.gz 18452996
diff --git a/dev-lang/mono/mono-1.0.4-r1.ebuild b/dev-lang/mono/mono-1.0.4-r1.ebuild
deleted file mode 100644
index defe71248a84..000000000000
--- a/dev-lang/mono/mono-1.0.4-r1.ebuild
+++ /dev/null
@@ -1,82 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/mono/mono-1.0.4-r1.ebuild,v 1.1 2005/03/11 03:14:01 latexer Exp $
-
-inherit eutils mono flag-o-matic debug gcc
-
-DESCRIPTION="Mono runtime and class libraries, a C# compiler/interpreter"
-HOMEPAGE="http://www.go-mono.com/"
-SRC_URI="http://www.go-mono.com/archive/${PV}/${P}.tar.gz"
-
-LICENSE="|| ( GPL-2 LGPL-2 X11)"
-SLOT="0"
-KEYWORDS="~x86 ~ppc ~amd64"
-IUSE="nptl"
-
-DEPEND="virtual/libc
- >=dev-libs/glib-2.0
- >=dev-libs/icu-2.6.1
- !<dev-dotnet/pnet-0.6.12
- nptl? ( >=sys-devel/gcc-3.4 )
- ppc? (
- >=sys-devel/gcc-3.2.3-r4
- >=sys-libs/glibc-2.3.3_pre20040420
- )"
-
-RDEPEND="${DEPEND}
- dev-util/pkgconfig
- dev-libs/libxml2"
-
-src_compile() {
- strip-flags
-
- local myconf=""
- if use nptl && have_NPTL
- then
- # NPTL support only works with gcc-3.4 and higher currently. ):
- if [ `gcc-minor-version` -lt 4 ]
- then
- echo
- eerror "NPTL enabled mono requires gcc-3.4 or higher to function."
- eerror "Please use gcc-config to select gcc-3.4 for the mono installation."
- die "gcc version not high enough for NPTL support."
- else
- myconf="${myconf} --with-tls=__thread"
- sed -i "s: -fexceptions::" ${S}/libgc/configure.host
- fi
- else
- if have_NPTL
- then
- ewarn "NPTL glibc detected, but nptl USE flag is not set."
- ewarn "This may cause some problems for mono as it will be"
- ewarn "compiled with normal pthread support."
- fi
-
- myconf="${myconf} --with-tls=pthread"
- fi
-
- econf ${myconf} || die
- emake -j1 || die "MONO compilation failure"
-}
-
-src_install() {
- make DESTDIR=${D} install || die
-
- dodoc AUTHORS ChangeLog NEWS README
- docinto docs
- dodoc docs/*
- docinto libgc
- dodoc libgc/ChangeLog
-
- # 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
-}
diff --git a/dev-lang/mono/mono-1.0.4.ebuild b/dev-lang/mono/mono-1.0.4.ebuild
deleted file mode 100644
index fd8ec8521250..000000000000
--- a/dev-lang/mono/mono-1.0.4.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/mono/mono-1.0.4.ebuild,v 1.2 2005/03/15 00:45:45 latexer Exp $
-
-inherit eutils mono flag-o-matic debug
-
-DESCRIPTION="Mono runtime and class libraries, a C# compiler/interpreter"
-HOMEPAGE="http://www.go-mono.com/"
-SRC_URI="http://www.go-mono.com/archive/${PV}/${P}.tar.gz"
-
-LICENSE="|| ( GPL-2 LGPL-2 X11)"
-SLOT="0"
-KEYWORDS="x86 ~ppc ~amd64"
-IUSE=""
-
-DEPEND="virtual/libc
- >=dev-libs/glib-2.0
- >=dev-libs/icu-2.6.1
- !<dev-dotnet/pnet-0.6.12
- ppc? (
- >=sys-devel/gcc-3.2.3-r4
- >=sys-libs/glibc-2.3.3_pre20040420
- )"
-RDEPEND="${DEPEND}
- dev-util/pkgconfig
- dev-libs/libxml2"
-
-src_compile() {
- strip-flags
-
- if have_NPTL
- then
- eerror "To use mono with an NPTL enabled glibc, please emerge"
- eerror "mono-${PV}-r1."
- die "NPTL glibc not support by this release"
- fi
-
- econf --with-tls=pthread || die
- emake -j1 || die "MONO compilation failure"
-}
-
-src_install() {
- make DESTDIR=${D} install || die
-
- dodoc AUTHORS ChangeLog NEWS README
- docinto docs
- dodoc docs/*
- docinto libgc
- dodoc libgc/ChangeLog
-
- # 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
-}