summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2016-02-09 16:45:16 +0100
committerMichał Górny <mgorny@gentoo.org>2016-02-09 18:13:15 +0100
commitaa2dac40ee028305787faf23e7db65cb8895bbc3 (patch)
treec48dfa888559a4e4f9850d0985f7e7ad70e6f535 /dev-dotnet
parentdev-lang/python-exec: Update install layout in -9999 (diff)
downloadgentoo-aa2dac40ee028305787faf23e7db65cb8895bbc3.tar.gz
gentoo-aa2dac40ee028305787faf23e7db65cb8895bbc3.tar.bz2
gentoo-aa2dac40ee028305787faf23e7db65cb8895bbc3.zip
dev-dotnet/pe-format: Remove obsolete files used by the old ebuild
Diffstat (limited to 'dev-dotnet')
-rw-r--r--dev-dotnet/pe-format/files/pe-format.conf11
-rw-r--r--dev-dotnet/pe-format/files/pe-format.init-153
2 files changed, 0 insertions, 64 deletions
diff --git a/dev-dotnet/pe-format/files/pe-format.conf b/dev-dotnet/pe-format/files/pe-format.conf
deleted file mode 100644
index b432728b0869..000000000000
--- a/dev-dotnet/pe-format/files/pe-format.conf
+++ /dev/null
@@ -1,11 +0,0 @@
-# /etc/conf.d/pe-format
-
-# Define what to register with PE binaries so you can avoid running them with
-# "<.NET runtime> program.exe"
-# NOTE: In order to get this working you need to 'chmod +x' your program
-
-# CLR determines the executor for the PE binaries.
-# mono - Use the mono runtime engine 'mono'
-# ilrun - Use the DotGNU Portable .NET runtime engine 'ilrun'
-
-CLR="mono"
diff --git a/dev-dotnet/pe-format/files/pe-format.init-1 b/dev-dotnet/pe-format/files/pe-format.init-1
deleted file mode 100644
index 18420db9c310..000000000000
--- a/dev-dotnet/pe-format/files/pe-format.init-1
+++ /dev/null
@@ -1,53 +0,0 @@
-#!/sbin/runscript
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-depend() {
- after procfs
-}
-
-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 :