summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2010-10-07 20:05:16 +0000
committerPacho Ramos <pacho@gentoo.org>2010-10-07 20:05:16 +0000
commitfd5257473d54fc5951d01a1ed6c4ba9493a2c7f5 (patch)
tree6f557d6890b1f3ad7ce6e4a7ca089dc7f55b42bd /dev-dotnet/pe-format
parentppc64 stable wrt #324077 (diff)
downloadhistorical-fd5257473d54fc5951d01a1ed6c4ba9493a2c7f5.tar.gz
historical-fd5257473d54fc5951d01a1ed6c4ba9493a2c7f5.tar.bz2
historical-fd5257473d54fc5951d01a1ed6c4ba9493a2c7f5.zip
Remove old.
Package-Manager: portage-2.1.8.3/cvs/Linux x86_64
Diffstat (limited to 'dev-dotnet/pe-format')
-rw-r--r--dev-dotnet/pe-format/ChangeLog6
-rw-r--r--dev-dotnet/pe-format/files/pe-format.init49
-rw-r--r--dev-dotnet/pe-format/pe-format-0.ebuild35
3 files changed, 5 insertions, 85 deletions
diff --git a/dev-dotnet/pe-format/ChangeLog b/dev-dotnet/pe-format/ChangeLog
index b55ffc0cf680..6edf15e2bb69 100644
--- a/dev-dotnet/pe-format/ChangeLog
+++ b/dev-dotnet/pe-format/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-dotnet/pe-format
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/pe-format/ChangeLog,v 1.18 2010/10/05 16:24:49 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/pe-format/ChangeLog,v 1.19 2010/10/07 19:57:13 pacho Exp $
+
+ 07 Oct 2010; Pacho Ramos <pacho@gentoo.org> -pe-format-0.ebuild,
+ -files/pe-format.init:
+ Remove old.
05 Oct 2010; Michał Górny <mgorny@gentoo.org> metadata.xml:
Update the maintainer information.
diff --git a/dev-dotnet/pe-format/files/pe-format.init b/dev-dotnet/pe-format/files/pe-format.init
deleted file mode 100644
index 86aff1e7b232..000000000000
--- a/dev-dotnet/pe-format/files/pe-format.init
+++ /dev/null
@@ -1,49 +0,0 @@
-#!/sbin/runscript
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/pe-format/files/pe-format.init,v 1.2 2007/03/23 17:01:09 compnerd Exp $
-
-start() {
- ebegin "Registering PE binaries with ${CLR}"
-
- if [[ ! -d /proc/sys/fs/binfmt_misc ]] ; then
- eerror "You need support for \"misc binaries\" in your kernel!"
- eend 1
- fi
-
- if [[ $(mount | grep -c binfmt_misc) -eq 0 ]] ; then
- mount -t binfmt_misc binfmt_misc /proc/sys/fs/binfmt_misc &> /dev/null
- local result=$?
-
- if [[ $result -ne 0 ]] ; then
- eend $result
- fi
- fi
-
- case "${CLR}" in
- mono)
- echo ':PE:M::MZ::/usr/bin/mono:' > /proc/sys/fs/binfmt_misc/register
- eend 0
- ;;
- ilrun)
- echo ':PE:M::MZ::/usr/bin/ilrun:' > /proc/sys/fs/binfmt_misc/register
- eend 0
- ;;
- *)
- eerror 'Please enter a valid option in /etc/conf.d/pe-format'
- eend 1
- ;;
- esac
-}
-
-stop() {
- ebegin "Unregistering PE binaries"
-
- if [[ -f /proc/sys/fs/binfmt_misc/PE ]] ; then
- echo '-1' > /proc/sys/fs/binfmt_misc/PE
- fi
-
- eend $?
-}
-
-# vim: ts=4 :
diff --git a/dev-dotnet/pe-format/pe-format-0.ebuild b/dev-dotnet/pe-format/pe-format-0.ebuild
deleted file mode 100644
index 908c2046d6d9..000000000000
--- a/dev-dotnet/pe-format/pe-format-0.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/pe-format/pe-format-0.ebuild,v 1.10 2009/03/20 23:14:50 jmbsvicetto Exp $
-
-inherit eutils
-
-DESCRIPTION="PE Format binfmt_misc entry"
-HOMEPAGE="http://www.kernel.org/"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc ~sparc x86 ~x86-fbsd"
-IUSE=""
-
-RDEPEND="|| ( dev-lang/mono dev-dotnet/pnet )"
-
-src_compile() {
- true;
-}
-
-src_install() {
- newinitd "${FILESDIR}/pe-format.init" pe-format || die "failed to install init script"
- newconfd "${FILESDIR}/pe-format.conf" pe-format || die "failed to install config"
-}
-
-pkg_postinst() {
- ebeep 5
-
- einfo
- ewarn "Using this script will confuse applications which are designed to use PE"
- ewarn "applications such as Wine and Cedega."
- einfo
-
- epause 5
-}