blob: ba691fa20514c45c27c06a2392d23a9359d50671 (
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
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
inherit eutils
# A well-used example of an eclass function that needs eutils is epatch. If
# your source needs patches applied, it's suggested to put your patch in the
# 'files' directory and use:
#
# epatch "${FILESDIR}"/patch-name-here
#
# eclasses tend to list descriptions of how to use their functions properly.
# take a look at /usr/portage/eclass/ for more examples.
# Short one-line description of this package.
DESCRIPTION="This is a sample skeleton ebuild file"
HOMEPAGE="https://my.vmware.com/web/vmware/info?slug=desktop_end_user_computing/vmware_horizon_view_clients/2_0"
SRC_URI="http://archive.canonical.com/ubuntu/pool/partner/v/vmware-view-client/${PN}_${PV}.orig.tar.gz"
LICENSE="vmware-view"
SLOT="0"
KEYWORDS="~x86 ~amd64 -*"
IUSE=""
DEPEND="!app-emulation/vmware-view-open-client"
RDEPEND=""
#S=${WORKDIR}/${P}
src_configure() {
mv ${S}/usr/lib ${S}/usr/lib32
# Only relocate to other package
}
src_compile() {
echo -n
#do nothing, binary package
}
src_install() {
cp -dr --preserve=mode,timestamps ${S}/* ${D}/
}
|