From 392869e36d3612a6df48dd821afbf386ac50a1bb Mon Sep 17 00:00:00 2001 From: Michael Marineau Date: Wed, 8 Oct 2014 21:01:15 -0700 Subject: [PATCH] open-vm-tools: fix build-time dependencies Although we don't want glib and procps to be in the runtime dependencies due to the way OEM packages are handled we still want them included as build-time dependencies so compilation is actually successful. :) --- .../open-vm-tools/open-vm-tools-9.4.6.1770165.ebuild | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/sdk_container/src/third_party/coreos-overlay/app-emulation/open-vm-tools/open-vm-tools-9.4.6.1770165.ebuild b/sdk_container/src/third_party/coreos-overlay/app-emulation/open-vm-tools/open-vm-tools-9.4.6.1770165.ebuild index c2084fa625..a91ba8defc 100644 --- a/sdk_container/src/third_party/coreos-overlay/app-emulation/open-vm-tools/open-vm-tools-9.4.6.1770165.ebuild +++ b/sdk_container/src/third_party/coreos-overlay/app-emulation/open-vm-tools/open-vm-tools-9.4.6.1770165.ebuild @@ -22,14 +22,16 @@ SLOT="0" KEYWORDS="amd64 ~x86" IUSE="+dnet +pic" # TODO: pam -# Dependencies provided by CoreOS, not the OEM: +DEPEND="dev-libs/glib:2 + sys-process/procps + dnet? ( dev-libs/libdnet )" + +# Runtime dependencies provided by CoreOS, not the OEM: # dev-libs/glib:2 # sys-apps/ethtool # sys-process/procps # pam? ( virtual/pam ) -RDEPEND=" - dnet? ( dev-libs/libdnet ) -" +RDEPEND="dnet? ( dev-libs/libdnet )" S="${WORKDIR}/${MY_P}"