From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 91EFE1381F3 for ; Sat, 1 Jun 2013 04:38:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2947BE080A; Sat, 1 Jun 2013 04:38:53 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id AE85DE080A for ; Sat, 1 Jun 2013 04:38:52 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7338533E24F for ; Sat, 1 Jun 2013 04:38:51 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 6F641E5308 for ; Sat, 1 Jun 2013 04:38:47 +0000 (UTC) From: "Chi-Thanh Christopher Nguyen" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Chi-Thanh Christopher Nguyen" Message-ID: <1370061524.8b22af96a25337356bd7206a8095565a44a1f0e9.chithead@gentoo> Subject: [gentoo-commits] proj/x11:master commit in: x11-apps/mesa-progs/ X-VCS-Repository: proj/x11 X-VCS-Files: x11-apps/mesa-progs/mesa-progs-9999.ebuild X-VCS-Directories: x11-apps/mesa-progs/ X-VCS-Committer: chithead X-VCS-Committer-Name: Chi-Thanh Christopher Nguyen X-VCS-Revision: 8b22af96a25337356bd7206a8095565a44a1f0e9 X-VCS-Branch: master Date: Sat, 1 Jun 2013 04:38:47 +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: 0591b766-8b1e-433c-8f5b-4ccc6f5f34fc X-Archives-Hash: c605bda06ed1ef23c9e94605664841a9 commit: 8b22af96a25337356bd7206a8095565a44a1f0e9 Author: Chi-Thanh Christopher Nguyen gentoo org> AuthorDate: Sat Jun 1 04:38:44 2013 +0000 Commit: Chi-Thanh Christopher Nguyen cs tu-berlin de> CommitDate: Sat Jun 1 04:38:44 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/x11.git;a=commit;h=8b22af96 x11-apps/mesa-progs: Add glew to RDEPEND when necessary, bug #471338. --- x11-apps/mesa-progs/mesa-progs-9999.ebuild | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/x11-apps/mesa-progs/mesa-progs-9999.ebuild b/x11-apps/mesa-progs/mesa-progs-9999.ebuild index 95e23be..216bb32 100644 --- a/x11-apps/mesa-progs/mesa-progs-9999.ebuild +++ b/x11-apps/mesa-progs/mesa-progs-9999.ebuild @@ -30,14 +30,13 @@ KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86- IUSE="egl gles1 gles2" RDEPEND=" + egl? ( media-libs/glew ) + gles1? ( media-libs/glew ) + gles2? ( media-libs/glew ) media-libs/mesa[egl?,gles1?,gles2?] virtual/opengl x11-libs/libX11" -# glew and glu are only needed by the configure script which is only used -# when building EGL/GLESv1/GLESv2 programs. They are not actually required -# by the installed programs. DEPEND="${RDEPEND} - media-libs/glew virtual/glu x11-proto/xproto"