summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJurek Bartuszek <jurek@gentoo.org>2007-11-16 17:53:45 +0000
committerJurek Bartuszek <jurek@gentoo.org>2007-11-16 17:53:45 +0000
commit076250dd622b0bdfd0b72e4c75c30ab110a53a94 (patch)
tree37be2cc61f4dcc1212e2a8d447cd7edf26dbbd2d /dev-dotnet/pnet/pnet-0.6.12.ebuild
parentamd64 stable wrt #199322 (diff)
downloadgentoo-2-076250dd622b0bdfd0b72e4c75c30ab110a53a94.tar.gz
gentoo-2-076250dd622b0bdfd0b72e4c75c30ab110a53a94.tar.bz2
gentoo-2-076250dd622b0bdfd0b72e4c75c30ab110a53a94.zip
dev-dotnet/pnet: Removing conflicting versions (bug #189497)
(Portage version: 2.1.3.19)
Diffstat (limited to 'dev-dotnet/pnet/pnet-0.6.12.ebuild')
-rw-r--r--dev-dotnet/pnet/pnet-0.6.12.ebuild62
1 files changed, 0 insertions, 62 deletions
diff --git a/dev-dotnet/pnet/pnet-0.6.12.ebuild b/dev-dotnet/pnet/pnet-0.6.12.ebuild
deleted file mode 100644
index 9ce71902fe94..000000000000
--- a/dev-dotnet/pnet/pnet-0.6.12.ebuild
+++ /dev/null
@@ -1,62 +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.6.12.ebuild,v 1.11 2007/10/09 14:33:46 corsair Exp $
-
-DESCRIPTION="Portable.NET runtime, compiler, tools"
-HOMEPAGE="http://www.dotgnu.org/"
-SRC_URI="mirror://gnu/dotgnu/pnet/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 arm hppa ia64 ppc x86"
-IUSE=""
-
-DEPEND=">=dev-util/treecc-0.3.0"
-
-src_unpack() {
- unpack ${A}
- cd ${S}
- # Fix symlink for renamed executables
- 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
-}
-
-src_compile() {
- ./auto_gen.sh
- econf || die
- emake || die
-}
-
-src_install() {
- make DESTDIR="${D}" install || die
-
- # Rename file names conflicting with dev-lang/mono
- # This should be removed again once we have 'dotnet-config'
- # bug 39369
- 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 INSTALL NEWS README
- dodoc doc/gtk-sharp.HOWTO
- dohtml doc/*.html
-
- # init script
- exeinto /etc/init.d ; newexe ${FILESDIR}/dotnet.init dotnet
- insinto /etc/conf.d ; newins ${FILESDIR}/dotnet.conf dotnet
-}
-
-pkg_postinst() {
- echo
- elog "If you want to avoid typing '<runtime> program.exe'"
- elog "you can configure your runtime in /etc/conf.d/dotnet"
- elog "Use /etc/init.d/dotnet to register your runtime"
- echo
- elog "dev-dotnet/pnet is only the runtime, compiler and tools"
- elog "for DotGNU Portable.NET."
- elog "For running and developing applications that use .NET APIs"
- elog "you will also need to install the library: dev-dotnet/pnetlib"
- echo
-}