diff options
author | Vadim Kuznetsov <vadimk@gentoo.org> | 2012-03-10 14:27:40 +0000 |
---|---|---|
committer | Vadim Kuznetsov <vadimk@gentoo.org> | 2012-03-10 14:27:40 +0000 |
commit | ef7a05dfd0cec9832a95d2eeaba346488970e366 (patch) | |
tree | ee543f6edbcdea6bb8a61b86b754c9232c366a03 /app-emulation/vmware-tools/vmware-tools-8.8.1.528992.ebuild | |
parent | VMware-tools build 591240 (diff) | |
download | vmware-ef7a05dfd0cec9832a95d2eeaba346488970e366.tar.gz vmware-ef7a05dfd0cec9832a95d2eeaba346488970e366.tar.bz2 vmware-ef7a05dfd0cec9832a95d2eeaba346488970e366.zip |
Cleanup. VMware desktop build 591240 moved to main tree.
svn path=/trunk/; revision=536
Diffstat (limited to 'app-emulation/vmware-tools/vmware-tools-8.8.1.528992.ebuild')
-rw-r--r-- | app-emulation/vmware-tools/vmware-tools-8.8.1.528992.ebuild | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/app-emulation/vmware-tools/vmware-tools-8.8.1.528992.ebuild b/app-emulation/vmware-tools/vmware-tools-8.8.1.528992.ebuild deleted file mode 100644 index c8244f7..0000000 --- a/app-emulation/vmware-tools/vmware-tools-8.8.1.528992.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -inherit versionator vmware-bundle - -MY_PV="$(replace_version_separator 3 - $PV)" -BASE_URI="http://softwareupdate.vmware.com/cds/vmw-desktop/player/4.0.$(get_version_component_range 3)/$(get_version_component_range 4)/linux/packages/" - -DESCRIPTION="VMware Tools for guest operating systems" -HOMEPAGE="http://www.vmware.com/products/player/" - -LICENSE="vmware" -SLOT="0" -KEYWORDS="-* ~amd64 ~x86" -RESTRICT="mirror" -IUSE="" - -DEPEND="!<app-emulation/vmware-workstation-7" -RDEPEND="" - -IUSE_VMWARE_GUEST="freebsd linux netware solaris windows winPre2k" - -VM_INSTALL_DIR="/opt/vmware" - -for guest in ${IUSE_VMWARE_GUEST} ; do - SRC_URI+=" vmware_guest_${guest}? ( - amd64? ( ${BASE_URI}vmware-tools-${guest}-${MY_PV}.x86_64.component.tar ) - x86? ( ${BASE_URI}vmware-tools-${guest}-${MY_PV}.i386.component.tar ) - )" - IUSE+=" vmware_guest_${guest}" -done ; unset guest - -src_unpack() { - local arch - if use x86 ; then arch='i386' - elif use amd64 ; then arch='x86_64' - fi - local guest ; for guest in ${IUSE_VMWARE_GUEST} ; do - if use "vmware_guest_${guest}" ; then - local component="vmware-tools-${guest}-${MY_PV}.${arch}.component" - unpack "${component}.tar" - vmware-bundle_extract-component "${component}" - fi - done -} - -src_install() { - insinto "${VM_INSTALL_DIR}"/lib/vmware/isoimages - local guest ; for guest in ${IUSE_VMWARE_GUEST} ; do - if use "vmware_guest_${guest}" ; then - doins "${guest}".iso{,.sig} - fi - done -} |