commit:     37daacb0b8ab841ba358c7e28f5d9a8c43ba7940
Author:     Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Fri Aug  4 19:50:34 2017 +0000
Commit:     Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Fri Aug  4 19:50:57 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37daacb0

app-emulation/open-vm-tools: remove old

Package-Manager: Portage-2.3.6_p23, Repoman-2.3.3_p1

 app-emulation/open-vm-tools/Manifest               |   1 -
 .../open-vm-tools/open-vm-tools-10.0.7.ebuild      | 117 -----------------
 .../open-vm-tools/open-vm-tools-10.1.0.ebuild      | 145 ---------------------
 3 files changed, 263 deletions(-)

diff --git a/app-emulation/open-vm-tools/Manifest 
b/app-emulation/open-vm-tools/Manifest
index 53aeeae31de..b3db5547f3b 100644
--- a/app-emulation/open-vm-tools/Manifest
+++ b/app-emulation/open-vm-tools/Manifest
@@ -1,3 +1,2 @@
-DIST open-vm-tools-10.0.7-3227872.tar.gz 4009790 SHA256 
49520ccfed7bf3e51567eb9139f70d6dac6a58c3db99c306ce66f2179ec580ce SHA512 
5838c971a41540cb54ddf83400d2b728bae3245765b6e7d80e7f4be4035308f045ea4a735abafb2a7accbd90c6fe4c381dabd102a98be08a7ee08feab03bfa8b
 WHIRLPOOL 
4384e86073450fafef350aa3da7e9e60e56d1b2844d52260ea03865cb6fcf1ed753ec57dd321a7cd7f15e13b7b8200d2f51d6db633990f38a7cd780d6bca2604
 DIST open-vm-tools-10.1.0-4449150.tar.gz 5025787 SHA256 
d579474c9495b504a544dfc2635d291c27488e7e9303ec4fe6b393836dc3b017 SHA512 
455e570fc13334e85a946e7eb496baebc459c138760c0c4c206b2182ebbb2e8b00b1025bafc284c163ffa1ffab7ab8566073ccd13b34bf5e8ef32addad9a4639
 WHIRLPOOL 
8b568a9cf61c0581abb67f5740bab62748fe4ef4eac2ea99f8340b2667ae2335266c3a935a3ca5778ec3132302013e09e429405c92cdf942fbfc6b85721e6f48
 DIST open-vm-tools-10.1.10-6082533.tar.gz 5111726 SHA256 
4632d815996e7f2c283818b0d84b0c4cf2fb82a0897d77aee0f8cbcdc5678c61 SHA512 
60c52a24509cb0630f2ad649fe6717fefff624fc2a5c736ced35cbdb8f639264d482e063e8140eedb39216adfb1231d58232bfef0233ebc477ba4f9a732c5965
 WHIRLPOOL 
a895246a9cc9d7fa664203a696b8f1c8d84bb231601f7e95c4291624b812d5504168e019cb33f9b9a64eb62baf048001c0952e54a8002bc6eb57dc0664f1d164

diff --git a/app-emulation/open-vm-tools/open-vm-tools-10.0.7.ebuild 
b/app-emulation/open-vm-tools/open-vm-tools-10.0.7.ebuild
deleted file mode 100644
index 049650c8cbc..00000000000
--- a/app-emulation/open-vm-tools/open-vm-tools-10.0.7.ebuild
+++ /dev/null
@@ -1,117 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools flag-o-matic pam systemd toolchain-funcs user
-
-DESCRIPTION="Opensourced tools for VMware guests"
-HOMEPAGE="https://github.com/vmware/open-vm-tools";
-MY_P="${P}-3227872"
-SRC_URI="https://github.com/vmware/open-vm-tools/files/133266/${MY_P}.tar.gz";
-
-LICENSE="LGPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="X doc grabbitmqproxy icu pam +pic vgauth xinerama"
-
-RDEPEND="
-       dev-libs/glib:2
-       dev-libs/libdnet
-       sys-apps/ethtool
-       sys-fs/fuse
-       >=sys-process/procps-3.3.2
-       grabbitmqproxy? ( dev-libs/openssl:0 )
-       icu? ( dev-libs/icu:= )
-       pam? ( virtual/pam )
-       vgauth? (
-               dev-libs/openssl:0
-               dev-libs/xerces-c
-               dev-libs/xml-security-c
-       )
-       X? (
-               dev-cpp/gtkmm:2.4
-               x11-base/xorg-server
-               x11-drivers/xf86-input-vmmouse
-               x11-drivers/xf86-video-vmware
-               x11-libs/gtk+:2
-               x11-libs/libnotify
-               x11-libs/libX11
-               x11-libs/libXtst
-       )
-       xinerama? ( x11-libs/libXinerama )
-"
-
-DEPEND="${RDEPEND}
-       doc? ( app-doc/doxygen )
-       virtual/pkgconfig
-       sys-apps/findutils
-"
-
-S="${WORKDIR}/${MY_P}"
-PATCHES=(
-       "${FILESDIR}/9.10.0-vgauth.patch"
-)
-
-src_prepare() {
-       default
-       eautoreconf
-}
-
-src_configure() {
-       # libsigc++-2.0 >= 2.5.1 requires C++11. Using -std=c++11
-       # does not provide "linux" definition, we need gnu++11
-       append-cxxflags -std=gnu++11
-
-       local myeconfargs=(
-               --disable-deploypkg
-               --disable-static
-               --disable-tests
-               --with-procps
-               --with-dnet
-               --without-kernel-modules
-               $(use_enable doc docs)
-               $(use_enable grabbitmqproxy)
-               $(use_enable vgauth)
-               $(use_enable xinerama multimon)
-               $(use_with icu)
-               $(use_with pam)
-               $(use_with pic)
-               $(use_with X gtk2)
-               $(use_with X gtkmm)
-               $(use_with X x)
-       )
-
-       econf "${myeconfargs[@]}"
-
-       # Bugs 260878, 326761
-       find . -name Makefile -exec sed -i -e 's/-Werror//g' '{}' +  || die 
"sed out Werror failed"
-}
-
-src_install() {
-       emake DESTDIR="${D%/}" install
-       dodoc AUTHORS NEWS ChangeLog README
-       prune_libtool_files --modules
-
-       rm "${ED%/}"/etc/pam.d/vmtoolsd
-       pamd_mimic_system vmtoolsd auth account
-
-       newinitd "${FILESDIR}/open-vm-tools.initd" vmware-tools
-       newconfd "${FILESDIR}/open-vm-tools.confd" vmware-tools
-       systemd_dounit "${FILESDIR}"/vmtoolsd.service
-
-       if use X; then
-               fperms 4755 /usr/bin/vmware-user-suid-wrapper
-               dobin scripts/common/vmware-xdg-detect-de
-
-               insinto /etc/xdg/autostart
-               doins "${FILESDIR}"/open-vm-tools.desktop
-
-               elog "To be able to use the drag'n'drop feature of VMware for 
file"
-               elog "exchange, please add the users to the 'vmware' group."
-       fi
-}
-
-pkg_postinst() {
-       enewgroup vmware
-}

