summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-dotnet/pnet/pnet-0.7.4.ebuild')
-rw-r--r--dev-dotnet/pnet/pnet-0.7.4.ebuild45
1 files changed, 0 insertions, 45 deletions
diff --git a/dev-dotnet/pnet/pnet-0.7.4.ebuild b/dev-dotnet/pnet/pnet-0.7.4.ebuild
deleted file mode 100644
index 6ea5f24b9a4c..000000000000
--- a/dev-dotnet/pnet/pnet-0.7.4.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/pnet/pnet-0.7.4.ebuild,v 1.11 2007/10/09 14:33:46 corsair Exp $
-
-inherit autotools
-
-DESCRIPTION="Portable.NET runtime, compiler, tools"
-HOMEPAGE="http://www.dotgnu.org/"
-SRC_URI="http://www.southern-storm.com.au/download/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 arm hppa ia64 ppc x86"
-IUSE=""
-
-DEPEND=">=dev-util/treecc-0.3.0"
-RDEPEND="${DEPEND}"
-
-src_unpack() {
- unpack ${A}
- cd ${S}
-
- # Fix symlink for renamed executables ; Bug #39369
- # Renamed to avoid conflicting with dev-lang/mono
- # This should be removed again once we have 'dotnet-config'
- sed -i "s:ilasm.1.gz:ilasm.pnet.1.gz:" ilasm/Makefile.am
- sed -i "s:al.1.gz:al.pnet.1.gz:" ilasm/Makefile.am
-
- eautoreconf || die "eautoreconf failed"
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "emake install failed"
-
- # move fixes for the mono conflict
- mv ${D}/usr/bin/al ${D}/usr/bin/al.pnet
- mv ${D}/usr/bin/ilasm ${D}/usr/bin/ilasm.pnet
- mv ${D}/usr/bin/resgen ${D}/usr/bin/resgen.pnet
- mv ${D}/usr/share/man/man1/ilasm.1 ${D}/usr/share/man/man1/ilasm.pnet.1
- mv ${D}/usr/share/man/man1/resgen.1 ${D}/usr/share/man/man1/resgen.pnet.1
-
- dodoc AUTHORS ChangeLog HACKING NEWS README
- dodoc doc/gtk-sharp.HOWTO
- dohtml doc/*.html
-}