Gentoo Archives: gentoo-commits

From: Mike Gilbert <floppym@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/open-vm-tools/
Date: Fri, 04 Aug 2017 19:51:06
Message-Id: 1501876257.cf86e94d5099ce6db7015634ed52286dad6f6f94.floppym@gentoo
1 commit: cf86e94d5099ce6db7015634ed52286dad6f6f94
2 Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
3 AuthorDate: Fri Aug 4 19:48:37 2017 +0000
4 Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
5 CommitDate: Fri Aug 4 19:50:57 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf86e94d
7
8 app-emulation/open-vm-tools: bump to 10.1.10
9
10 Package-Manager: Portage-2.3.6_p23, Repoman-2.3.3_p1
11
12 app-emulation/open-vm-tools/Manifest | 1 +
13 .../open-vm-tools/open-vm-tools-10.1.10.ebuild | 152 +++++++++++++++++++++
14 2 files changed, 153 insertions(+)
15
16 diff --git a/app-emulation/open-vm-tools/Manifest b/app-emulation/open-vm-tools/Manifest
17 index 2a0c295bb86..53aeeae31de 100644
18 --- a/app-emulation/open-vm-tools/Manifest
19 +++ b/app-emulation/open-vm-tools/Manifest
20 @@ -1,2 +1,3 @@
21 DIST open-vm-tools-10.0.7-3227872.tar.gz 4009790 SHA256 49520ccfed7bf3e51567eb9139f70d6dac6a58c3db99c306ce66f2179ec580ce SHA512 5838c971a41540cb54ddf83400d2b728bae3245765b6e7d80e7f4be4035308f045ea4a735abafb2a7accbd90c6fe4c381dabd102a98be08a7ee08feab03bfa8b WHIRLPOOL 4384e86073450fafef350aa3da7e9e60e56d1b2844d52260ea03865cb6fcf1ed753ec57dd321a7cd7f15e13b7b8200d2f51d6db633990f38a7cd780d6bca2604
22 DIST open-vm-tools-10.1.0-4449150.tar.gz 5025787 SHA256 d579474c9495b504a544dfc2635d291c27488e7e9303ec4fe6b393836dc3b017 SHA512 455e570fc13334e85a946e7eb496baebc459c138760c0c4c206b2182ebbb2e8b00b1025bafc284c163ffa1ffab7ab8566073ccd13b34bf5e8ef32addad9a4639 WHIRLPOOL 8b568a9cf61c0581abb67f5740bab62748fe4ef4eac2ea99f8340b2667ae2335266c3a935a3ca5778ec3132302013e09e429405c92cdf942fbfc6b85721e6f48
23 +DIST open-vm-tools-10.1.10-6082533.tar.gz 5111726 SHA256 4632d815996e7f2c283818b0d84b0c4cf2fb82a0897d77aee0f8cbcdc5678c61 SHA512 60c52a24509cb0630f2ad649fe6717fefff624fc2a5c736ced35cbdb8f639264d482e063e8140eedb39216adfb1231d58232bfef0233ebc477ba4f9a732c5965 WHIRLPOOL a895246a9cc9d7fa664203a696b8f1c8d84bb231601f7e95c4291624b812d5504168e019cb33f9b9a64eb62baf048001c0952e54a8002bc6eb57dc0664f1d164
24
25 diff --git a/app-emulation/open-vm-tools/open-vm-tools-10.1.10.ebuild b/app-emulation/open-vm-tools/open-vm-tools-10.1.10.ebuild
26 new file mode 100644
27 index 00000000000..d48d77f6027
28 --- /dev/null
29 +++ b/app-emulation/open-vm-tools/open-vm-tools-10.1.10.ebuild
30 @@ -0,0 +1,152 @@
31 +# Copyright 1999-2017 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +MODULES_OPTIONAL_USE="modules"
36 +
37 +inherit autotools linux-mod pam systemd toolchain-funcs user
38 +
39 +DESCRIPTION="Opensourced tools for VMware guests"
40 +HOMEPAGE="https://github.com/vmware/open-vm-tools"
41 +MY_P="${P}-6082533"
42 +SRC_URI="https://github.com/vmware/open-vm-tools/releases/download/stable-${PV}/${MY_P}.tar.gz"
43 +
44 +LICENSE="LGPL-2"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~x86"
47 +IUSE="X doc grabbitmqproxy icu pam +pic vgauth xinerama"
48 +
49 +COMMON_DEPEND="
50 + dev-libs/glib:2
51 + dev-libs/libdnet
52 + sys-fs/fuse
53 + >=sys-process/procps-3.3.2
54 + grabbitmqproxy? ( dev-libs/openssl:0 )
55 + icu? ( dev-libs/icu:= )
56 + pam? ( virtual/pam )
57 + vgauth? (
58 + dev-libs/openssl:0
59 + dev-libs/xerces-c
60 + dev-libs/xml-security-c
61 + )
62 + X? (
63 + dev-cpp/gtkmm:3.0
64 + x11-libs/gtk+:3
65 + x11-libs/libICE
66 + x11-libs/libSM
67 + x11-libs/libX11
68 + x11-libs/libXcomposite
69 + x11-libs/libXext
70 + x11-libs/libXi
71 + x11-libs/libXrender
72 + x11-libs/libXrandr
73 + x11-libs/libXtst
74 + xinerama? ( x11-libs/libXinerama )
75 + )
76 +"
77 +
78 +DEPEND="${COMMON_DEPEND}
79 + doc? ( app-doc/doxygen )
80 + virtual/pkgconfig
81 +"
82 +
83 +RDEPEND="${COMMON_DEPEND}
84 +"
85 +
86 +S="${WORKDIR}/${MY_P}"
87 +
88 +PATCHES=(
89 + "${FILESDIR}/10.1.0-mount.vmhgfs.patch"
90 + "${FILESDIR}/10.1.0-vgauth.patch"
91 + "${FILESDIR}/10.1.0-Werror.patch"
92 +)
93 +
94 +pkg_setup() {
95 + linux-info_get_any_version
96 + local CONFIG_CHECK="~VMWARE_BALLOON ~VMWARE_PVSCSI ~VMXNET3"
97 + use X && CONFIG_CHECK+=" ~DRM_VMWGFX"
98 + kernel_is -lt 3 9 || CONFIG_CHECK+=" ~VMWARE_VMCI ~VMWARE_VMCI_VSOCKETS"
99 + kernel_is -lt 3 || CONFIG_CHECK+=" ~FUSE_FS"
100 + if use modules; then
101 + linux-mod_pkg_setup
102 + else
103 + linux-info_pkg_setup
104 + fi
105 +}
106 +
107 +src_prepare() {
108 + eapply -p2 "${PATCHES[@]}"
109 + eapply_user
110 + eautoreconf
111 +}
112 +
113 +src_configure() {
114 + local myeconfargs=(
115 + --disable-deploypkg
116 + --disable-static
117 + --disable-tests
118 + --with-procps
119 + --with-dnet
120 + $(use_enable doc docs)
121 + $(use_enable grabbitmqproxy)
122 + $(use_enable vgauth)
123 + $(use_enable xinerama multimon)
124 + $(use_with icu)
125 + $(use_with pam)
126 + $(use_with pic)
127 + --without-gtk2
128 + --without-gtkmm
129 + $(use_with X gtk3)
130 + $(use_with X gtkmm3)
131 + $(use_with X x)
132 +
133 + # configure locates the kernel object directory by looking for
134 + # "/lib/modules/${KERNEL_RELEASE}/build".
135 + # This will fail if the user is building against an uninstalled kernel.
136 + # Fixing this would mean reworking the build system.
137 + $(use_with modules kernel-modules)
138 + --without-root-privileges
139 + --with-kernel-release="${KV_FULL}"
140 + )
141 +
142 + econf "${myeconfargs[@]}"
143 +}
144 +
145 +src_compile() {
146 + use modules && set_arch_to_kernel
147 + default
148 +}
149 +
150 +src_install() {
151 + default
152 + prune_libtool_files --modules
153 +
154 + if use pam; then
155 + rm "${ED%/}"/etc/pam.d/vmtoolsd || die
156 + pamd_mimic_system vmtoolsd auth account
157 + fi
158 +
159 + newinitd "${FILESDIR}/open-vm-tools.initd" vmware-tools
160 + newconfd "${FILESDIR}/open-vm-tools.confd" vmware-tools
161 + systemd_dounit "${FILESDIR}"/vmtoolsd.service
162 +
163 + # Replace mount.vmhgfs with a wrapper
164 + mv "${ED%/}"/usr/sbin/{mount.vmhgfs,hgfsmounter} || die
165 + dosbin "${FILESDIR}/mount.vmhgfs"
166 +
167 + # Make fstype = vmhgfs-fuse work in fstab
168 + dosym vmhgfs-fuse /usr/bin/mount.vmhgfs-fuse
169 +
170 + if use X; then
171 + fperms 4711 /usr/bin/vmware-user-suid-wrapper
172 + dobin scripts/common/vmware-xdg-detect-de
173 +
174 + elog "To be able to use the drag'n'drop feature of VMware for file"
175 + elog "exchange, please add the users to the 'vmware' group."
176 + fi
177 +}
178 +
179 +pkg_postinst() {
180 + enewgroup vmware
181 + linux-mod_pkg_postinst
182 +}