public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Mike Gilbert" <floppym@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/open-vm-tools/
Date: Wed, 10 Feb 2021 00:16:21 +0000 (UTC)	[thread overview]
Message-ID: <1612916101.92941620109d6b04acc464358aed5dbe4e1bd83d.floppym@gentoo> (raw)

commit:     92941620109d6b04acc464358aed5dbe4e1bd83d
Author:     Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 10 00:15:01 2021 +0000
Commit:     Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Wed Feb 10 00:15:01 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92941620

app-emulation/open-vm-tools: bump to 11.2.5

Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>

 app-emulation/open-vm-tools/Manifest               |   1 +
 .../open-vm-tools-11.2.5_p17337674.ebuild          | 142 +++++++++++++++++++++
 2 files changed, 143 insertions(+)

diff --git a/app-emulation/open-vm-tools/Manifest b/app-emulation/open-vm-tools/Manifest
index 9b7153cf2a2..879bf9f6a32 100644
--- a/app-emulation/open-vm-tools/Manifest
+++ b/app-emulation/open-vm-tools/Manifest
@@ -1 +1,2 @@
 DIST open-vm-tools-11.2.0-16938113.tar.gz 4050857 BLAKE2B b0e5e1e985d9f3d50dbbb8a4a7939d37d8968f0aa15e6d7200b7ec8511bd059d3a78a4ddd763d22965dc6da614d156e6b7ee23af73490f8bbf8e1dc2664041d3 SHA512 c950d6e8ba5218dd40e845f3c2b09eeb640ef0d33c7ea1671164027927e062dcf0b4745f6e4515a7495ec20a6d06a8fbf700819f6211073194b5ef97d7be441d
+DIST open-vm-tools-11.2.5-17337674.tar.gz 4057528 BLAKE2B 2adc5179e09a4bb501fe12c9e6dea7fee106516fd250899170a8fb3bcefb9b576136a82e4c3d3a73217b44aba8880728bb3588cedd715529f9b2991f0156ac84 SHA512 b6d4bc6522418ec7a881752181ad9240e535854df492e758abf3996c6afe245466ffbff60cc1b6cdff5cf731b5769c9f9cb96aed29f0b788d0eef05f91fcf8ab

diff --git a/app-emulation/open-vm-tools/open-vm-tools-11.2.5_p17337674.ebuild b/app-emulation/open-vm-tools/open-vm-tools-11.2.5_p17337674.ebuild
new file mode 100644
index 00000000000..b67d57a3213
--- /dev/null
+++ b/app-emulation/open-vm-tools/open-vm-tools-11.2.5_p17337674.ebuild
@@ -0,0 +1,142 @@
+# Copyright 2007-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools linux-info pam systemd
+
+DESCRIPTION="Opensourced tools for VMware guests"
+HOMEPAGE="https://github.com/vmware/open-vm-tools"
+MY_P="${PN}-${PV/_p/-}"
+SRC_URI="https://github.com/vmware/open-vm-tools/releases/download/stable-${PV%_p*}/${MY_P}.tar.gz"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="X +deploypkg +dnet doc +fuse gtkmm +icu multimon pam +resolutionkms +ssl +vgauth"
+REQUIRED_USE="
+	multimon? ( X )
+	vgauth? ( ssl )
+"
+
+RDEPEND="
+	dev-libs/glib
+	net-libs/libtirpc
+	deploypkg? ( dev-libs/libmspack )
+	fuse? ( sys-fs/fuse:0 )
+	pam? ( sys-libs/pam )
+	ssl? ( dev-libs/openssl:0 )
+	vgauth? (
+		dev-libs/libxml2
+		dev-libs/xmlsec
+	)
+	X? (
+		x11-libs/libXext
+		multimon? ( x11-libs/libXinerama )
+		x11-libs/libXi
+		x11-libs/libXrender
+		x11-libs/libXrandr
+		x11-libs/libXtst
+		x11-libs/libSM
+		x11-libs/libXcomposite
+		x11-libs/gdk-pixbuf-xlib
+		x11-libs/gtk+:3
+		gtkmm? (
+			dev-cpp/gtkmm:3.0
+			dev-libs/libsigc++:2
+		)
+	)
+	dnet? ( dev-libs/libdnet )
+	icu? ( dev-libs/icu:= )
+	resolutionkms? (
+		x11-libs/libdrm[video_cards_vmware]
+		virtual/libudev
+	)
+"
+
+DEPEND="${RDEPEND}
+	net-libs/rpcsvc-proto
+"
+
+BDEPEND="
+	dev-util/glib-utils
+	virtual/pkgconfig
+	doc? ( app-doc/doxygen )
+"
+
+S="${WORKDIR}/${MY_P}"
+
+PATCHES=(
+	"${FILESDIR}/10.1.0-mount.vmhgfs.patch"
+	"${FILESDIR}/10.1.0-Werror.patch"
+)
+
+pkg_setup() {
+	local CONFIG_CHECK="~VMWARE_BALLOON ~VMWARE_PVSCSI ~VMXNET3"
+	use X && CONFIG_CHECK+=" ~DRM_VMWGFX"
+	kernel_is -lt 3 9 || CONFIG_CHECK+=" ~VMWARE_VMCI ~VMWARE_VMCI_VSOCKETS"
+	kernel_is -lt 3 || CONFIG_CHECK+=" ~FUSE_FS"
+	kernel_is -lt 5 5 || CONFIG_CHECK+=" ~X86_IOPL_IOPERM"
+	linux-info_pkg_setup
+}
+
+src_prepare() {
+	eapply -p2 "${PATCHES[@]}"
+	eapply_user
+	eautoreconf
+}
+
+src_configure() {
+	local myeconfargs=(
+		--without-root-privileges
+		$(use_enable multimon)
+		$(use_with X x)
+		$(use_with X gtk3)
+		$(use_with gtkmm gtkmm3)
+		$(use_enable doc docs)
+		--disable-tests
+		$(use_enable resolutionkms)
+		--disable-static
+		$(use_enable deploypkg)
+		$(use_with pam)
+		$(use_enable vgauth)
+		$(use_with dnet)
+		$(use_with icu)
+	)
+	# Avoid a bug in configure.ac
+	use ssl || myeconfargs+=( --without-ssl )
+
+	econf "${myeconfargs[@]}"
+}
+
+src_install() {
+	default
+	find "${ED}" -name '*.la' -delete || die
+
+	if use pam; then
+		rm "${ED}"/etc/pam.d/vmtoolsd || die
+		pamd_mimic_system vmtoolsd auth account
+	fi
+
+	newinitd "${FILESDIR}/open-vm-tools.initd" vmware-tools
+	newconfd "${FILESDIR}/open-vm-tools.confd" vmware-tools
+
+	if use vgauth; then
+		systemd_newunit "${FILESDIR}"/vmtoolsd.vgauth.service vmtoolsd.service
+		systemd_dounit "${FILESDIR}"/vgauthd.service
+	else
+		systemd_dounit "${FILESDIR}"/vmtoolsd.service
+	fi
+
+	# Replace mount.vmhgfs with a wrapper
+	mv "${ED}"/usr/sbin/{mount.vmhgfs,hgfsmounter} || die
+	dosbin "${FILESDIR}/mount.vmhgfs"
+
+	# Make fstype = vmhgfs-fuse work in fstab
+	dosym vmhgfs-fuse /usr/bin/mount.vmhgfs-fuse
+
+	if use X; then
+		fperms 4711 /usr/bin/vmware-user-suid-wrapper
+		dobin scripts/common/vmware-xdg-detect-de
+	fi
+}


             reply	other threads:[~2021-02-10  0:16 UTC|newest]

