diff options
author | 2006-03-09 22:42:56 +0000 | |
---|---|---|
committer | 2006-03-09 22:42:56 +0000 | |
commit | 254add7b8bde8bc0864fdb87b25654ffbd96428c (patch) | |
tree | 27757a30f0a8a101d0a4b6eed9ab277626444f82 /app-emulation/vmware-server-console | |
parent | Fix wrong filename (diff) | |
download | vmware-254add7b8bde8bc0864fdb87b25654ffbd96428c.tar.gz vmware-254add7b8bde8bc0864fdb87b25654ffbd96428c.tar.bz2 vmware-254add7b8bde8bc0864fdb87b25654ffbd96428c.zip |
Modified the ebuild to have fully customizable groupname.
Cleaned out a few sed commands that didn't actually do anything anymore.
Added the missing vmware.xml file to the console ebuild.
svn path=/trunk/; revision=4
Diffstat (limited to 'app-emulation/vmware-server-console')
-rw-r--r-- | app-emulation/vmware-server-console/Manifest | 3 | ||||
-rw-r--r-- | app-emulation/vmware-server-console/files/vmware.xml | 48 |
2 files changed, 51 insertions, 0 deletions
diff --git a/app-emulation/vmware-server-console/Manifest b/app-emulation/vmware-server-console/Manifest index 6e74ca7..ef1a32c 100644 --- a/app-emulation/vmware-server-console/Manifest +++ b/app-emulation/vmware-server-console/Manifest @@ -4,6 +4,9 @@ SHA256 ff3abe9d58fd673d8f3d2f7e967aa6db426e3e15b4d868dc1483682357a928b8 files/99 MD5 76aa9b71f10b9bce20e6fac37a700533 files/digest-vmware-server-console-1.0.0.20925 313 RMD160 67726db4156fb2350afd153873c7c0b330ac8855 files/digest-vmware-server-console-1.0.0.20925 313 SHA256 f8bb79afe6e035d6f932cc28b91a1c90baac3b6584f1a698539b1d2f43460163 files/digest-vmware-server-console-1.0.0.20925 313 +MD5 aa1b576735134579f04b29763901dc4f files/vmware.xml 1592 +RMD160 0d7e9ed13ebb3c73dd847e95fa95499296609e8c files/vmware.xml 1592 +SHA256 56aafee80ad705e8d832f8853c36d763d37b87d1cb132a41c50eb63085ae854d files/vmware.xml 1592 MD5 e21d7cdc32de0e18b04c907cc5127aa5 vmware-server-console-1.0.0.20925.ebuild 5089 RMD160 0747a5364883e396ffb2a5f976a69c8b2d4a3d80 vmware-server-console-1.0.0.20925.ebuild 5089 SHA256 60071fa342d4b1063910bc69ab5c61dd70e662ae93ce5b0aa006fc76dc573213 vmware-server-console-1.0.0.20925.ebuild 5089 diff --git a/app-emulation/vmware-server-console/files/vmware.xml b/app-emulation/vmware-server-console/files/vmware.xml new file mode 100644 index 0000000..8d5e2ef --- /dev/null +++ b/app-emulation/vmware-server-console/files/vmware.xml @@ -0,0 +1,48 @@ +<?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='<Foundry version="1">' offset="0"> + <match type="string" value="<VMTeam>" 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='<Foundry version="1">' offset="0"> + <match type="string" value="<VM>" offset="23:24"/> + </match> + </magic> + <glob pattern="*.vmxf"/> + </mime-type> +</mime-info> |