blob: 1076a1634312eff9ddbbbda36fcdd51cf3b6ee0c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/vmware-workstation/vmware-workstation-5.5.1.19175-r4.ebuild,v 1.6 2006/09/09 19:52:38 wolf31o2 Exp $
# Alter ebuild so that the metadata cache is invalidated.
inherit vmware eutils
MY_P="VMware-workstation-5.5.1-19175"
DESCRIPTION="Emulate a complete PC on your PC without the usual performance overhead of most emulators"
HOMEPAGE="http://www.vmware.com/products/desktop/ws_features.html"
SRC_URI="mirror://vmware/software/wkst/${MY_P}.tar.gz
http://ftp.cvut.cz/vmware/${ANY_ANY}.tar.gz
http://ftp.cvut.cz/vmware/obselete/${ANY_ANY}.tar.gz
http://knihovny.cvut.cz/ftp/pub/vmware/${ANY_ANY}.tar.gz
http://knihovny.cvut.cz/ftp/pub/vmware/obselete/${ANY_ANY}.tar.gz"
LICENSE="vmware"
SLOT="0"
KEYWORDS="-* amd64 x86"
IUSE=""
RESTRICT="strip"
# vmware-workstation should not use virtual/libc as this is a
# precompiled binary package thats linked to glibc.
RDEPEND="sys-libs/glibc
amd64? (
app-emulation/emul-linux-x86-gtklibs )
x86? (
|| (
(
x11-libs/libXrandr
x11-libs/libXcursor
x11-libs/libXinerama
x11-libs/libXi )
virtual/x11 )
virtual/xft )
!app-emulation/vmware-player
!app-emulation/vmware-server
~app-emulation/vmware-modules-1.0.0.13
>=dev-lang/perl-5
sys-apps/pciutils"
S=${WORKDIR}/vmware-distrib
RUN_UPDATE="no"
dir=/opt/vmware/workstation
Ddir=${D}/${dir}
src_install() {
vmware_src_install
# make_desktop_entry vmware "VMWare Workstation" ${PN}.png
}
|