Thread overview: 71+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-02-10  0:16 Mike Gilbert [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-12-30 11:38 [gentoo-commits] repo/gentoo:master commit in: app-emulation/open-vm-tools/ David Seifert
2024-11-03 13:48 David Seifert
2024-10-03 10:43 David Seifert
2024-09-23  9:14 Arthur Zamarin
2024-07-10  9:51 David Seifert
2024-07-10  9:51 David Seifert
2024-05-09 20:49 Sam James
2023-06-19 16:58 Arthur Zamarin
2023-06-19 16:58 Arthur Zamarin
2023-06-18 20:25 Mike Gilbert
2023-06-18 20:25 Mike Gilbert
2023-06-18 20:25 Mike Gilbert
2023-06-02 11:07 Arthur Zamarin
2023-06-01 20:04 Sam James
2023-04-24 18:52 Mike Gilbert
2023-04-15  5:40 Sam James
2022-10-22  2:45 Mike Gilbert
2022-09-20  7:45 Jakov Smolić
2022-09-20  0:07 Sam James
2022-09-09 15:23 Mike Gilbert
2022-06-04 14:13 Mike Gilbert
2022-06-04 14:13 Mike Gilbert
2022-06-03 21:32 Jakov Smolić
2022-06-03 21:32 Jakov Smolić
2022-06-03 18:32 Mike Gilbert
2022-01-03 22:06 Mike Gilbert
2021-11-23 22:19 Sam James
2021-09-26  0:53 Mike Gilbert
2021-09-25 23:46 Sam James
2021-09-24 15:37 Sam James
2021-09-24 14:05 Mike Gilbert
2021-06-27  2:08 Sam James
2021-06-24 23:27 Sam James
2021-01-06  8:07 Sam James
2020-12-24 10:03 Agostino Sarubbo
2020-12-14 16:55 Mike Gilbert
2020-12-14 16:55 Mike Gilbert
2020-11-16 19:25 Mike Gilbert
2020-05-09 22:19 Mike Gilbert
2019-12-19 18:10 Mike Gilbert
2019-10-12 18:38 Mikle Kolyada
2019-08-17 18:03 Mike Gilbert
2019-04-12 20:22 Michał Górny
2019-04-12 17:53 Mike Gilbert
2019-02-15 21:21 Mike Gilbert
2018-12-18 17:12 Mike Gilbert
2018-12-18 16:58 Mike Gilbert
2018-07-04 23:54 Mike Gilbert
2018-07-04 14:56 Mike Gilbert
2018-07-04 14:56 Mike Gilbert
2017-11-30 16:35 Mike Gilbert
2017-11-29 23:30 Mike Gilbert
2017-11-29 23:25 Mike Gilbert
2017-08-08 17:01 Mike Gilbert
2017-08-04 19:51 Mike Gilbert
2017-08-04 19:51 Mike Gilbert
2017-08-04 19:51 Mike Gilbert
2016-12-05 15:37 Mike Gilbert
2016-11-27 18:17 Mike Gilbert
2016-11-26  4:18 Mike Gilbert
2016-11-26  4:01 Mike Gilbert
2016-11-26  1:46 Mike Gilbert
2016-11-25 23:59 Mike Gilbert
2016-11-25 23:37 Mike Gilbert
2016-11-25 23:29 Mike Gilbert
2016-07-22 21:24 Mike Gilbert
2016-02-18  0:51 Mike Gilbert
2016-01-01 21:22 Pacho Ramos
2015-09-18  1:37 Mike Gilbert
2015-08-23 23:41 Mike Gilbert

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1612916101.92941620109d6b04acc464358aed5dbe4e1bd83d.floppym@gentoo \
    --to=floppym@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox