Upgrade vmware-workstation to 11.1.0 and vmware-player to 7.1.0
This commit is contained in:
10
app-emulation/vmware-player/files/config-3.0
Normal file
10
app-emulation/vmware-player/files/config-3.0
Normal file
@@ -0,0 +1,10 @@
|
||||
VMCI_CONFED = "yes"
|
||||
NETWORKING = "yes"
|
||||
initscriptdir = "/etc/init.d"
|
||||
VMBLOCK_CONFED = "yes"
|
||||
authd.fullpath = "@@VM_INSTALL_DIR@@/sbin/vmware-authd"
|
||||
gksu.rootMethod = "su"
|
||||
VSOCK_CONFED = "yes"
|
||||
libdir = "@@VM_INSTALL_DIR@@/lib/vmware"
|
||||
bindir = "@@VM_INSTALL_DIR@@/bin"
|
||||
product.buildNumber = "@@BUILD_NUMBER@@"
|
||||
17
app-emulation/vmware-player/files/list-bundle-components.xsl
Normal file
17
app-emulation/vmware-player/files/list-bundle-components.xsl
Normal file
@@ -0,0 +1,17 @@
|
||||
<?xml version="1.0" encoding="ISO-8859-1"?>
|
||||
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
||||
|
||||
<xsl:output omit-xml-declaration="yes"/>
|
||||
|
||||
<xsl:template match="text()"/>
|
||||
|
||||
<xsl:template match="/bundle/components/component">
|
||||
<xsl:value-of select="@offset"/>
|
||||
<xsl:text> </xsl:text>
|
||||
<xsl:value-of select="@size"/>
|
||||
<xsl:text> </xsl:text>
|
||||
<xsl:value-of select="@name"/>
|
||||
<xsl:text> </xsl:text>
|
||||
</xsl:template>
|
||||
|
||||
</xsl:stylesheet>
|
||||
19
app-emulation/vmware-player/files/list-component-files.xsl
Normal file
19
app-emulation/vmware-player/files/list-component-files.xsl
Normal file
@@ -0,0 +1,19 @@
|
||||
<?xml version="1.0" encoding="ISO-8859-1"?>
|
||||
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
||||
|
||||
<xsl:output omit-xml-declaration="yes"/>
|
||||
|
||||
<xsl:template match="text()"/>
|
||||
|
||||
<xsl:template match="/component/fileset/file">
|
||||
<xsl:value-of select="@offset"/>
|
||||
<xsl:text> </xsl:text>
|
||||
<xsl:value-of select="@compressedSize"/>
|
||||
<xsl:text> </xsl:text>
|
||||
<xsl:value-of select="@uncompressedSize"/>
|
||||
<xsl:text> </xsl:text>
|
||||
<xsl:value-of select="@path"/>
|
||||
<xsl:text> </xsl:text>
|
||||
</xsl:template>
|
||||
|
||||
</xsl:stylesheet>
|
||||
33
app-emulation/vmware-player/files/vmware-3.0.rc
Normal file
33
app-emulation/vmware-player/files/vmware-3.0.rc
Normal file
@@ -0,0 +1,33 @@
|
||||
#!/sbin/runscript
|
||||
# Copyright 1999-2011 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/app-emulation/vmware-player/files/vmware-3.0.rc,v 1.1 2011/03/27 15:23:48 vadimk Exp $
|
||||
|
||||
depend() {
|
||||
need localmount
|
||||
use net
|
||||
}
|
||||
|
||||
start() {
|
||||
ebegin Starting VMware USB Arbitrator
|
||||
#start-stop-daemon --start --exec @@BINDIR@@/vmware-usbarbitrator
|
||||
@@BINDIR@@/vmware-usbarbitrator
|
||||
eend $?
|
||||
ebegin Starting VMware services
|
||||
modprobe -a vmmon vmci vsock vmblock vmnet
|
||||
eend $?
|
||||
@@BINDIR@@/vmware-networks --start
|
||||
eend $?
|
||||
}
|
||||
|
||||
stop() {
|
||||
ebegin Stopping VMware USB Arbitrator
|
||||
#start-stop-daemon --stop --exec @@BINDIR@@/vmware-usbarbitrator
|
||||
killall --wait @@BINDIR@@/vmware-usbarbitrator
|
||||
eend $?
|
||||
@@BINDIR@@/vmware-networks --stop
|
||||
eend $?
|
||||
ebegin Stopping VMware services
|
||||
modprobe -r vsock vmci vmmon vmblock vmnet
|
||||
eend $?
|
||||
}
|
||||
Reference in New Issue
Block a user