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 330331384C0 for ; Fri, 28 Aug 2015 23:53:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3E2571419F; Fri, 28 Aug 2015 23:53:51 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8CCB81419F for ; Fri, 28 Aug 2015 23:53:50 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6F929340B57 for ; Fri, 28 Aug 2015 23:53:49 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B0ECD17B for ; Fri, 28 Aug 2015 23:53:46 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1440806264.fd221b4be7c02bf3abbc043774c810bc158671f6.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-apps/mesa-progs/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-apps/mesa-progs/mesa-progs-8.2.0.ebuild x11-apps/mesa-progs/mesa-progs-9999.ebuild X-VCS-Directories: x11-apps/mesa-progs/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: fd221b4be7c02bf3abbc043774c810bc158671f6 X-VCS-Branch: master Date: Fri, 28 Aug 2015 23:53:46 +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: 56485e29-b4f0-44ab-84a4-770c332f048a X-Archives-Hash: a61b8906cec76da9c0592e280384131f commit: fd221b4be7c02bf3abbc043774c810bc158671f6 Author: Matt Turner gentoo org> AuthorDate: Fri Aug 28 23:52:15 2015 +0000 Commit: Matt Turner gentoo org> CommitDate: Fri Aug 28 23:57:44 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd221b4b x11-apps/mesa-progs: Remove EGL_MESA_screen_surface demos. Not useful, and not sure when Mesa actually supported this extension, but it certainly doesn't any more. Bug: https://bugs.gentoo.org/show_bug.cgi?id=555186 x11-apps/mesa-progs/mesa-progs-8.2.0.ebuild | 10 +++------- x11-apps/mesa-progs/mesa-progs-9999.ebuild | 10 +++------- 2 files changed, 6 insertions(+), 14 deletions(-) diff --git a/x11-apps/mesa-progs/mesa-progs-8.2.0.ebuild b/x11-apps/mesa-progs/mesa-progs-8.2.0.ebuild index 81090ed..d3c9bbf 100644 --- a/x11-apps/mesa-progs/mesa-progs-8.2.0.ebuild +++ b/x11-apps/mesa-progs/mesa-progs-8.2.0.ebuild @@ -59,19 +59,16 @@ src_compile() { if use egl; then emake LDLIBS="-lEGL" -C src/egl/opengl/ eglinfo - emake -C src/egl/eglut/ libeglut_screen.la libeglut_x11.la + emake -C src/egl/eglut/ libeglut_x11.la emake LDLIBS="-lGL -lEGL -lX11 -lm" -C src/egl/opengl/ eglgears_x11 - emake LDLIBS="-lGL -lEGL -lm" -C src/egl/opengl/ eglgears_screen if use gles1; then emake LDLIBS="-lGLESv1_CM -lEGL -lX11" -C src/egl/opengles1/ es1_info emake LDLIBS="-lGLESv1_CM -lEGL -lX11 -lm" -C src/egl/opengles1/ gears_x11 - emake LDLIBS="-lGLESv1_CM -lEGL -lm" -C src/egl/opengles1/ gears_screen fi if use gles2; then emake LDLIBS="-lGLESv2 -lEGL -lX11" -C src/egl/opengles2/ es2_info emake LDLIBS="-lGLESv2 -lEGL -lX11 -lm" -C src/egl/opengles2/ es2gears_x11 - emake LDLIBS="-lGLESv2 -lEGL -lm" -C src/egl/opengles2/ es2gears_screen fi fi } @@ -79,14 +76,13 @@ src_compile() { src_install() { dobin src/xdemos/{glxgears,glxinfo} if use egl; then - dobin src/egl/opengl/egl{info,gears_{screen,x11}} + dobin src/egl/opengl/egl{info,gears_x11} if use gles1; then dobin src/egl/opengles1/es1_info - newbin src/egl/opengles1/gears_screen es1gears_screen newbin src/egl/opengles1/gears_x11 es1gears_x11 fi - use gles2 && dobin src/egl/opengles2/es2{_info,gears_{screen,x11}} + use gles2 && dobin src/egl/opengles2/es2{_info,gears_x11} fi } diff --git a/x11-apps/mesa-progs/mesa-progs-9999.ebuild b/x11-apps/mesa-progs/mesa-progs-9999.ebuild index 657291f..778c907 100644 --- a/x11-apps/mesa-progs/mesa-progs-9999.ebuild +++ b/x11-apps/mesa-progs/mesa-progs-9999.ebuild @@ -59,19 +59,16 @@ src_compile() { if use egl; then emake LDLIBS="-lEGL" -C src/egl/opengl/ eglinfo - emake -C src/egl/eglut/ libeglut_screen.la libeglut_x11.la + emake -C src/egl/eglut/ libeglut_x11.la emake LDLIBS="-lGL -lEGL -lX11 -lm" -C src/egl/opengl/ eglgears_x11 - emake LDLIBS="-lGL -lEGL -lm" -C src/egl/opengl/ eglgears_screen if use gles1; then emake LDLIBS="-lGLESv1_CM -lEGL -lX11" -C src/egl/opengles1/ es1_info emake LDLIBS="-lGLESv1_CM -lEGL -lX11 -lm" -C src/egl/opengles1/ gears_x11 - emake LDLIBS="-lGLESv1_CM -lEGL -lm" -C src/egl/opengles1/ gears_screen fi if use gles2; then emake LDLIBS="-lGLESv2 -lEGL -lX11" -C src/egl/opengles2/ es2_info emake LDLIBS="-lGLESv2 -lEGL -lX11 -lm" -C src/egl/opengles2/ es2gears_x11 - emake LDLIBS="-lGLESv2 -lEGL -lm" -C src/egl/opengles2/ es2gears_screen fi fi } @@ -79,14 +76,13 @@ src_compile() { src_install() { dobin src/xdemos/{glxgears,glxinfo} if use egl; then - dobin src/egl/opengl/egl{info,gears_{screen,x11}} + dobin src/egl/opengl/egl{info,gears_x11} if use gles1; then dobin src/egl/opengles1/es1_info - newbin src/egl/opengles1/gears_screen es1gears_screen newbin src/egl/opengles1/gears_x11 es1gears_x11 fi - use gles2 && dobin src/egl/opengles2/es2{_info,gears_{screen,x11}} + use gles2 && dobin src/egl/opengles2/es2{_info,gears_x11} fi }