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 7FCE7138010 for ; Fri, 31 Aug 2012 22:03:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 40E97E0698; Fri, 31 Aug 2012 22:03:18 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 13CBDE0698 for ; Fri, 31 Aug 2012 22:03:17 +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 1174833D947 for ; Fri, 31 Aug 2012 22:03:17 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id C10C4E5441 for ; Fri, 31 Aug 2012 22:03:15 +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: <1346450338.24004713f45a36ceef8836738df5953e7d08d99d.mattst88@gentoo> Subject: [gentoo-commits] proj/x11:master commit in: media-libs/waffle/ X-VCS-Repository: proj/x11 X-VCS-Files: media-libs/waffle/waffle-1.0.1.ebuild X-VCS-Directories: media-libs/waffle/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 24004713f45a36ceef8836738df5953e7d08d99d X-VCS-Branch: master Date: Fri, 31 Aug 2012 22:03:15 +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: 5ca2768f-f489-4b25-9292-c22632e389d3 X-Archives-Hash: feadc3881ac77da1530e50658c17e4bd commit: 24004713f45a36ceef8836738df5953e7d08d99d Author: Matt Turner gmail com> AuthorDate: Fri Aug 31 21:58:58 2012 +0000 Commit: Matt Turner gmail com> CommitDate: Fri Aug 31 21:58:58 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/x11.git;a=commit;h=24004713 media-libs/waffle: Initial import. Useful for piglit testing --- media-libs/waffle/waffle-1.0.1.ebuild | 34 +++++++++++++++++++++++++++++++++ 1 files changed, 34 insertions(+), 0 deletions(-) diff --git a/media-libs/waffle/waffle-1.0.1.ebuild b/media-libs/waffle/waffle-1.0.1.ebuild new file mode 100644 index 0000000..e70d432 --- /dev/null +++ b/media-libs/waffle/waffle-1.0.1.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=4 + +inherit cmake-utils + +DESCRIPTION="Library that allows selection of GL API and of window system at runtime" +HOMEPAGE="http://people.freedesktop.org/~chadversary/waffle/" +SRC_URI="http://people.freedesktop.org/~chadversary/waffle/files/release/${P}/${P}.tar.xz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" +IUSE="egl gles1 gles2 wayland" + +DEPEND=" + media-libs/mesa[egl?,gles1?,gles2?] + virtual/opengl + wayland? ( >=dev-libs/wayland-0.95.0 ) + x11-libs/libX11 + x11-libs/libxcb" +RDEPEND="${DEPEND}" + +src_configure() { + mycmakeargs=( + -Dwaffle_has_glx=ON + $(cmake-utils_use egl waffle_has_x11_egl) + $(cmake-utils_use wayland waffle_has_wayland) + ) + + cmake-utils_src_configure +}