diff --git a/app-emulation/open-vm-tools/open-vm-tools-10.1.0.ebuild 
b/app-emulation/open-vm-tools/open-vm-tools-10.1.0.ebuild
deleted file mode 100644
index 748ea86aa50..00000000000
--- a/app-emulation/open-vm-tools/open-vm-tools-10.1.0.ebuild
+++ /dev/null
@@ -1,145 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-MODULES_OPTIONAL_USE="modules"
-
-inherit autotools linux-mod pam systemd toolchain-funcs user
-
-DESCRIPTION="Opensourced tools for VMware guests"
-HOMEPAGE="https://github.com/vmware/open-vm-tools";
-MY_P="${P}-4449150"
-SRC_URI="https://github.com/vmware/open-vm-tools/files/590760/${MY_P}.tar.gz";
-
-LICENSE="LGPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="X doc grabbitmqproxy icu pam +pic vgauth xinerama"
-
-COMMON_DEPEND="
-       dev-libs/glib:2
-       dev-libs/libdnet
-       sys-fs/fuse
-       >=sys-process/procps-3.3.2
-       grabbitmqproxy? ( dev-libs/openssl:0 )
-       icu? ( dev-libs/icu:= )
-       pam? ( virtual/pam )
-       vgauth? (
-               dev-libs/openssl:0
-               dev-libs/xerces-c
-               dev-libs/xml-security-c
-       )
-       X? (
-               dev-cpp/gtkmm:3.0
-               x11-libs/gtk+:3
-               x11-libs/libICE
-               x11-libs/libSM
-               x11-libs/libX11
-               x11-libs/libXcomposite
-               x11-libs/libXext
-               x11-libs/libXi
-               x11-libs/libXrender
-               x11-libs/libXrandr
-               x11-libs/libXtst
-               xinerama? ( x11-libs/libXinerama )
-       )
-"
-
-DEPEND="${COMMON_DEPEND}
-       doc? ( app-doc/doxygen )
-       virtual/pkgconfig
-"
-
-RDEPEND="${COMMON_DEPEND}
-"
-
-S="${WORKDIR}/${MY_P}/open-vm-tools"
-
-PATCHES=(
-       "${FILESDIR}/10.1.0-mount.vmhgfs.patch"
-       "${FILESDIR}/10.1.0-vgauth.patch"
-       "${FILESDIR}/10.1.0-Werror.patch"
-)
-
-pkg_setup() {
-       linux-info_get_any_version
-       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"
-       if use modules; then
-               linux-mod_pkg_setup
-       else
-               linux-info_pkg_setup
-       fi
-}
-
-src_prepare() {
-       eapply -p2 "${PATCHES[@]}"
-       eapply_user
-       eautoreconf
-}
-
-src_configure() {
-       local myeconfargs=(
-               --disable-deploypkg
-               --disable-static
-               --disable-tests
-               --with-procps
-               --with-dnet
-               $(use_enable doc docs)
-               $(use_enable grabbitmqproxy)
-               $(use_enable vgauth)
-               $(use_enable xinerama multimon)
-               $(use_with icu)
-               $(use_with pam)
-               $(use_with pic)
-               --without-gtk2
-               --without-gtkmm
-               $(use_with X gtk3)
-               $(use_with X gtkmm3)
-               $(use_with X x)
-
-               # configure locates the kernel object directory by looking for
-               # "/lib/modules/${KERNEL_RELEASE}/build".
-               # This will fail if the user is building against an uninstalled 
kernel.
-               # Fixing this would mean reworking the build system.
-               $(use_with modules kernel-modules)
-               --without-root-privileges
-               --with-kernel-release="${KV_FULL}"
-       )
-
-       econf "${myeconfargs[@]}"
-}
-
-src_compile() {
-       use modules && set_arch_to_kernel
-       default
-}
-
-src_install() {
-       default
-       prune_libtool_files --modules
-
-       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
-       systemd_dounit "${FILESDIR}"/vmtoolsd.service
-
-       if use X; then
-               fperms 4711 /usr/bin/vmware-user-suid-wrapper
-               dobin scripts/common/vmware-xdg-detect-de
-
-               elog "To be able to use the drag'n'drop feature of VMware for 
file"
-               elog "exchange, please add the users to the 'vmware' group."
-       fi
-}
-
-pkg_postinst() {
-       enewgroup vmware
-       linux-mod_pkg_postinst
-}

Reply via email to