blob: 75728c49834edcf0a568f3580e8af56e4cf9c623 (
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/vmware-server-console/vmware-server-console-1.0.3.44356.ebuild,v 1.1 2007/05/07 17:58:12 ikelos Exp $
# Unlike many other binary packages the user doesn't need to agree to a licence
# to download VMWare. The agreeing to a licence is part of the configure step
# which the user must run manually.
inherit eutils versionator vmware
MY_PN=${PN/vm/VM}
MY_PV=$(replace_version_separator 3 '-')
MY_P="${MY_PN}-${MY_PV}"
FN="VMware-server-linux-client-${MY_PV}"
S="${WORKDIR}/${PN}-distrib"
DESCRIPTION="VMware Remote Console for Linux"
HOMEPAGE="http://www.vmware.com/"
SRC_URI="http://download3.vmware.com/software/vmserver/${FN}.zip
http://dev.gentoo.org/~wolf31o2/sources/dump/vmware-libssl.so.0.9.7l.tar.bz2
mirror://gentoo/vmware-libssl.so.0.9.7l.tar.bz2
http://dev.gentoo.org/~wolf31o2/sources/dump/vmware-libcrypto.so.0.9.7l.tar.bz2
mirror://gentoo/vmware-libcrypto.so.0.9.7l.tar.bz2"
LICENSE="vmware"
IUSE=""
SLOT="0"
KEYWORDS="-* ~amd64 ~x86"
RESTRICT="nostrip"
DEPEND=">=sys-libs/glibc-2.3.5
virtual/os-headers
>=dev-lang/perl-5
>=sys-apps/portage-2.0.54
app-arch/unzip"
# vmware-server-console should not use virtual/libc as this is a
# precompiled binary package thats linked to glibc.
RDEPEND=">=sys-libs/glibc-2.3.5
amd64? ( app-emulation/emul-linux-x86-gtklibs )
!amd64? ( || ( ( x11-libs/libSM
x11-libs/libICE
x11-libs/libX11
x11-libs/libXau
x11-libs/libXcursor
x11-libs/libXdmcp
x11-libs/libXext
x11-libs/libXfixes
x11-libs/libXft
x11-libs/libXi
x11-libs/libXrandr
x11-libs/libXrender
x11-libs/libXt
x11-libs/libXtst
)
virtual/x11
)
)
>=dev-lang/perl-5
!<sys-apps/dbus-0.62
"
etcdir="/etc/${PN}"
ANY_ANY=""
src_unpack() {
cd ${WORKDIR}
unpack ${A}
unpack ./${MY_P}.tar.gz
cd ${S}
unpack vmware-libssl.so.0.9.7l.tar.bz2
unpack vmware-libcrypto.so.0.9.7l.tar.bz2
}
src_install() {
echo 'libdir = "'${VMWARE_INSTALL_DIR}'/lib"' > etc/config
vmware_src_install
make_desktop_entry ${PN} "VMWare Remote Console" ${PN}.png System
dodir /usr/bin
dosym ${VMWARE_INSTALL_DIR}/bin/${PN} /usr/bin/${PN}
}
pkg_config() {
einfo "Running ${ROOT}${dir}/bin/vmware-config-server-console.pl"
${ROOT}${dir}/bin/vmware-config-server-console.pl
}
|