From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 8EEA0139695 for ; Sun, 30 Jul 2017 11:15:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D18531FC0F0; Sun, 30 Jul 2017 11:15:00 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B30CA1FC006 for ; Sun, 30 Jul 2017 11:15:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D3E85341A9E for ; Sun, 30 Jul 2017 11:14:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5A7E074D3 for ; Sun, 30 Jul 2017 11:14:58 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1501413250.b671883c631a7e23703c7bb50776ec7129d7f78e.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-drivers/xf86-video-virtualbox/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-drivers/xf86-video-virtualbox/xf86-video-virtualbox-5.1.24.ebuild X-VCS-Directories: x11-drivers/xf86-video-virtualbox/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: b671883c631a7e23703c7bb50776ec7129d7f78e X-VCS-Branch: master Date: Sun, 30 Jul 2017 11:14:58 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: c6862af4-999d-430c-af61-8f0eb254d4a7 X-Archives-Hash: ebe264d1bb686fe72fd8d43ca702a035 commit: b671883c631a7e23703c7bb50776ec7129d7f78e Author: Igor Savlook alzari pw> AuthorDate: Thu Jul 20 17:16:58 2017 +0000 Commit: David Seifert gentoo org> CommitDate: Sun Jul 30 11:14:10 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b671883c x11-drivers/xf86-video-virtualbox: add missing dependencies The current ebuild is missing a dependency on * x11-proto/presentproto * x11-proto/dri3proto Bug: https://bugs.gentoo.org/625748 Closes: https://github.com/gentoo/gentoo/pull/5150 .../xf86-video-virtualbox/xf86-video-virtualbox-5.1.24.ebuild | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/x11-drivers/xf86-video-virtualbox/xf86-video-virtualbox-5.1.24.ebuild b/x11-drivers/xf86-video-virtualbox/xf86-video-virtualbox-5.1.24.ebuild index 3eb7cfa80d3..d64df0a7da7 100644 --- a/x11-drivers/xf86-video-virtualbox/xf86-video-virtualbox-5.1.24.ebuild +++ b/x11-drivers/xf86-video-virtualbox/xf86-video-virtualbox-5.1.24.ebuild @@ -28,6 +28,7 @@ DEPEND="${RDEPEND} >=dev-util/kbuild-0.1.9998_pre20131130 sys-power/iasl x11-proto/fontsproto + x11-proto/presentproto x11-proto/randrproto x11-proto/renderproto x11-proto/resourceproto @@ -40,8 +41,12 @@ DEPEND="${RDEPEND} x11-libs/libX11 x11-libs/libXfixes x11-libs/libXext - dri? ( x11-proto/xf86driproto - >=x11-libs/libdrm-2.4.5 )" + dri? ( + x11-proto/dri3proto + x11-proto/xf86driproto + >=x11-libs/libdrm-2.4.5 + )" + PDEPEND="dri? ( ~app-emulation/virtualbox-guest-additions-${PV} )" BUILD_TARGETS="all"