summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Gianelloni <wolf31o2@gentoo.org>2006-08-09 11:55:40 +0000
committerChris Gianelloni <wolf31o2@gentoo.org>2006-08-09 11:55:40 +0000
commit6af585dd3af23f488b696c207c2be7407d368cb2 (patch)
tree6e7cd5c6619b847ec73d8b991d2ead6d69691c2d /app-emulation/vmware-player/files
parentKeep the tree and repos in sync by moving the minor edits back into the repo. (diff)
downloadvmware-6af585dd3af23f488b696c207c2be7407d368cb2.tar.gz
vmware-6af585dd3af23f488b696c207c2be7407d368cb2.tar.bz2
vmware-6af585dd3af23f488b696c207c2be7407d368cb2.zip
Removed vmware-player, since it has been moved to the tree.
svn path=/trunk/; revision=100
Diffstat (limited to 'app-emulation/vmware-player/files')
-rw-r--r--app-emulation/vmware-player/files/1.0.1.19317/000_all_initd-location.patch31
-rw-r--r--app-emulation/vmware-player/files/1.0.1.19317/001_all_fix-permissions.patch15
-rw-r--r--app-emulation/vmware-player/files/1.0.1.19317/002_all_pagebreak-detection-fix.patch12
-rw-r--r--app-emulation/vmware-player/files/1.0.1.19317/004_all_do-not-build-modules.patch17
-rw-r--r--app-emulation/vmware-player/files/1.0.1.19317/007_all_use-modprobe-over-insmod.patch12
-rw-r--r--app-emulation/vmware-player/files/1.0.1.19317/009_all_init.d-modules-warning.patch19
-rw-r--r--app-emulation/vmware-player/files/90vmware-player3
-rw-r--r--app-emulation/vmware-player/files/digest-vmware-player-1.0.1.19317-r59
-rw-r--r--app-emulation/vmware-player/files/digest-vmware-player-1.0.1.19317-r69
-rw-r--r--app-emulation/vmware-player/files/vmware-player.rc73
-rw-r--r--app-emulation/vmware-player/files/vmware-player.xml48
-rw-r--r--app-emulation/vmware-player/files/vmware.rc73
-rw-r--r--app-emulation/vmware-player/files/vmware.xml48
13 files changed, 0 insertions, 369 deletions
diff --git a/app-emulation/vmware-player/files/1.0.1.19317/000_all_initd-location.patch b/app-emulation/vmware-player/files/1.0.1.19317/000_all_initd-location.patch
deleted file mode 100644
index 1d864f7..0000000
--- a/app-emulation/vmware-player/files/1.0.1.19317/000_all_initd-location.patch
+++ /dev/null
@@ -1,31 +0,0 @@
---- vmware-distrib/bin/vmware-config.pl.ori 2005-11-09 01:45:08.000000000 +0000
-+++ vmware-distrib/bin/vmware-config.pl 2005-11-09 01:48:21.000000000 +0000
-@@ -8433,7 +8433,7 @@
- error('Please shut down any running VMs and run this script again.' .
- "\n\n");
- } else {
-- if (system(shell_string(db_get_answer('INITSCRIPTSDIR') . '/vmware')
-+ if (system(shell_string('/etc/init.d' . '/vmware')
- . ' stop')) {
- error('Unable to stop services for ' . vmware_product_name() .
- "\n\n");
-@@ -8463,8 +8463,8 @@
- }
- if (vmware_product() ne 'server') {
- configure_gtk2();
-- createMimePackageFile();
-- configureDesktopFiles();
-+# createMimePackageFile();
-+# configureDesktopFiles();
- configure_mon();
- configure_pp();
- configure_net();
-@@ -8532,7 +8532,7 @@
- db_save();
- # Then start VMware's services
- if (!$gOption{'skipstopstart'}) {
-- system(shell_string(db_get_answer('INITSCRIPTSDIR') . '/vmware') . ' start');
-+ system(shell_string('/etc/init.d' . '/vmware') . ' start');
- print "\n";
- }
-
diff --git a/app-emulation/vmware-player/files/1.0.1.19317/001_all_fix-permissions.patch b/app-emulation/vmware-player/files/1.0.1.19317/001_all_fix-permissions.patch
deleted file mode 100644
index e646b7b..0000000
--- a/app-emulation/vmware-player/files/1.0.1.19317/001_all_fix-permissions.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-diff -urN vmware-distrib.orig/bin/vmware-config.pl vmware-distrib/bin/vmware-config.pl
---- vmware-distrib.orig/bin/vmware-config.pl 2005-12-16 00:51:03.000000000 -0500
-+++ vmware-distrib/bin/vmware-config.pl 2005-12-21 14:34:03.000000000 -0500
-@@ -7327,7 +7327,10 @@
- error('Unable to write configuration file "' . $name . '".' . "\n\n");
- }
- db_add_file($name, 0x1);
-- safe_chmod(0644, $name);
-+ safe_chmod(0664, $name);
-+ my $gid = (getgrnam('vmware'))[2];
-+ my $uid = (stat($name))[4];
-+ safe_chown($uid,$gid,$name);
-
- # Append the promotional configuration if it exists
- $promoconfig = $libdir . '/configurator/PROMOCONFIG';
diff --git a/app-emulation/vmware-player/files/1.0.1.19317/002_all_pagebreak-detection-fix.patch b/app-emulation/vmware-player/files/1.0.1.19317/002_all_pagebreak-detection-fix.patch
deleted file mode 100644
index f700f5d..0000000
--- a/app-emulation/vmware-player/files/1.0.1.19317/002_all_pagebreak-detection-fix.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -ur vmware-distrib.orig/bin/vmware-config.pl vmware-distrib/bin/vmware-config.pl
---- vmware-distrib.orig/bin/vmware-config.pl 2006-03-24 23:13:05.000000000 +0100
-+++ vmware-distrib/bin/vmware-config.pl 2006-03-24 23:26:40.000000000 +0100
-@@ -1969,7 +1969,7 @@
- . ' -E - | ' . shell_string($gHelper{'grep'}) . ' '
- . shell_string($pattern));
- chomp($header_page_offset);
-- $header_page_offset =~ s/^$pattern \(?0x([0-9a-fA-F]{8,}).*$/$1/;
-+ $header_page_offset =~ s/^$pattern \(?(\([^)]*\))?\)?0x([0-9a-fA-F]{8,}).*$/$2/;
- if ($header_page_offset =~ /[0-9a-fA-F]{8,}/) {
- # We found a valid page offset
- if (defined($gSystem{'page_offset'}) and
diff --git a/app-emulation/vmware-player/files/1.0.1.19317/004_all_do-not-build-modules.patch b/app-emulation/vmware-player/files/1.0.1.19317/004_all_do-not-build-modules.patch
deleted file mode 100644
index cec3b3e..0000000
--- a/app-emulation/vmware-player/files/1.0.1.19317/004_all_do-not-build-modules.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-diff -uNr vmware-server-distrib.orig/bin/vmware-config.pl vmware-server-distrib/bin/vmware-config.pl
---- vmware-server-distrib.orig/bin/vmware-config.pl 2006-02-18 18:12:26.000000000 +0000
-+++ vmware-server-distrib/bin/vmware-config.pl 2006-02-18 18:14:17.000000000 +0000
-@@ -8571,10 +8571,10 @@
- configure_gtk2();
- # createMimePackageFile();
- # configureDesktopFiles();
-- configure_mon();
-- configure_pp();
-+# configure_mon();
-+# configure_pp();
- configure_net();
-- build_vmnet();
-+# build_vmnet();
- }
-
- # Create the directory for the UNIX domain sockets
diff --git a/app-emulation/vmware-player/files/1.0.1.19317/007_all_use-modprobe-over-insmod.patch b/app-emulation/vmware-player/files/1.0.1.19317/007_all_use-modprobe-over-insmod.patch
deleted file mode 100644
index c29a87e..0000000
--- a/app-emulation/vmware-player/files/1.0.1.19317/007_all_use-modprobe-over-insmod.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -uNr vmware-server-distrib/installer/services.sh vmware-server-distrib.new/installer/services.sh
---- vmware-server-distrib/installer/services.sh 2006-02-05 00:21:25.000000000 +0000
-+++ vmware-server-distrib.new/installer/services.sh 2006-02-20 23:48:07.000000000 +0000
-@@ -538,7 +538,7 @@
- }
-
- vmware_load_module() {
-- /sbin/insmod -s -f "/lib/modules/`uname -r`/misc/$1.o" || exit 1
-+ /sbin/modprobe -s -f "$1" || exit 1
- exit 0
- }
-
diff --git a/app-emulation/vmware-player/files/1.0.1.19317/009_all_init.d-modules-warning.patch b/app-emulation/vmware-player/files/1.0.1.19317/009_all_init.d-modules-warning.patch
deleted file mode 100644
index 4eab043..0000000
--- a/app-emulation/vmware-player/files/1.0.1.19317/009_all_init.d-modules-warning.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-diff -uNr vmware-server-distrib.orig/installer/services.sh vmware-server-distrib/installer/services.sh
---- vmware-server-distrib.orig/installer/services.sh 2006-07-01 03:14:16.000000000 +0000
-+++ vmware-server-distrib/installer/services.sh 2006-07-14 11:59:28.000000000 +0000
-@@ -606,8 +606,13 @@
- start)
- if [ -e "$vmware_etc_dir"/not_configured ]; then
- echo "`vmware_product_name`"' is installed, but it has not been (correctly) configured'
-- echo 'for the running kernel. To (re-)configure it, invoke the'
-- echo 'following command: '"$vmdb_answer_BINDIR"'/vmware-config.pl.'
-+ echo 'for the running kernel.'
-+ echo
-+ echo 'Please ensure that the modules have been compiled for this kernel:'
-+ echo ' emerge --oneshot vmware-modules'
-+ echo
-+ echo 'Also ensure '"`vmware_product_name`"' has been configured:'
-+ echo ' '"$vmdb_answer_BINDIR"'/vmware-config.pl'
- echo
-
- exit 1
diff --git a/app-emulation/vmware-player/files/90vmware-player b/app-emulation/vmware-player/files/90vmware-player
deleted file mode 100644
index 3ff865b..0000000
--- a/app-emulation/vmware-player/files/90vmware-player
+++ /dev/null
@@ -1,3 +0,0 @@
-PATH=/opt/vmware/player/bin
-ROOTPATH=/opt/vmware/player/bin
-MANPATH=/opt/vmware/player/man
diff --git a/app-emulation/vmware-player/files/digest-vmware-player-1.0.1.19317-r5 b/app-emulation/vmware-player/files/digest-vmware-player-1.0.1.19317-r5
deleted file mode 100644
index 56c8f1a..0000000
--- a/app-emulation/vmware-player/files/digest-vmware-player-1.0.1.19317-r5
+++ /dev/null
@@ -1,9 +0,0 @@
-MD5 58d0aab1f3303dfb5354a929bcf1b0e9 VMware-player-1.0.1-19317.tar.gz 35786922
-RMD160 7ba3c6cefaf6fb98cc932d0974206b6b0f408a29 VMware-player-1.0.1-19317.tar.gz 35786922
-SHA256 c4b0e43ef7e56803e8bc822f2ab240bd2911019dca2d6a615e76dc41642cb4bf VMware-player-1.0.1-19317.tar.gz 35786922
-MD5 2e4ac50579cc56ca1303e7dfc156021d vmware-any-any-update103.tar.gz 297151
-RMD160 7c1bc9a175b62f5bc20aac8d9e6757fdb06923b4 vmware-any-any-update103.tar.gz 297151
-SHA256 d20c6c7da0245fed18822fac87b4b2298bcec3d28765b27a2d026b3bd7485e43 vmware-any-any-update103.tar.gz 297151
-MD5 7ca1ec14670b51d8cf824a58bc8d6621 vmware.png 470
-RMD160 759a5530b3bb605e6bc2c1e203490163d320485d vmware.png 470
-SHA256 9bec91ecc32fa913141ca303abf1abec988ebc7fb4f27389f173bf3493bffb9b vmware.png 470
diff --git a/app-emulation/vmware-player/files/digest-vmware-player-1.0.1.19317-r6 b/app-emulation/vmware-player/files/digest-vmware-player-1.0.1.19317-r6
deleted file mode 100644
index 56c8f1a..0000000
--- a/app-emulation/vmware-player/files/digest-vmware-player-1.0.1.19317-r6
+++ /dev/null
@@ -1,9 +0,0 @@
-MD5 58d0aab1f3303dfb5354a929bcf1b0e9 VMware-player-1.0.1-19317.tar.gz 35786922
-RMD160 7ba3c6cefaf6fb98cc932d0974206b6b0f408a29 VMware-player-1.0.1-19317.tar.gz 35786922
-SHA256 c4b0e43ef7e56803e8bc822f2ab240bd2911019dca2d6a615e76dc41642cb4bf VMware-player-1.0.1-19317.tar.gz 35786922
-MD5 2e4ac50579cc56ca1303e7dfc156021d vmware-any-any-update103.tar.gz 297151
-RMD160 7c1bc9a175b62f5bc20aac8d9e6757fdb06923b4 vmware-any-any-update103.tar.gz 297151
-SHA256 d20c6c7da0245fed18822fac87b4b2298bcec3d28765b27a2d026b3bd7485e43 vmware-any-any-update103.tar.gz 297151
-MD5 7ca1ec14670b51d8cf824a58bc8d6621 vmware.png 470
-RMD160 759a5530b3bb605e6bc2c1e203490163d320485d vmware.png 470
-SHA256 9bec91ecc32fa913141ca303abf1abec988ebc7fb4f27389f173bf3493bffb9b vmware.png 470
diff --git a/app-emulation/vmware-player/files/vmware-player.rc b/app-emulation/vmware-player/files/vmware-player.rc
deleted file mode 100644
index 20c1b95..0000000
--- a/app-emulation/vmware-player/files/vmware-player.rc
+++ /dev/null
@@ -1,73 +0,0 @@
-#!/sbin/runscript
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/vmware-player/files/vmware.rc,v 1.1 2005/11/29 15:17:26 wolf31o2 Exp $
-
-depend() {
- need localmount
- use logger net samba
-}
-
-vmware-prettify() {
- # Yea, the code is ugly but the output is pretty
- state=$1
- waserror=0
- msgtype=0
- while read line
- do
- [ "$line" == "" ] && continue
- if [ "$msgtype" -le "0" ]
- then
- if [ "$msgtype" == "-1" ]
- then
- ewarn $line
- continue
- fi
- if [ "${line/*:*/}" == "" ]
- then
- einfon $line
- echo
- eend 0
- msgtype=1
- else
- ewarn $line
- msgtype=-1
- waserror=1
- fi
- continue
- fi
-
- # Strip out anything after the <esc> code
- message=`echo $line | sed -e "s/^\(.*\).*$/\1/"`
- einfon " $message"
- echo
-
- echo $line | grep done > /dev/null
- status=$?
- eend $status
-
- if [ "$status" != "0" ]
- then
- logger -p local0.err -t vmware-${state} "$line"
- waserror=$status
- fi
- done
- if [ "$msgtype" == "-1" ]
- then
- eend 1 "VMware is not properly configured! See above."
- fi
- return $waserror
-}
-
-start() {
- test -x /etc/vmware/init.d/vmware || \
- eend 1 "vmware init script not found. Aborting" || return 1
-
- /etc/vmware/init.d/vmware start | vmware-prettify start
- return $?
-}
-
-stop() {
- /etc/vmware/init.d/vmware stop | vmware-prettify stop
- return $?
-}
diff --git a/app-emulation/vmware-player/files/vmware-player.xml b/app-emulation/vmware-player/files/vmware-player.xml
deleted file mode 100644
index 8d5e2ef..0000000
--- a/app-emulation/vmware-player/files/vmware-player.xml
+++ /dev/null
@@ -1,48 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<mime-info xmlns="http://www.freedesktop.org/standards/shared-mime-info">
- <mime-type type="application/x-vmware-vm">
- <comment xml:lang="en">VMware virtual machine</comment>
- <magic priority="50">
- <match type="string" value='config.version = "' offset="0:4096"/>
- </magic>
- <glob pattern="*.vmx"/>
- </mime-type>
-
- <mime-type type="application/x-vmware-vmdisk">
- <comment xml:lang="en">VMware virtual disk</comment>
- <magic priority="50">
- <match type="string" value="# Disk DescriptorFile" offset="0"/>
- <match type="string" value="KDMV" offset="0"/>
- </magic>
- <glob pattern="*.vmdk"/>
- </mime-type>
-
- <mime-type type="application/x-vmware-team">
- <comment xml:lang="en">VMware team</comment>
- <magic priority="50">
- <match type="string" value='&lt;Foundry version="1"&gt;' offset="0">
- <match type="string" value="&lt;VMTeam&gt;" offset="23:24"/>
- </match>
- </magic>
- <glob pattern="*.vmtm"/>
- </mime-type>
-
- <mime-type type="application/x-vmware-snapshot">
- <comment xml:lang="en">VMware virtual machine snapshot</comment>
- <magic priority="50">
- <match type="string" value="\\0xD0\\0xBE\\0xD0\\0xBE" offset="0"/>
- </magic>
- <glob pattern="*.vmsn"/>
- </mime-type>
-
- <mime-type type="application/x-vmware-vmfoundry">
- <comment xml:lang="en">VMware virtual machine foundry</comment>
- <magic priority="50">
- <match type="string" value='&lt;Foundry version="1"&gt;' offset="0">
- <match type="string" value="&lt;VM&gt;" offset="23:24"/>
- </match>
- </magic>
- <glob pattern="*.vmxf"/>
- </mime-type>
-</mime-info>
diff --git a/app-emulation/vmware-player/files/vmware.rc b/app-emulation/vmware-player/files/vmware.rc
deleted file mode 100644
index 20c1b95..0000000
--- a/app-emulation/vmware-player/files/vmware.rc
+++ /dev/null
@@ -1,73 +0,0 @@
-#!/sbin/runscript
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/vmware-player/files/vmware.rc,v 1.1 2005/11/29 15:17:26 wolf31o2 Exp $
-
-depend() {
- need localmount
- use logger net samba
-}
-
-vmware-prettify() {
- # Yea, the code is ugly but the output is pretty
- state=$1
- waserror=0
- msgtype=0
- while read line
- do
- [ "$line" == "" ] && continue
- if [ "$msgtype" -le "0" ]
- then
- if [ "$msgtype" == "-1" ]
- then
- ewarn $line
- continue
- fi
- if [ "${line/*:*/}" == "" ]
- then
- einfon $line
- echo
- eend 0
- msgtype=1
- else
- ewarn $line
- msgtype=-1
- waserror=1
- fi
- continue
- fi
-
- # Strip out anything after the <esc> code
- message=`echo $line | sed -e "s/^\(.*\).*$/\1/"`
- einfon " $message"
- echo
-
- echo $line | grep done > /dev/null
- status=$?
- eend $status
-
- if [ "$status" != "0" ]
- then
- logger -p local0.err -t vmware-${state} "$line"
- waserror=$status
- fi
- done
- if [ "$msgtype" == "-1" ]
- then
- eend 1 "VMware is not properly configured! See above."
- fi
- return $waserror
-}
-
-start() {
- test -x /etc/vmware/init.d/vmware || \
- eend 1 "vmware init script not found. Aborting" || return 1
-
- /etc/vmware/init.d/vmware start | vmware-prettify start
- return $?
-}
-
-stop() {
- /etc/vmware/init.d/vmware stop | vmware-prettify stop
- return $?
-}
diff --git a/app-emulation/vmware-player/files/vmware.xml b/app-emulation/vmware-player/files/vmware.xml
deleted file mode 100644
index 8d5e2ef..0000000
--- a/app-emulation/vmware-player/files/vmware.xml
+++ /dev/null
@@ -1,48 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<mime-info xmlns="http://www.freedesktop.org/standards/shared-mime-info">
- <mime-type type="application/x-vmware-vm">
- <comment xml:lang="en">VMware virtual machine</comment>
- <magic priority="50">
- <match type="string" value='config.version = "' offset="0:4096"/>
- </magic>
- <glob pattern="*.vmx"/>
- </mime-type>
-
- <mime-type type="application/x-vmware-vmdisk">
- <comment xml:lang="en">VMware virtual disk</comment>
- <magic priority="50">
- <match type="string" value="# Disk DescriptorFile" offset="0"/>
- <match type="string" value="KDMV" offset="0"/>
- </magic>
- <glob pattern="*.vmdk"/>
- </mime-type>
-
- <mime-type type="application/x-vmware-team">
- <comment xml:lang="en">VMware team</comment>
- <magic priority="50">
- <match type="string" value='&lt;Foundry version="1"&gt;' offset="0">
- <match type="string" value="&lt;VMTeam&gt;" offset="23:24"/>
- </match>
- </magic>
- <glob pattern="*.vmtm"/>
- </mime-type>
-
- <mime-type type="application/x-vmware-snapshot">
- <comment xml:lang="en">VMware virtual machine snapshot</comment>
- <magic priority="50">
- <match type="string" value="\\0xD0\\0xBE\\0xD0\\0xBE" offset="0"/>
- </magic>
- <glob pattern="*.vmsn"/>
- </mime-type>
-
- <mime-type type="application/x-vmware-vmfoundry">
- <comment xml:lang="en">VMware virtual machine foundry</comment>
- <magic priority="50">
- <match type="string" value='&lt;Foundry version="1"&gt;' offset="0">
- <match type="string" value="&lt;VM&gt;" offset="23:24"/>
- </match>
- </magic>
- <glob pattern="*.vmxf"/>
- </mime-type>
-</mime-info>