diff options
author | Todd Berman <tberman@gentoo.org> | 2003-07-25 00:15:35 +0000 |
---|---|---|
committer | Todd Berman <tberman@gentoo.org> | 2003-07-25 00:15:35 +0000 |
commit | 723908978cd2e83fe6817045b2f12bdcfd5affe3 (patch) | |
tree | ffc3dd8f63a863eba5003abf648a6cc479f1167c /dev-lang/mono/files | |
parent | moving mono to dev-dotnet (diff) | |
download | gentoo-2-723908978cd2e83fe6817045b2f12bdcfd5affe3.tar.gz gentoo-2-723908978cd2e83fe6817045b2f12bdcfd5affe3.tar.bz2 gentoo-2-723908978cd2e83fe6817045b2f12bdcfd5affe3.zip |
Removing mono from dev-lang
Diffstat (limited to 'dev-lang/mono/files')
-rw-r--r-- | dev-lang/mono/files/digest-mono-0.23-r1 | 2 | ||||
-rw-r--r-- | dev-lang/mono/files/digest-mono-0.24-r1 | 2 | ||||
-rw-r--r-- | dev-lang/mono/files/digest-mono-0.25 | 2 | ||||
-rw-r--r-- | dev-lang/mono/files/digest-mono-0.25-r1 | 2 | ||||
-rw-r--r-- | dev-lang/mono/files/dotnet.conf | 11 | ||||
-rw-r--r-- | dev-lang/mono/files/dotnet.init | 45 |
6 files changed, 0 insertions, 64 deletions
diff --git a/dev-lang/mono/files/digest-mono-0.23-r1 b/dev-lang/mono/files/digest-mono-0.23-r1 deleted file mode 100644 index 34c497d71a91..000000000000 --- a/dev-lang/mono/files/digest-mono-0.23-r1 +++ /dev/null @@ -1,2 +0,0 @@ -MD5 a3d65cde58a14e9f2353fa20fa492ab1 mono-0.23.tar.gz 3391671 -MD5 8eb7ca046bc969ae94841563ae6ef22d mcs-0.23.tar.gz 4318632 diff --git a/dev-lang/mono/files/digest-mono-0.24-r1 b/dev-lang/mono/files/digest-mono-0.24-r1 deleted file mode 100644 index fb712b0da1a0..000000000000 --- a/dev-lang/mono/files/digest-mono-0.24-r1 +++ /dev/null @@ -1,2 +0,0 @@ -MD5 f064872ec93de8cfc47ecadb8aa73edb mono-0.24.tar.gz 4020161 -MD5 1331b62892dae6f78e83a4caadaabcfe mcs-0.24.tar.gz 5098337 diff --git a/dev-lang/mono/files/digest-mono-0.25 b/dev-lang/mono/files/digest-mono-0.25 deleted file mode 100644 index e9cb01df15d6..000000000000 --- a/dev-lang/mono/files/digest-mono-0.25 +++ /dev/null @@ -1,2 +0,0 @@ -MD5 086b4f0961f97a4ce25feac167c69de1 mono-0.25.tar.gz 5831383 -MD5 4b6fb86f97bd1e034d412b78ced7acc3 mcs-0.25.tar.gz 5430517 diff --git a/dev-lang/mono/files/digest-mono-0.25-r1 b/dev-lang/mono/files/digest-mono-0.25-r1 deleted file mode 100644 index e9cb01df15d6..000000000000 --- a/dev-lang/mono/files/digest-mono-0.25-r1 +++ /dev/null @@ -1,2 +0,0 @@ -MD5 086b4f0961f97a4ce25feac167c69de1 mono-0.25.tar.gz 5831383 -MD5 4b6fb86f97bd1e034d412b78ced7acc3 mcs-0.25.tar.gz 5430517 diff --git a/dev-lang/mono/files/dotnet.conf b/dev-lang/mono/files/dotnet.conf deleted file mode 100644 index 865174a626e4..000000000000 --- a/dev-lang/mono/files/dotnet.conf +++ /dev/null @@ -1,11 +0,0 @@ -# configuration file for dotnet - -# Define what to register with .NET IL binaries so you can avoid -# running them with "<runtime> program.exe" -# NOTE: In order to get this working you need to "chmod +x" your program - -# Valid options are: -# "mono" - use the mono JIT compiler 'mono' -# "ilrun" - use the DotGNU Portable .NET interpreter 'ilrun' - -CLR="" diff --git a/dev-lang/mono/files/dotnet.init b/dev-lang/mono/files/dotnet.init deleted file mode 100644 index a99b63623654..000000000000 --- a/dev-lang/mono/files/dotnet.init +++ /dev/null @@ -1,45 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/dev-lang/mono/files/dotnet.init,v 1.1 2003/05/12 16:32:20 scandium Exp $ - - -start() { - ebegin "Registering .NET IL binaries with ${CLR}" - - if [ ! -d /proc/sys/fs/binfmt_misc ]; then - eerror "You need support for \"misc binaries\" in your kernel!" - exit 1 - fi - - mount | grep -q binfmt_misc - if [ $? != 0 ]; then - mount -t binfmt_misc binfmt_misc /proc/sys/fs/binfmt_misc - if [ $? != 0 ]; then - eend 1 - exit 1 - fi - fi - - case "${CLR}" in - - mono ) echo ':CLR:M::MZ::/usr/bin/mono:' > /proc/sys/fs/binfmt_misc/register - eend 0 - ;; - ilrun ) echo ':CLR:M::MZ::/usr/bin/ilrun:' > /proc/sys/fs/binfmt_misc/register - eend 0 - ;; - * ) eerror 'Please enter a valid option in /etc/conf.d/dotnet' - eend 1 - ;; - esac -} - -stop() { - ebegin "Unregistering .NET IL binaries" - - if [ -f /proc/sys/fs/binfmt_misc/CLR ]; then - echo '-1' > /proc/sys/fs/binfmt_misc/CLR - fi - eend $? -} |