public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Matt Turner" <mattst88@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] proj/x11:master commit in: app-benchmarks/glmark2/
Date: Tue, 16 Feb 2021 02:23:05 +0000 (UTC)	[thread overview]
Message-ID: <1613442005.acf64d44f89f2e8a4cd77f069be558fc1a04e589.mattst88@gentoo> (raw)

commit:     acf64d44f89f2e8a4cd77f069be558fc1a04e589
Author:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 16 02:19:47 2021 +0000
Commit:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Tue Feb 16 02:20:05 2021 +0000
URL:        https://gitweb.gentoo.org/proj/x11.git/commit/?id=acf64d44

app-benchmarks/glmark2: Drop old versions

Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>

 app-benchmarks/glmark2/glmark2-2012.12_p285.ebuild | 64 ----------------------
 app-benchmarks/glmark2/glmark2-2014.03.ebuild      | 64 ----------------------
 2 files changed, 128 deletions(-)

diff --git a/app-benchmarks/glmark2/glmark2-2012.12_p285.ebuild b/app-benchmarks/glmark2/glmark2-2012.12_p285.ebuild
deleted file mode 100644
index ce4a9ced..00000000
--- a/app-benchmarks/glmark2/glmark2-2012.12_p285.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python{2_6,2_7} )
-inherit waf-utils python-single-r1
-
-REV=${PV#*_p}
-
-DESCRIPTION="Opengl test suite"
-HOMEPAGE="https://launchpad.net/glmark2"
-SRC_URI="http://bazaar.launchpad.net/~glmark2-dev/glmark2/trunk/tarball/${REV} -> ${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
-IUSE="drm +gles2 opengl wayland X"
-
-RDEPEND="media-libs/libpng
-	media-libs/mesa[gles2?]
-	X? ( x11-libs/libX11 )
-	wayland? ( >=dev-libs/wayland-1.2 )"
-DEPEND="${RDEPEND}
-	virtual/pkgconfig"
-
-REQUIRED_USE="|| ( opengl gles2 )
-			  || ( drm wayland X )"
-
-S="${WORKDIR}/~${PN}-dev/${PN}/trunk/"
-
-src_prepare() {
-	rm -rf "${S}/src/libpng"
-	sed -i "s/libpng15/libpng/g" "${S}/wscript" # allow build with >= libpng:1.6
-}
-
-src_configure() {
-	: ${WAF_BINARY:="${S}/waf"}
-
-	local myconf
-
-	if use X; then
-		use opengl && myconf+="x11-gl"
-		use gles2 && myconf+=",x11-glesv2"
-	fi
-
-	if use drm; then
-		use opengl && myconf+=",drm-gl"
-		use gles2 && myconf+=",drm-glesv2"
-	fi
-
-	if use wayland; then
-		use opengl && myconf+=",wayland-gl"
-		use gles2 && myconf+=",wayland-glesv2"
-
-	fi
-	myconf=${myconf#,}
-
-	# it does not know --libdir specification, dandy huh
-	CCFLAGS="${CFLAGS}" LINKFLAGS="${LDFLAGS}" "${WAF_BINARY}" \
-		--prefix=/usr \
-		--with-flavors ${myconf} \
-		configure || die "configure failed"
-}

diff --git a/app-benchmarks/glmark2/glmark2-2014.03.ebuild b/app-benchmarks/glmark2/glmark2-2014.03.ebuild
deleted file mode 100644
index 19c7b21c..00000000
--- a/app-benchmarks/glmark2/glmark2-2014.03.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-inherit waf-utils python-single-r1
-
-REV=${PV#*_p}
-
-DESCRIPTION="Opengl test suite"
-HOMEPAGE="https://launchpad.net/glmark2"
-SRC_URI="https://launchpad.net/${PN}/trunk/${PV}/+download/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
-IUSE="drm gles2 +opengl wayland X"
-
-RDEPEND="media-libs/libpng
-	media-libs/mesa[gles2?]
-	X? ( x11-libs/libX11 )
-	wayland? ( >=dev-libs/wayland-1.2 )"
-DEPEND="${RDEPEND}
-	virtual/pkgconfig"
-
-REQUIRED_USE="|| ( opengl gles2 )
-			  || ( drm wayland X )"
-
-src_prepare() {
-	rm -rf "${S}/src/libpng"
-	sed -i "s/libpng15/libpng/g" "${S}/wscript" # allow build with >= libpng:1.6
-	sed -i "/req_funcs/ s/,..sqrt.*\]/\]/" "${S}/wscript" #	sqrt patch
-	sed -i "s/-Werror//" "${S}/wscript"
-}
-
-src_configure() {
-	: ${WAF_BINARY:="${S}/waf"}
-
-	local myconf
-
-	if use X; then
-		use opengl && myconf+="x11-gl"
-		use gles2 && myconf+=",x11-glesv2"
-	fi
-
-	if use drm; then
-		use opengl && myconf+=",drm-gl"
-		use gles2 && myconf+=",drm-glesv2"
-	fi
-
-	if use wayland; then
-		use opengl && myconf+=",wayland-gl"
-		use gles2 && myconf+=",wayland-glesv2"
-
-	fi
-	myconf=${myconf#,}
-
-	# it does not know --libdir specification, dandy huh
-	CCFLAGS="${CFLAGS}" LINKFLAGS="${LDFLAGS}" "${WAF_BINARY}" \
-		--prefix=/usr \
-		--with-flavors ${myconf} \
-		configure || die "configure failed"
-}


             reply	other threads:[~2021-02-16  2:23 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-02-16  2:23 Matt Turner [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-05-30 20:29 [gentoo-commits] proj/x11:master commit in: app-benchmarks/glmark2/ Matt Turner
2022-04-11 23:17 Matt Turner
2022-04-11 23:04 Matt Turner
2019-06-24 21:09 Matt Turner
2014-05-09 20:06 David Heidelberger
2014-01-09 16:13 David Heidelberger
2013-08-09 10:29 David Heidelberger
2013-05-16  1:21 David Heidelberger
2011-09-18  2:22 Matt Turner

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1613442005.acf64d44f89f2e8a4cd77f069be558fc1a04e589.mattst88@gentoo \
    --to=mattst88@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox