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 0BC3C1381F3 for ; Sat, 12 Oct 2013 06:13:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9BBCFE0B22; Sat, 12 Oct 2013 06:13:45 +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 3FAF4E0B22 for ; Sat, 12 Oct 2013 06:13:45 +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 596CE33EF52 for ; Sat, 12 Oct 2013 06:13:44 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 0D442E5308 for ; Sat, 12 Oct 2013 06:13:43 +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: <1381558406.323e2888b23625b013ed71cbde0c44d837249609.mattst88@gentoo> Subject: [gentoo-commits] proj/x11:master commit in: media-libs/waffle/ X-VCS-Repository: proj/x11 X-VCS-Files: media-libs/waffle/metadata.xml media-libs/waffle/waffle-1.3.0.ebuild X-VCS-Directories: media-libs/waffle/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 323e2888b23625b013ed71cbde0c44d837249609 X-VCS-Branch: master Date: Sat, 12 Oct 2013 06:13:43 +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: 282af734-c996-4d1a-b6e5-87c757bdb466 X-Archives-Hash: 169b6592b4bec7ca67935552b5083326 commit: 323e2888b23625b013ed71cbde0c44d837249609 Author: Matt Turner gmail com> AuthorDate: Sat Oct 12 06:13:26 2013 +0000 Commit: Matt Turner gentoo org> CommitDate: Sat Oct 12 06:13:26 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/x11.git;a=commit;h=323e2888 media-libs/waffle: Move to portage. --- media-libs/waffle/metadata.xml | 11 ----------- media-libs/waffle/waffle-1.3.0.ebuild | 34 ---------------------------------- 2 files changed, 45 deletions(-) diff --git a/media-libs/waffle/metadata.xml b/media-libs/waffle/metadata.xml deleted file mode 100644 index b97017d..0000000 --- a/media-libs/waffle/metadata.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - -x11 - - Enable EGL support - Enable GLES1 support - Enable GLES2 support - - - diff --git a/media-libs/waffle/waffle-1.3.0.ebuild b/media-libs/waffle/waffle-1.3.0.ebuild deleted file mode 100644 index 63ddbc4..0000000 --- a/media-libs/waffle/waffle-1.3.0.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -EAPI=5 - -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 -}